/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1e293b;
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== FLOATING QUOTE TAB & MODAL ===== */
.quote-tab {
    position: fixed;
    right: 0;
    top: 50%;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: var(--red);
    color: #fff;
    padding: 16px 10px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-radius: 8px 0 0 8px;
    z-index: 999;
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: -2px 0 12px rgba(140,29,35,0.3);
    transform: translateY(-50%);
}
.quote-tab:hover { background: var(--red-accent); box-shadow: -4px 0 20px rgba(140,29,35,0.5); }

.quote-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,31,50,0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(4px);
}
.quote-overlay.active { opacity: 1; visibility: visible; }

.quote-modal {
    position: fixed;
    right: -420px;
    top: 0;
    height: 100%;
    width: 400px;
    max-width: 90vw;
    background: #fff;
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.quote-modal.active { right: 0; }

.quote-modal-header {
    background: var(--navy);
    color: #fff;
    padding: 32px 28px 24px;
    position: relative;
}
.quote-modal-header h3 { font-size: 1.4rem; margin-bottom: 8px; color: #fff; }
.quote-modal-header p { font-size: 0.9rem; color: var(--slate-light); margin: 0; }
.quote-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}
.quote-modal-close:hover { background: rgba(255,255,255,0.1); }

.quote-modal-body { padding: 28px; }
.quote-modal-body label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.quote-modal-body input,
.quote-modal-body select,
.quote-modal-body textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    margin-bottom: 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}
.quote-modal-body input:focus,
.quote-modal-body select:focus,
.quote-modal-body textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(140,29,35,0.1);
}
.quote-modal-body textarea { resize: vertical; min-height: 80px; }
.quote-modal-body .btn { width: 100%; padding: 14px; font-size: 1rem; }

.quote-modal-phone {
    text-align: center;
    padding: 20px 28px;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--slate);
}
.quote-modal-phone a {
    color: var(--red);
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 600px) {
    .quote-tab { padding: 12px 8px; font-size: 0.75rem; }
    .quote-modal { width: 100%; max-width: 100vw; }
}

/* ===== COLOR VARIABLES ===== */
:root {
    --navy: #0C2C45;
    --navy-dark: #0a1f32;
    --navy-light: #0C2A47;
    --red: #8C1D23;
    --red-light: #a52a2a;
    --red-accent: #b02028;
    --gold: #d4a84b;
    --slate: #64748b;
    --slate-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-warm: #fafaf8;
    --white: #ffffff;
    --border: #e2e8f0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; font-family: 'Playfair Display', Georgia, serif; }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 16px; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--red);
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER / NAV ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-top {
    background: var(--navy);
    color: #fff;
    font-size: 0.8rem;
    padding: 8px 0;
    text-align: center;
}
.header-top a { color: var(--gold); font-weight: 600; }

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--navy);
    flex-shrink: 0;
}
.logo img { width: 45px; height: auto; }
.logo-text { display: flex; align-items: center; }
.logo-text span { color: var(--red); }

nav { display: flex; align-items: center; gap: 8px; }
nav a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate);
    border-radius: 8px;
    transition: all 0.2s;
}
nav a:hover { color: var(--navy); background: var(--bg-light); }

.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown > a::after {
    content: 'BE';
    font-size: 0.85em;
    margin-left: 5px;
    vertical-align: middle;
    opacity: 0.7;
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; flex-direction: column; padding: 8px 0; }
.nav-dropdown-menu a {
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--slate);
    width: 100%;
}
.nav-dropdown-menu a:hover { background: var(--bg-light); color: var(--navy); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
}
.btn-primary {
    background: var(--red);
    color: #fff;
}
.btn-primary:hover { background: var(--red-accent); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(139,26,26,0.3); }
.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-white {
    background: #fff;
    color: var(--navy);
}
.btn-white:hover { background: var(--bg-light); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,0,0,0.12); }
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.nav-cta { margin-left: 8px; }

/* ===== MOBILE NAV ===== */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 6px 0; transition: 0.3s; }

@media (max-width: 900px) {
    .mobile-toggle { display: block; }
    nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    }
    nav.open { display: flex; }
    nav a { width: 100%; padding: 12px 16px; }
    .nav-dropdown-menu { position: static; display: none !important; box-shadow: none; border: none; background: var(--bg-light); }
    .nav-dropdown.open .nav-dropdown-menu { display: flex !important; }
    .nav-cta { width: 100%; text-align: center; justify-content: center; margin-left: 0; margin-top: 16px; }
    .header-top { display: none; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    overflow: hidden;
    padding-top: 72px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 2; }
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.hero h1 em {
    font-style: normal;
    color: var(--gold);
}
.hero .subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat { text-align: left; }
.hero-stat .number { font-size: 2rem; font-weight: 800; color: #fff; }
.hero-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

@media (max-width: 768px) {
    .hero { min-height: 70vh; padding: 120px 0 60px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}
.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--slate);
}
.trust-item::before {
    content: "";
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--red);
    flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section { padding: 72px 0; }
.section.bg-light { background: var(--bg-light); }
.section.bg-white { background: var(--white); }
.section.bg-navy { background: var(--navy); color: #fff; }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--slate); font-size: 1.1rem; }

.section-header.text-white h2 { color: #fff; }
.section-header.text-white p { color: rgba(255,255,255,0.8); }

/* ===== CARDS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 24px;
}
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.card h3 { margin-bottom: 12px; color: var(--navy); }
.card p { color: var(--slate); margin-bottom: 20px; }
.card a { color: var(--red); font-weight: 600; transition: all 0.2s; }
.card a:hover { color: var(--red-accent); }

.card.dark {
    background: var(--navy);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}
.card.dark h3 { color: #fff; }
.card.dark p { color: rgba(255,255,255,0.8); }
.card.dark a { color: var(--gold); }
.card.dark a:hover { color: #fff; }

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.feature {
    text-align: left;
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red), var(--red-accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.feature h4 { margin-bottom: 8px; }
.feature p { color: var(--slate); font-size: 0.95rem; }

/* ===== FAQ ===== */
.faq {
    margin-top: 60px;
    max-width: 800px;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}
.faq-question {
    padding: 20px;
    background: var(--bg-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.2s;
}
.faq-question:hover { background: #f0f4f8; }
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: 0.3s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding: 20px;
    background: var(--white);
    color: var(--slate);
    line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--navy);
    font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(139,26,26,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIALS ===== */
.testimonial {
    background: var(--bg-light);
    border-left: 4px solid var(--red);
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}
.testimonial-text {
    font-style: italic;
    color: var(--slate);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.testimonial-author {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}
.testimonial-title {
    font-size: 0.9rem;
    color: var(--slate);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--navy);
    color: #fff;
    padding: 64px 24px;
    text-align: center;
    border-radius: 12px;
    margin: 72px 0;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    color: #fff;
    padding: 60px 0 24px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 { margin-bottom: 16px; }
.footer-col p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); transition: all 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }

.footer-logo { width: 120px; margin-bottom: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }
.fade-up-delay-4 { animation-delay: 0.4s; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.breadcrumb {
    background: var(--bg-light);
    padding: 16px 0;
    font-size: 0.9rem;
    color: var(--slate);
}
.breadcrumb a { color: var(--red); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== HEADER TOP ENHANCED ===== */
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-top-right {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}
.header-phone,
.header-email {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold) !important;
    font-weight: 600;
}
.header-email { color: rgba(255,255,255,0.8) !important; font-weight: 400; }
.header-top-divider {
    color: rgba(255,255,255,0.3);
    margin: 0 4px;
}

/* ===== HERO LAYOUT (TWO-COLUMN) ===== */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: center;
    gap: 60px;
}
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-badge-img {
    width: 100%;
    max-width: 360px;
    border-radius: 12px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,31,50,0.7) 0%, rgba(10,31,50,0.3) 60%, transparent 100%);
    z-index: 1;
}

@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual { display: none; }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-item {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}
.stat-label {
    width: 100%;
    font-size: 0.85rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .stat-number { font-size: 2rem; }
    .stat-suffix { font-size: 1.2rem; }
}

/* ===== TRU T BAPESENHANCED ===== */
.trust-item .trust-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--red), var(--red-accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.trust-item .trust-icon svg { stroke: #fff; }
/* When trust-item has trust-icon, remove the pseudo-element */
.trust-item:has(.trust-icon)::before { display: none; }
.trust-item div strong {
    display: block;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.88rem;
}
.trust-item div span {
    display: block;
    font-size: 0.78rem;
    color: var(--slate);
    font-weight: 400;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 28px;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    border-color: var(--red);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}
.service-icon svg { stroke: #fff; }
.service-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 10px;
}
.service-card p {
    color: var(--slate);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}
.service-link {
    color: var(--red);
    font-weight: 600;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.service-card:hover .service-link { color: var(--red-accent); }

@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ===== BG-NAVY SECTION OVERRIDES ===== */
.section.bg-navy .section-header h2 { color: #fff; }
.section.bg-navy .section-header p { color: rgba(255,255,255,0.75); }
.section.bg-navy .feature-icon {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
}
.section.bg-navy .feature h4 { color: #fff; }
.section.bg-navy .feature p { color: rgba(255,255,255,0.7); }

/* ===== TESTIMONIALS ENHANCED ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonials-grid .testimonial {
    margin: 0;
    display: flex;
    flex-direction: column;
}
.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== CTA INNER LAYOUT ===== */
.cta-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}
.cta-content {
    flex: 1;
    text-align: left;
}
.cta-content h2 { margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 28px; }
.cta-content .cta-actions { justify-content: flex-start; }
.cta-badge {
    flex-shrink: 0;
}
.cta-badge img {
    border-radius: 8px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cta-inner { flex-direction: column; gap: 32px; }
    .cta-content { text-align: center; }
    .cta-content .cta-actions { justify-content: center; }
    .cta-badge { display: none; }
}

/* ===== FLOATING MOBILE CTA ===== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--navy);
    padding: 12px 16px;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mobile-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 12px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}
.mobile-cta-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 12px;
    background: var(--red);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}
.mobile-cta-phone svg { stroke: #fff; }

@media (max-width: 768px) {
    .mobile-cta { display: flex; }
    body { padding-bottom: 72px; }
}

/* ===== BUTTON LARGE ===== */
.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .section { padding: 48px 0; }
    .hero { padding: 100px 0 40px; }
    .cta-section { padding: 48px 16px; margin: 48px 0; }
    .cards-grid { gap: 16px; }
    .features-grid { gap: 24px; }
    .trust-items { gap: 24px; }
    .header-top-inner { flex-direction: column; gap: 4px; }
    .header-top-left { justify-content: center; }
    .header-top-right { text-align: center; }
}