/* === POWER UP - HEAVY HITTER THEME === */

:root {
    --navy: #0F1A2E;
    --navy-light: #1A2844;
    /* Metallic Gold Logic to match Logo */
    --gold: #D4AF37;
    --gold-grad: linear-gradient(135deg, #cfc09f 0%, #d4af37 40%, #edd68e 70%, #c5a028 100%);
    --gold-hover: linear-gradient(135deg, #d4af37 0%, #cfc09f 100%);
    --white: #FFFFFF;
    --text-dark: #222222;
    --text-light: #F5F5F5;
    --grey-bg: #F8F9FA;

    --font-head: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* === TOP BAR === */
.top-bar {
    background-color: var(--navy-light);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.top-flex {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.top-flex i {
    color: var(--gold);
    margin-right: 5px;
}

/* === NAV === */
.solid-nav {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 2px solid #EAEAEA;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-icon {
    color: var(--gold);
    margin-right: 5px;
}

.nav-logo-img {
    height: 60px;
    width: auto;
}

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-family: var(--font-head);
    letter-spacing: 0.5px;
}

/* Updated Gold Button Style */
.btn-nav-gold {
    background: var(--gold-grad);
    color: var(--navy) !important;
    padding: 10px 25px;
    border-radius: 2px;
    transition: 0.3s;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    border: 1px solid #c5a028;
}

.btn-nav-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
}

/* === HERO === */
.hero-block {
    background-color: var(--navy);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media(max-width:900px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-eyebrow {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.highlight-text {
    color: #D4AF37;
    /* Solid gold text */
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 4px solid #D4AF37;
}

.hero-sub {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    max-width: 500px;
}

@media(max-width:900px) {
    .hero-sub {
        margin: 0 auto 30px auto;
    }
}

.hero-cta-group {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

@media(max-width:900px) {
    .hero-cta-group {
        align-items: center;
    }
}

.btn-big-gold {
    background: var(--gold-grad);
    color: var(--navy);
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 2px;
    font-family: var(--font-head);
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #c5a028;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-big-gold:hover {
    transform: translateY(2px);
    background: var(--gold-hover);
}

.hero-guarantee {
    font-size: 0.85rem;
    color: #AAB;
    display: flex;
    gap: 8px;
    align-items: center;
}

.bureau-logos {
    color: #556;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* === HERO PHOTO FRAME === */
.photo-frame {
    border: 8px solid var(--white);
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    height: 400px;
    width: 100%;
    position: relative;
    background: #000;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-fallback {
    display: none;
    /* Shown by JS if image missing */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #555;
    background: #eee;
    text-align: center;
}

.photo-fallback i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ccc;
}

.photo-fallback span {
    font-weight: 700;
    font-family: var(--font-head);
}

/* === TRUST STRIP === */
.trust-strip {
    background: #eef2f6;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    margin-bottom: 0;
}

.trust-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-item i {
    color: var(--gold-dark);
    font-size: 1.1rem;
}

/* === STRIP SECTION (Services) === */
.strip-section {
    background: var(--gold-grad);
    padding: 40px 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media(max-width:768px) {
    .strip-grid {
        grid-template-columns: 1fr;
    }
}

.strip-box {
    text-align: center;
    color: var(--navy);
}

.strip-box i {
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.strip-box h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.strip-box p {
    font-weight: 600;
    font-size: 0.95rem;
}

/* === CONTENT BLOCK === */
.content-block {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.section-badge {
    background: var(--navy);
    color: var(--white);
    display: inline-block;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.content-block h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 60px;
    line-height: 1.2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media(max-width:768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 4px;
    transition: 0.3s;
}

.step-card:hover {
    border-color: var(--navy);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-num {
    font-family: var(--font-head);
    font-size: 4rem;
    color: #f1f5f9;
    font-weight: 700;
    line-height: 0.8;
    margin-bottom: 10px;
}

.step-card h4 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.step-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* === CONSULT BLOCK === */
.consult-block {
    padding: 80px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.consult-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

@media(max-width:768px) {
    .consult-flex {
        grid-template-columns: 1fr;
    }
}

.consult-text h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.consult-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
}

.benefit-check {
    list-style: none;
}

.benefit-check li {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    color: var(--navy);
}

.benefit-check i {
    color: #10b981;
}

.consult-form-card {
    background: var(--white);
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.form-head {
    background: var(--navy);
    color: var(--white);
    padding: 20px;
    text-align: center;
    font-family: var(--font-head);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.consult-form-card form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background: #fdfdfd;
}

.btn-submit-gold {
    background: var(--gold-grad);
    color: var(--navy);
    border: none;
    padding: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 10px;
    text-transform: uppercase;
    font-family: var(--font-head);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: 0.3s;
}

.btn-submit-gold:hover {
    background: var(--gold-hover);
}

/* Form Iframe Blending */
.webform-frame {
    border-top: 1px solid #eee;
    background: #fff;
}

/* === FOOTER === */
.solid-footer {
    background: #f8f9fa;
    /* Light background so logo blends */
    padding: 50px 0;
    text-align: center;
    color: var(--navy);
    border-top: 1px solid #ddd;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    opacity: 0.9;
}

.footer-links a {
    color: var(--navy-light);
    margin: 0 15px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-links a:hover {
    color: #D4AF37;
}

/* === WHY US SECTION === */
.why-us-section {
    background: var(--navy);
    color: var(--white);
    padding: 100px 0;
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-us-header h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why-us-header .divider {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 20px auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-left: 5px solid var(--gold);
    transition: 0.3s;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.why-card h4 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.why-card p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.8;
}

.why-footer {
    text-align: center;
    margin-top: 60px;
}

.copyright {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #64748b;
}