*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0d1117;
    --navy-light: #161b22;
    --brand-primary: #991b1b;
    /* Deep Brand Red */
    --brand-secondary: #b91c1c;
    /* Settled Accent Red */
    --brand-dark: #7f1d1d;
    /* Deep Burgundy */
    --gray: #8b949e;
    --dark-card: #13181f;
    --white: #f0f6fc;
    --white-75: rgba(240, 246, 252, 0.75);
    --white-30: rgba(240, 246, 252, 0.3);
    --white-15: rgba(240, 246, 252, 0.15);
    --white-10: rgba(240, 246, 252, 0.1);
    --white-06: rgba(240, 246, 252, 0.06);
    --white-05: rgba(240, 246, 252, 0.05);
    --white-08: rgba(240, 246, 252, 0.08);

    --icon-filter-muted: invert(18%) sepia(100%) saturate(1500%) hue-rotate(345deg) brightness(85%) contrast(105%);

    /* Manageable Card Parameters */
    --card-bg: var(--navy-light);
    --card-radius: 12px;
    --card-border: 1px solid var(--white-05);
    --card-padding: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--white-06);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--brand-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo .dot {
    color: var(--brand-secondary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(240, 246, 252, 0.8);
    transition: color 0.2s;
    position: relative;
}

.nav a:hover {
    color: var(--brand-secondary);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-secondary);
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-right .icon-btn {
    background: none;
    color: rgba(240, 246, 252, 0.7);
    transition: color 0.2s;
}

.header-right .icon-btn:hover {
    color: var(--brand-secondary);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.btn-blue {
    background: var(--brand-primary);
    color: var(--white);
}

.btn-blue:hover {
    background: var(--brand-secondary);
}

.btn .svg-icon {
    filter: brightness(0) invert(1);
}

.phone-block {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.phone-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--brand-secondary);
    /* Unified Brand Red */
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-circle .svg-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    /* White Icon */
}

.phone-label {
    font-size: 11px;
    color: var(--gray);
}

.mobile-toggle {
    display: none;
    background: none;
    transition: transform 0.2s;
}

.mobile-toggle:active {
    transform: scale(0.9);
}

.mobile-toggle .svg-icon {
    filter: brightness(0) invert(1);
    transition: filter 0.2s;
}

.mobile-toggle:hover .svg-icon {
    filter: var(--icon-filter-muted);
    /* Dark Crimson #b91c1c */
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s;
}

.hero-slide.active {
    opacity: 1;
    z-index: 10;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--navy-light);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 17, 23, 0.95), rgba(13, 17, 23, 0.7), rgba(13, 17, 23, 0.4));
}

.hero-circle-1 {
    position: absolute;
    right: 10%;
    top: 33%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(153, 27, 27, 0.15);
    border-radius: 50%;
}

.hero-circle-2 {
    position: absolute;
    right: 8%;
    top: 45%;
    width: 64px;
    height: 64px;
    border: 2px solid rgba(153, 27, 27, 0.1);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 20;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 640px;
}

.hero-text .accent-bar {
    width: 96px;
    height: 6px;
    background: var(--brand-secondary);
    border-radius: 3px;
    margin-bottom: 32px;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-text h1 .cyan {
    color: var(--brand-secondary);
}

.hero-text p {
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-arrows {
    position: absolute;
    top: 50%;
    z-index: 30;
}

.hero-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white-08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.2s;
    backdrop-filter: blur(8px);
    transform: translateY(-50%);
}

.hero-arrow:hover {
    background: var(--brand-primary);
}

.hero-arrow.left {
    position: absolute;
    left: 16px;
}

.hero-arrow.right {
    position: absolute;
    right: 16px;
}

.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--white-30);
    border: none;
    transition: all 0.3s;
}

.hero-dot.active {
    background: var(--brand-secondary);
    width: 32px;
}

/* ===== FEATURES ===== */
.features {
    background: var(--navy);
    padding: 64px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    border: var(--card-border);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-5px);
}

.feature-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--brand-secondary);
}

.feature-icon .svg-icon {
    filter: brightness(0) invert(1);
}

.feature-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(240, 246, 252, 0.06);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
    background: var(--navy);
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image:hover .about-img {
    transform: scale(1.02);
}

.about-years {
    position: absolute;
    bottom: 24px;
    right: -24px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(153, 27, 27, 0.4);
    border: 4px solid var(--navy);
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-years .num {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}

.about-years .label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-75);
}

.about-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-secondary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}

.about h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.about .desc {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 600px;
}

.checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
}

.check-item .svg-icon {
    filter: var(--icon-filter-muted);
    /* Dark Crimson #b91c1c */
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* About section: ul li check items from WYSIWYG ACF field */
.about-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
    padding: 0;
}

.about-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    color: var(--white);
    line-height: 1.4;
}

.about-content ul li::before {
    content: '\f147';
    font-family: dashicons;
    font-size: 20px;
    color: var(--brand-secondary);
    flex-shrink: 0;
    line-height: 1;
}

/* ===== INSURANCE TYPES / SERVICES ===== */
.services {
    background: var(--navy);
    padding: 80px 0;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 56px;
}

.services-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 12px;
    line-height: 1.2;
}

.services-header .right-desc {
    display: flex;
    align-items: flex-end;
}

.services-header .right-desc p {
    color: var(--gray);
    font-style: italic;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    overflow: visible;           /* allow icon bubble to overflow image edge */
    border: var(--card-border);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-5px);
}

/* Service image wrapper — matches render.php class="service-image" */
.service-image {
    height: 192px;
    background: #141a22;
    position: relative;
    overflow: visible;           /* must be visible so icon bubble at bottom:-28px shows */
    border-radius: 12px 12px 0 0;
}

/* Clip only the photo, not the icon bubble */
.service-image .svc-img,
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    display: block;
    overflow: hidden;
}

/* Legacy static-page class kept for compatibility */
.service-img {
    height: 192px;
    background: #141a22;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240, 246, 252, 0.08);
    font-size: 12px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.service-icon {
    position: absolute;
    bottom: -28px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    z-index: 10;
    transition: background 0.3s, transform 0.3s;
    border: 3px solid var(--navy-light);
}

.service-card:hover .service-icon {
    background: var(--brand-secondary);
    transform: scale(1.08);
}

/* SVG icon (legacy static page) */
.service-icon .svg-icon {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
}

/* Dashicons inside service-icon bubble — reset dashicons defaults for centering */
.service-icon .dashicons {
    font-size: 22px;
    width: 22px !important;      /* override dashicons default width */
    height: 22px !important;     /* override dashicons default height */
    line-height: 22px !important;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-body {
    padding: 32px 20px 24px;
}

.service-accent {
    width: 32px;
    height: 2px;
    background: var(--brand-secondary);
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--brand-secondary);
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
.why {
    background: var(--navy-light);
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 12px 0 24px;
}

.why .desc {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.why-content {
    /* left column in .why-grid */
}

.reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.reason-card {
    background: var(--navy);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--white-05);
    transition: border-color 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.reason-card:hover {
    border-color: var(--brand-primary);
}

/* SVG icon (legacy static page) */
.reason-card .svg-icon {
    filter: var(--icon-filter-muted);
    margin-bottom: 12px;
}

/* Dashicon inside reason-card */
.reason-icon.dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: var(--brand-secondary);
    margin-bottom: 12px;
    line-height: 1;
    display: block;
}

.reason-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.reason-desc {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
}

/* Legacy static-page h4/p selectors */
.reason-card h4 {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.reason-card p {
    color: var(--gray);
    font-size: 14px;
}

.why-image {
    position: relative;
    overflow: hidden;
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-image:hover .why-img {
    transform: scale(1.03);
}

/* ===== QUOTE FORM ===== */
.quote {
    background: var(--navy);
    padding: 80px 0;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.quote-image {
    position: relative;
}

.quote-img-box {
    position: relative;
    overflow: hidden;
    max-width: 340px;
    margin: 0 auto;
}

.quote-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quote-name-card {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-light);
    border: 1px solid var(--white-10);
    border-radius: 8px;
    padding: 12px 24px;
    text-align: center;
}

.quote-name-card .role {
    font-size: 12px;
    color: var(--gray);
}

.quote-name-card .name {
    font-size: 14px;
    font-weight: 600;
}

.quote h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 12px 0 32px;
}

.quote-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.quote-tab {
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    background: var(--navy-light);
    color: var(--gray);
    transition: all 0.2s;
    border: none;
}

.quote-tab.active,
.quote-tab:hover {
    background: var(--brand-primary);
    color: var(--white);
}

.form-group {
    margin-bottom: 16px;
}

.form-input {
    width: 100%;
    background: var(--navy-light);
    border: 1px solid var(--white-10);
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
}

.form-input::placeholder {
    color: var(--gray);
}

.form-input:focus {
    border-color: var(--brand-primary);
}

select.form-input {
    color: var(--gray);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b949e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.budget-header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.budget-header span:first-child {
    color: var(--gray);
}

.budget-header span:last-child {
    font-weight: 600;
}

input[type="range"] {
    width: 100%;
    accent-color: var(--brand-secondary);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
}

/* ── Quote form wrap ── */
.quote-form-wrap {
    display: flex;
    flex-direction: column;
}

/* ── 2-column row for name + phone ── */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── Field labels ── */
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white-75);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-label .req {
    color: var(--brand-secondary);
    margin-left: 2px;
}

/* ── Textarea ── */
.form-textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.6;
}

/* ── Character counter ── */
.form-char-count {
    display: block;
    text-align: right;
    font-size: 11px;
    color: var(--gray);
    margin-top: 4px;
    transition: color 0.2s;
}

.form-char-count.warn {
    color: var(--brand-secondary);
}

/* ── Inline field error message ── */
.form-error {
    display: block;
    font-size: 12px;
    color: #ef4444;
    margin-top: 5px;
    min-height: 16px;
    line-height: 1.3;
}

/* ── Input error state ── */
.form-input.input-error {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05);
}

/* ── Honeypot — visually hidden but not display:none (screen-readers ignore it) ── */
.omni-hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ── Status banner (success / error) ── */
.form-status {
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.form-status:empty {
    display: none;
}

.form-status--success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #86efac;
    padding: 14px 18px;
}

.form-status--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    padding: 14px 18px;
}

/* ── Submit button: loading state ── */
.btn .btn-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: omni-spin 0.7s linear infinite;
    flex-shrink: 0;
}

.btn.is-loading .btn-spinner {
    display: inline-block;
}

.btn.is-loading .btn-label,
.btn.is-loading .dashicons {
    opacity: 0.5;
}

@keyframes omni-spin {
    to { transform: rotate(360deg); }
}

/* ── Dashicon arrow inside submit button ── */
#omni-submit-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    line-height: 1;
    color: var(--white);
}



/* ===== STATS ===== */
.stats {
    background: var(--brand-primary);
    padding: 56px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.stat-icon .svg-icon {
    filter: brightness(0) invert(1);
}

.stat .value {
    font-size: 1.8rem;
    font-weight: 800;
}

.stat .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

/* ===== TEAM ===== */
.team {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.team-circle-1 {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 256px;
    height: 256px;
    border: 1px solid var(--white-05);
    border-radius: 50%;
}

.team-circle-2 {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 192px;
    height: 192px;
    border: 1px solid var(--white-05);
    border-radius: 50%;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 12px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.team-card .img {
    aspect-ratio: 1/1;
    background: var(--navy-light);
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-card .share-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.team-card:hover .share-btn {
    opacity: 1;
}

.share-btn svg {
    color: var(--white);
}

.team-card .role {
    color: var(--brand-secondary);
    font-size: 14px;
}

.team-card .name {
    font-size: 20px;
    font-weight: 700;
}

.team-cta {
    margin-top: 48px;
    border: 2px dashed var(--white-10);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    color: var(--gray);
    position: relative;
}

.team-cta a {
    color: var(--brand-secondary);
    font-weight: 600;
}

.team-cta a:hover {
    text-decoration: underline;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--navy-light);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    border: var(--card-border);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-5px);
}

.testimonial-card .testimonial-quote {
    filter: var(--icon-filter-muted);
    /* Dark Crimson #b91c1c */
    margin-bottom: 20px;
    opacity: 0.9;
}

.testimonial-card .text {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.stars .svg-icon {
    filter: var(--icon-filter-muted);
    /* Dark Crimson #b91c1c */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--brand-secondary);
    font-size: 14px;
}

.author-name {
    font-weight: 700;
}

.author-role {
    color: var(--gray);
    font-size: 14px;
}

/* ===== BLOG ===== */
.blog {
    background: var(--navy);
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    overflow: hidden;
    border: var(--card-border);
    transition: var(--transition);
}

.btn-blue:hover {
    background: var(--brand-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(153, 27, 27, 0.3);
}

.btn-blue.success {
    background: #059669 !important;
    border-color: #059669 !important;
    pointer-events: none;
}

.blog-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-5px);
}

.blog-img {
    height: 192px;
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--brand-primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
}

.blog-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    color: var(--gray);
    font-size: 12px;
    margin-bottom: 12px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.blog-card:hover h3 {
    color: var(--brand-secondary);
}

.blog-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 16px;
}

.read-more {
    color: var(--brand-secondary);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 8px;
}

/* ===== CTA BANNER ===== */
.cta {
    position: relative;
    overflow: hidden;
}

.cta-inner {
    background: linear-gradient(to right, var(--brand-primary), #7f1d1d);
    padding: 40px 0;
}

.cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    width: 56px;
    height: 56px;
    background: var(--white-15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta h2 {
    font-size: 1.8rem;
    font-weight: 800;
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-white:hover {
    background: #e0e6ed;
}

.cta-diagonal {
    position: absolute;
    top: 0;
    left: 0;
    width: 128px;
    height: 100%;
    background: #7f1d1d;
    transform: skewX(-12deg);
    margin-left: -40px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-light);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--white-06);
    align-items: stretch;
}

.footer h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer .desc {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: var(--white);
}

.contact-list {
    font-size: 14px;
    color: var(--gray);
}

.contact-list .item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-list .svg-icon {
    filter: var(--icon-filter-muted);
    /* Dark Crimson #b91c1c */
    flex-shrink: 0;
    margin-top: 2px;
}

.open-hours h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.open-hours p {
    font-size: 14px;
    color: var(--gray);
}

.copyright {
    text-align: center;
    padding-top: 24px;
    font-size: 14px;
    color: var(--gray);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s;
    border: none;
}

.scroll-top .svg-icon {
    filter: brightness(0) invert(1);
}

.scroll-top.visible {
    opacity: 1;
}

.scroll-top:hover {
    background: var(--brand-secondary);
}

/* ===== SVG ICONS (inline) ===== */
.icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-md {
    width: 20px;
    height: 20px;
}

.icon-lg {
    width: 28px;
    height: 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

    .features-grid,
    .services-grid,
    .team-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-circle-1,
    .hero-circle-2 {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .nav,
    .header-right {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    .about-grid,
    .why-grid,
    .quote-grid,
    .services-header {
        grid-template-columns: 1fr;
    }

    .testimonials-grid,
    .blog-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .cta .container {
        flex-direction: column;
        text-align: center;
    }

    .cta-left {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-content {
        justify-content: center;
        text-align: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text .accent-bar {
        margin-left: auto;
        margin-right: auto;
        width: 64px;
    }

    .hero-arrows {
        display: none;
    }

    .checks {
        grid-template-columns: 1fr;
    }

    .reasons {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CONSOLIDATED STYLES ===== */
.phone-number {
    font-weight: 700;
}

#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 40px;
}

.mobile-menu-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-close .svg-icon {
    filter: brightness(0) invert(1);
}

#mobile-menu a {
    display: block;
    padding: 16px 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

#mobile-menu a:hover {
    color: var(--brand-secondary);
}

#mobile-menu .logo img {
    height: 48px;
    width: auto;
}

#mobile-menu .mobile-menu-btn {
    margin-top: 32px;
    width: 100%;
    max-width: 260px;
    padding: 14px 28px;
    font-size: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    background: var(--brand-primary);
    color: var(--white);
    border-radius: 4px;
}

.footer .logo {
    margin-bottom: 16px;
}

.open-hours {
    margin-top: 24px;
}

.footer-map {
    height: 100%;
    min-height: 250px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--white-10);
}

.footer-map iframe {
    height: 100%;
    width: 100%;
    border: 0;
    display: block;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
    transition: filter 0.5s;
}

.footer-map:hover iframe {
    filter: none;
}

.team-container {
    position: relative;
}