/* ================================================================
   MVS Solar Solutions — Stylesheet
   ================================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
    --navy:        #0b2545;
    --navy2:       #163a6e;
    --solar:       #f6c90e;
    --solar-dark:  #d4a800;
    --solar-light: #fff6cc;
    --teal:        #0abf8e;
    --green:       #27ae60;
    --wa:          #25D366;
    --bg:          #f5f8fe;
    --bg-card:     #ffffff;
    --text:        #1a2440;
    --muted:       #64748b;
    --border:      rgba(11,37,69,.09);
    --shadow:      0 6px 28px rgba(11,37,69,.10);
    --shadow-lg:   0 16px 56px rgba(11,37,69,.14);
    --radius:      16px;
    --radius-lg:   24px;
    --trans:       .3s ease;
}

/* ── Reset / Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
p { color: var(--muted); line-height: 1.8; }
h1, h2, h3, h4, h5 { color: var(--navy); font-weight: 700; line-height: 1.15; }

/* ── Utility ─────────────────────────────────────────────────── */
.section-space  { padding: 6rem 0; }
.bg-light-tint  { background: linear-gradient(180deg, #eef3fa 0%, #f5f8fe 100%); }

.section-header { max-width: 720px; margin: 0 auto; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .78rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--teal); margin-bottom: .5rem;
}
.section-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--teal); border-radius: 99px; }
.section-title  { font-size: clamp(1.9rem, 3.5vw, 2.9rem); color: var(--navy); margin-bottom: .75rem; }
.section-sub    { font-size: 1.05rem; color: var(--muted); max-width: 680px; margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-solar {
    background: linear-gradient(135deg, var(--solar), #ffe066);
    color: var(--navy); font-weight: 700;
    border: none; border-radius: 999px;
    padding: .75rem 1.6rem; transition: var(--trans);
    box-shadow: 0 8px 24px rgba(246,201,14,.28);
}
.btn-solar:hover, .btn-solar:focus { background: linear-gradient(135deg, #ffe066, var(--solar)); color: var(--navy); }

.btn-outline-solar {
    background: transparent; border: 2px solid var(--navy);
    color: var(--navy); font-weight: 700;
    border-radius: 999px; padding: .7rem 1.5rem; transition: var(--trans);
}
.btn-outline-solar:hover { background: var(--navy); color: #fff; }

.btn-hero-outline {
    background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.55);
    color: #fff; font-weight: 700; border-radius: 999px;
    padding: .75rem 1.6rem; backdrop-filter: blur(8px); transition: var(--trans);
}
.btn-hero-outline:hover { background: rgba(255,255,255,.22); color: #fff; }

.btn-service {
    display: inline-flex; align-items: center; gap: .4rem;
    background: transparent; border: 2px solid var(--navy);
    color: var(--navy); font-weight: 700;
    border-radius: 999px; padding: .55rem 1.3rem; transition: var(--trans);
    font-size: .92rem;
}
.btn-service:hover { background: var(--navy); color: #fff; }

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--wa); color: #fff; font-weight: 700;
    border: none; border-radius: 999px; padding: .75rem 1.5rem; transition: var(--trans);
}
.btn-whatsapp:hover { background: #1ebe5c; color: #fff; }

/* ── Brand Mark ──────────────────────────────────────────────── */
.brand-mark {
    width: 46px; height: 46px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 13px; font-weight: 800; font-size: .9rem;
    background: linear-gradient(135deg, var(--solar), #ffe57a);
    color: var(--navy);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: .95rem; font-weight: 700; color: #fff; }
.brand-text small  { font-size: .68rem; color: rgba(255,255,255,.7); }

/* ── Navbar ──────────────────────────────────────────────────── */
#mainNavbar {
    padding: .9rem 0;
    background: transparent;
    transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
    z-index: 1000;
}
#mainNavbar.scrolled {
    background: var(--navy);
    box-shadow: 0 4px 24px rgba(11,37,69,.22);
    padding: .55rem 0;
}
#mainNavbar .navbar-toggler { border: 2px solid rgba(255,255,255,.4); }
#mainNavbar .navbar-toggler-icon { filter: invert(1); }
.nav-link { color: rgba(255,255,255,.85) !important; font-weight: 600; font-size: .92rem; padding: .4rem .7rem !important; border-radius: 8px; transition: var(--trans); }
.nav-link:hover { color: #fff !important; background: rgba(255,255,255,.1); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    background:
        url('https://images.unsplash.com/photo-1497436072909-60f360e1d4b1?auto=format&fit=crop&w=1800&q=80')
        center/cover no-repeat;
    color: #fff;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(130deg, rgba(8,24,56,.88) 45%, rgba(8,24,56,.55) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 5rem; padding-bottom: 6rem; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(246,201,14,.18); border: 1px solid rgba(246,201,14,.35);
    color: var(--solar); font-size: .82rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; padding: .35rem 1rem; border-radius: 999px;
    margin-bottom: 1.2rem;
}
.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    line-height: .97; letter-spacing: -.04em;
    color: #fff; margin-bottom: 1.2rem;
}
.text-solar { color: var(--solar); }
.hero-sub  { font-size: 1.08rem; color: rgba(255,255,255,.82); max-width: 62ch; margin-bottom: 2rem; }
.hero-ctas { margin-bottom: 2.5rem; }
.hero-stats {
    display: flex; flex-wrap: nowrap; gap: 0;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius); padding: 1.1rem .75rem;
    backdrop-filter: blur(10px);
}
.hero-stat-item { padding: .2rem 1rem; text-align: center; flex: 1; min-width: 0; }
.hero-stat-item strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--solar); line-height: 1; }
.hero-stat-item span  { font-size: .78rem; color: rgba(255,255,255,.75); font-weight: 500; }
.hero-stat-sep { width: 1px; background: rgba(255,255,255,.2); align-self: stretch; margin: 0; }
.hero-scroll-hint {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.5); font-size: 1.6rem; z-index: 2;
    animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── Brands Ticker ───────────────────────────────────────────── */
.brands-section {
    background: var(--navy);
    padding: 1.5rem 0;
    overflow: hidden;
}
.brands-label {
    text-align: center; color: rgba(255,255,255,.6);
    font-size: .8rem; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; margin-bottom: .9rem;
}
.brands-track-wrap {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
    mask: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.brands-track {
    display: flex; gap: 1.25rem; width: max-content;
    animation: brandScroll 20s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes brandScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand-chip {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.85); font-size: .84rem; font-weight: 600;
    padding: .55rem 1.1rem; border-radius: 999px; white-space: nowrap;
    transition: var(--trans);
}
.brand-chip:hover { background: rgba(246,201,14,.15); border-color: rgba(246,201,14,.3); color: var(--solar); }

/* ── Digital Proof ─────────────────────────────────────────── */
.digital-proof {
    background: linear-gradient(180deg, #f5f8fe 0%, #eaf1fc 100%);
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    min-height: 150px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--trans);
    text-align: center;
}

.social-card i {
    font-size: 1.5rem;
    color: var(--navy);
}

.social-card strong {
    font-size: 1.25rem;
    color: var(--navy);
    line-height: 1;
}

.social-card span {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    color: var(--muted);
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: rgba(246,201,14,.5);
    box-shadow: var(--shadow-lg);
}

.website-count-row {
    margin-top: .6rem;
}

.website-count-card {
    background: linear-gradient(150deg, var(--navy), var(--navy2));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow-lg);
    padding: 1.35rem 1.2rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.wc-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(246,201,14,.2);
    color: var(--solar);
    font-size: 1.25rem;
    margin-bottom: .8rem;
}

.wc-number-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: .15rem;
    margin-bottom: .4rem;
}

.wc-number {
    font-size: 2rem;
    color: #fff;
    line-height: 1;
}

.wc-suffix {
    font-size: 1.35rem;
    color: var(--solar);
    line-height: 1;
    font-weight: 800;
}

.website-count-card p {
    color: rgba(255,255,255,.76);
    margin: 0;
    font-size: .86rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ── About ───────────────────────────────────────────────────── */
.about-media { position: relative; }
.about-img { width: 100%; min-height: 480px; object-fit: cover; }
.about-badge {
    position: absolute;
    display: flex; align-items: center; gap: .75rem;
    background: #fff; border-radius: var(--radius);
    padding: .9rem 1.1rem; box-shadow: var(--shadow-lg);
}
.about-badge-1 { bottom: 2.5rem; right: -1.5rem; }
.about-badge-2 { top: 2rem; right: -1.5rem; }
.about-badge i { font-size: 1.5rem; color: var(--solar-dark); }
.about-badge strong { display: block; font-size: .88rem; font-weight: 700; color: var(--navy); }
.about-badge span   { font-size: .78rem; color: var(--muted); }
.about-highlights { display: flex; flex-direction: column; gap: .9rem; }
.ah-item { display: flex; align-items: flex-start; gap: .75rem; }
.ah-item i { color: var(--teal); font-size: 1.2rem; margin-top: .1rem; flex-shrink: 0; }
.ah-item span { color: var(--muted); line-height: 1.6; }

/* ── Service Cards ───────────────────────────────────────────── */
.service-card {
    background: var(--bg-card); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); border: 1px solid var(--border);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform var(--trans), box-shadow var(--trans);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sc-img-wrap { position: relative; overflow: hidden; }
.sc-img-wrap img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .sc-img-wrap img { transform: scale(1.05); }
.sc-icon-badge {
    position: absolute; bottom: -1px; left: 1.25rem;
    width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--solar), #ffe066);
    border-radius: 14px; font-size: 1.2rem; color: var(--navy);
    box-shadow: 0 4px 14px rgba(246,201,14,.35);
}
.sc-body { padding: 1.6rem 1.4rem; display: flex; flex-direction: column; flex: 1; padding-top: 2rem; }
.sc-body h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.sc-body p  { font-size: .92rem; margin-bottom: 1rem; }
.sc-features { list-style: none; padding: 0; margin: 0 0 1.2rem; display: flex; flex-direction: column; gap: .4rem; }
.sc-features li { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.sc-features li i { color: var(--teal); font-size: .9rem; flex-shrink: 0; }

/* ── Why Grid ────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.why-card {
    display: flex; gap: 1rem; align-items: flex-start;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.2rem;
    box-shadow: var(--shadow); transition: var(--trans);
}
.why-card:hover { border-color: rgba(10,191,142,.3); box-shadow: 0 8px 28px rgba(10,191,142,.1); }
.why-icon {
    flex-shrink: 0; width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 14px; font-size: 1.25rem; color: var(--navy);
    background: linear-gradient(135deg, rgba(246,201,14,.2), rgba(10,191,142,.15));
}
.why-card h4 { font-size: .95rem; margin-bottom: .3rem; font-weight: 700; }
.why-card p  { font-size: .86rem; margin: 0; }

/* ── Stats Section ───────────────────────────────────────────── */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy), var(--navy2));
    position: relative; overflow: hidden;
}
.stats-section::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") repeat;
}
.counter-box { position: relative; z-index: 1; }
.counter-icon { font-size: 2.2rem; color: var(--solar); margin-bottom: .6rem; display: block; }
.counter-number-row { display: flex; align-items: baseline; justify-content: center; gap: .05rem; margin-bottom: .4rem; }
.counter-number { font-size: 3.4rem; font-weight: 800; color: #fff; line-height: 1; }
.counter-suffix { font-size: 2.2rem; font-weight: 800; color: var(--solar); line-height: 1; }
.counter-box p { font-size: .88rem; color: rgba(255,255,255,.7); margin: 0; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

/* ── Tech Table ──────────────────────────────────────────────── */
.tech-table {
    background: var(--bg-card); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); overflow: hidden; border: none;
}
.tech-table thead th {
    background: var(--navy); color: #fff;
    font-weight: 700; font-size: .88rem; border: none; padding: 1rem 1.2rem;
}
.tech-table tbody td { border-color: var(--border); padding: .95rem 1.2rem; font-size: .93rem; }
.tech-row-pop { background: rgba(246,201,14,.07); }
.badge-pop {
    background: linear-gradient(135deg, var(--solar), #ffe066);
    color: var(--navy); font-size: .72rem; font-weight: 800;
    padding: .2rem .65rem; border-radius: 999px;
}

/* ── Process Cards ───────────────────────────────────────────── */
.process-card {
    background: var(--bg-card); border-radius: var(--radius-lg);
    border: 1px solid var(--border); box-shadow: var(--shadow);
    padding: 1.8rem 1.6rem; position: relative; overflow: hidden;
    transition: var(--trans);
}
.process-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--solar), var(--teal));
}
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.process-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.process-num { font-size: 2.5rem; font-weight: 800; color: rgba(11,37,69,.08); line-height: 1; }
.process-icon {
    width: 52px; height: 52px; border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem; background: linear-gradient(135deg, rgba(246,201,14,.18), rgba(10,191,142,.14));
    color: var(--navy);
}
.process-card h4 { font-size: 1rem; margin-bottom: .5rem; font-weight: 700; }
.process-card p  { font-size: .9rem; margin: 0; }

/* ── Gallery ─────────────────────────────────────────────────── */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.gf-btn {
    background: var(--bg-card); border: 2px solid var(--border);
    color: var(--muted); font-weight: 700; font-size: .88rem;
    padding: .5rem 1.3rem; border-radius: 999px; cursor: pointer;
    transition: var(--trans);
}
.gf-btn:hover { border-color: var(--navy); color: var(--navy); }
.gf-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

.gallery-card {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); background: var(--bg-card);
    display: block; position: relative; cursor: pointer;
}
.gallery-card img { width: 100%; height: 260px; object-fit: cover; transition: transform .4s ease; }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card figcaption {
    position: absolute; inset: auto 0 0 0;
    padding: 2rem 1.2rem 1.2rem;
    background: linear-gradient(180deg, transparent, rgba(8,24,56,.8));
    transform: translateY(4px); transition: var(--trans);
}
.gallery-card:hover figcaption { transform: translateY(0); }
.gallery-card figcaption span { display: block; font-size: .75rem; color: var(--solar); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.gallery-card figcaption strong { display: block; color: #fff; font-size: .95rem; }
.gallery-item { transition: opacity .3s, transform .3s; }
.gallery-item.hidden { display: none; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonial-card {
    background: var(--bg-card); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); border: 1px solid var(--border);
    padding: 2.5rem; max-width: 760px; margin: 0 auto;
}
.ts-stars { color: var(--solar); font-size: 1.15rem; margin-bottom: 1.2rem; letter-spacing: .1rem; }
.ts-text { font-size: 1.1rem; color: var(--navy); font-style: italic; line-height: 1.75; margin-bottom: 1.5rem; font-weight: 500; }
.ts-author { display: flex; align-items: center; gap: 1rem; }
.ts-avatar {
    width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 800; color: var(--navy);
    background: linear-gradient(135deg, var(--solar), #ffe07a);
}
.ts-author strong { display: block; font-size: .95rem; font-weight: 700; }
.ts-author span   { display: block; font-size: .82rem; color: var(--muted); }
.ts-controls { margin-top: 1.5rem; }
.ts-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(11,37,69,.2); border: none;
    transition: var(--trans); padding: 0;
}
.ts-dot.active { width: 28px; border-radius: 5px; background: var(--navy); }

/* ── Clients & Trust ─────────────────────────────────────────── */
.client-chip {
    display: flex;
    align-items: center;
    gap: .65rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .85rem .95rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.client-chip i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: linear-gradient(135deg, var(--solar), #ffe07a);
    font-size: .95rem;
    flex-shrink: 0;
}

.client-chip span {
    font-size: .92rem;
    color: var(--navy);
    font-weight: 700;
}

.compliance-card {
    background: #f8fbff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.15rem;
}

.compliance-card h3 {
    font-size: 1rem;
    margin: 0 0 .45rem;
    color: var(--navy);
}

.compliance-card p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.65;
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--navy), var(--navy2));
    padding: 3.5rem 0;
}
.cta-banner-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
}
.cta-banner h3 { font-size: 1.5rem; color: #fff; margin: 0 0 .4rem; }
.cta-banner p  { color: rgba(255,255,255,.75); margin: 0; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-accordion .accordion-item {
    margin-bottom: .75rem; border-radius: var(--radius) !important;
    border: 1px solid var(--border) !important; overflow: hidden;
    box-shadow: var(--shadow);
}
.faq-accordion .accordion-button {
    font-weight: 700; font-size: .97rem; color: var(--navy);
    background: var(--bg-card); padding: 1.2rem 1.4rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(11,37,69,.05), rgba(10,191,142,.06));
    color: var(--navy); box-shadow: none;
}
.faq-accordion .accordion-button::after { filter: hue-rotate(160deg); }
.faq-accordion .accordion-body { font-size: .95rem; color: var(--muted); padding: 1rem 1.4rem 1.4rem; }

.faq-search-card,
.faq-bot-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 1.25rem;
}

.faq-search-card h3,
.faq-bot-card h3 {
    font-size: 1.05rem;
    margin-bottom: .65rem;
}

.faq-search-results {
    margin-top: .9rem;
    display: grid;
    gap: .65rem;
}

.faq-topic-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.faq-topic-chip {
    border: 1px solid rgba(11,37,69,.18);
    background: #f7fbff;
    color: var(--navy);
    border-radius: 999px;
    padding: .32rem .7rem;
    font-size: .78rem;
    font-weight: 600;
    line-height: 1;
}

.faq-topic-chip:hover {
    border-color: rgba(246,201,14,.65);
    background: rgba(246,201,14,.18);
}

.faq-search-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .8rem .9rem;
    background: #fbfdff;
}

.faq-search-item strong {
    display: block;
    color: var(--navy);
    margin-bottom: .25rem;
    font-size: .92rem;
}

.faq-search-item p {
    margin: 0;
    font-size: .88rem;
    color: var(--muted);
}

.faq-chat-prompts {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: .75rem;
}

.faq-chat-prompt {
    border: 1px solid rgba(11,37,69,.18);
    background: #f2f7ff;
    color: var(--navy);
    border-radius: 999px;
    padding: .34rem .7rem;
    font-size: .76rem;
    font-weight: 600;
    line-height: 1.1;
}

.faq-chat-prompt:hover {
    border-color: rgba(10,191,142,.55);
    background: rgba(10,191,142,.15);
}

.faq-chat-window {
    border: 1px solid var(--border);
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fbff 0%, #f2f8ff 100%);
    padding: .6rem;
    margin-bottom: .8rem;
}

.faq-bot-response {
    border-radius: 10px;
    background: transparent;
    max-height: 290px;
    overflow-y: auto;
    padding: .2rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.faq-chat-msg {
    max-width: 92%;
    border-radius: 12px;
    padding: .55rem .7rem;
    box-shadow: 0 3px 10px rgba(0,0,0,.05);
}

.faq-chat-msg-bot {
    align-self: flex-start;
    background: #ffffff;
    border: 1px solid rgba(11,37,69,.11);
}

.faq-chat-msg-user {
    align-self: flex-end;
    background: linear-gradient(135deg, #0b2545, #163a6e);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
}

.faq-chat-msg-head {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: .2rem;
    color: rgba(11,37,69,.7);
}

.faq-chat-msg-user .faq-chat-msg-head {
    color: rgba(255,255,255,.75);
}

.faq-chat-msg p {
    margin: 0;
    font-size: .87rem;
    line-height: 1.5;
}

.faq-chat-msg small {
    display: block;
    margin-top: .35rem;
    font-size: .72rem;
    color: rgba(100,116,139,.9);
}

.faq-chat-msg-typing {
    align-self: flex-start;
    background: #fff;
    border: 1px dashed rgba(11,37,69,.24);
    color: var(--muted);
    font-size: .82rem;
    padding: .45rem .65rem;
    border-radius: 10px;
}

.faq-search-empty {
    font-size: .88rem;
    color: var(--muted);
    padding: .7rem 0;
}

/* ── FAQ Invite / Solar Guide Popup ─────────────────────────────────────── */
@keyframes faqPopupIn {
    from { opacity: 0; transform: translateY(22px) scale(.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1);   }
}
@keyframes fiqPanelSlide {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: translateX(0);    }
}

.faq-invite-launcher {
    position: fixed;
    right: 1.25rem;
    bottom: 1.45rem;
    z-index: 995;
    background: var(--navy);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    padding: .55rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .83rem;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(0,0,0,.22);
    cursor: pointer;
}

.faq-invite-launcher-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    display: inline-block;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(46,204,113,.6); }
    50%      { box-shadow: 0 0 0 5px rgba(46,204,113,0); }
}

.faq-invite-popup {
    position: fixed;
    right: 1.25rem;
    bottom: 4.8rem;
    width: min(355px, calc(100vw - 2rem));
    z-index: 996;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.18);
    padding: 1rem 1rem .9rem;
    animation: faqPopupIn .35s cubic-bezier(.34,1.4,.64,1) both;
}

.faq-invite-popup.d-none { animation: none; }

.faq-invite-close {
    position: absolute;
    top: .5rem;
    right: .5rem;
    border: 0;
    background: transparent;
    color: #aab;
    font-size: .9rem;
    line-height: 1;
    transition: color .15s;
}
.faq-invite-close:hover { color: var(--navy); }

.faq-invite-head {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .65rem;
    color: var(--navy);
    padding-right: 1.6rem;
}

.faq-invite-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--solar);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(246,201,14,.45);
}

.faq-invite-head h3 { margin: 0; font-size: .95rem; line-height: 1.25; }

.faq-invite-online {
    display: block;
    font-size: .7rem;
    color: #27ae60;
    font-weight: 600;
    line-height: 1;
}
.faq-invite-online i { font-size: .5rem; vertical-align: 1px; }

.faq-invite-fact {
    background: linear-gradient(135deg, #fff8d0, #fffbef);
    border-left: 3px solid var(--solar);
    border-radius: 8px;
    padding: .5rem .65rem;
    margin-bottom: .65rem;
    font-size: .81rem;
    color: #6b4f00;
    font-weight: 600;
    display: flex;
    gap: .4rem;
    align-items: flex-start;
    line-height: 1.45;
}
.faq-invite-fact i {
    color: var(--solar-dark);
    font-size: .95rem;
    margin-top: .05rem;
    flex-shrink: 0;
}

.faq-invite-ask-label {
    font-size: .78rem !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    margin-bottom: .35rem !important;
    margin-top: .1rem !important;
}

/* ── Team ready badge ──────────────────── */
.fiq-team-ready {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 700;
    color: #1a8a50;
    background: #eafbf1;
    border: 1px solid #b6f0d0;
    border-radius: 999px;
    padding: .22rem .65rem;
    margin-bottom: .55rem;
    width: fit-content;
}
.fiq-team-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    flex-shrink: 0;
    animation: pulse 1.8s ease-in-out infinite;
}

/* ── Dynamic greeting text ─────────────── */
.fiq-greeting {
    font-size: .9rem !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    line-height: 1.4;
    margin-bottom: .5rem !important;
}

.fiq-howto {
    margin: .15rem 0 .45rem !important;
    font-size: .73rem !important;
    font-weight: 600 !important;
    color: #3f5475 !important;
    background: #eef4ff;
    border: 1px dashed #c7d7f3;
    border-radius: 8px;
    padding: .35rem .5rem;
    line-height: 1.35;
}

/* ── Popup Inline Chat (Panel 4) ─────── */
.fiq-popup-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
}
.fiq-popup-chip {
    background: #f0f6ff;
    border: 1px solid #d4ddf5;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 600;
    color: var(--navy);
    padding: .18rem .6rem;
    cursor: pointer;
    transition: background .15s, border-color .15s;
    line-height: 1.6;
}
.fiq-popup-chip:hover { background: #e0ecff; border-color: #b0c8ef; }

.fiq-popup-chat-win {
    background: linear-gradient(180deg, #f8fbff 0%, #f0f6ff 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .5rem .5rem .4rem;
    max-height: 210px;
    overflow-y: auto;
    scroll-behavior: smooth;
}
.fiq-popup-chat-msgs {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    min-height: 48px;
}
.fiq-msg {
    max-width: 91%;
    border-radius: 11px;
    padding: .42rem .6rem;
    font-size: .81rem;
    line-height: 1.45;
    word-break: break-word;
}
.fiq-msg-bot {
    align-self: flex-start;
    background: #ffffff;
    border: 1px solid rgba(11,37,69,.1);
    color: var(--navy);
}
.fiq-msg-user {
    align-self: flex-end;
    background: linear-gradient(135deg, #0b2545, #163a6e);
    color: #fff;
}
.fiq-msg-typing {
    align-self: flex-start;
    background: #fff;
    border: 1px dashed rgba(11,37,69,.2);
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: .5rem .65rem;
    border-radius: 11px;
}
.fiq-msg-typing span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #8899bb;
    display: inline-block;
    animation: fiqDot 1.2s ease-in-out infinite;
}
.fiq-msg-typing span:nth-child(2) { animation-delay: .2s; }
.fiq-msg-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes fiqDot {
    0%,80%,100% { transform: scale(.65); opacity: .4; }
    40%          { transform: scale(1);   opacity: 1;  }
}
.fiq-popup-chat-form {
    display: flex;
    gap: .4rem;
    align-items: flex-end;
}
.fiq-popup-chat-input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .38rem .55rem;
    font-size: .81rem;
    resize: none;
    min-height: 34px;
    max-height: 80px;
    line-height: 1.4;
    font-family: inherit;
    outline: none;
    transition: border-color .15s;
}
.fiq-popup-chat-input:focus { border-color: var(--navy2); }
.fiq-popup-chat-send {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--solar);
    color: var(--navy);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    flex-shrink: 0;
    cursor: pointer;
    transition: background .15s, opacity .15s;
}
.fiq-popup-chat-send:hover { background: var(--solar-dark); }
.fiq-popup-chat-send:disabled { opacity: .45; cursor: not-allowed; }
.fiq-chat-contact-link {
    color: var(--navy) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}
.fiq-chat-contact-link:hover { color: var(--solar-dark) !important; }
/* ── End Popup Inline Chat ────────────── */

.faq-invite-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .32rem;
    margin-bottom: .65rem;
}

.faq-invite-chip {
    background: #f0f5ff;
    border: 1.5px solid #d4ddf5;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--navy);
    padding: .2rem .65rem;
    cursor: pointer;
    transition: background .18s, color .18s, border-color .18s;
    line-height: 1.7;
}
.faq-invite-chip:hover,
.faq-invite-chip.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.faq-invite-popup p {
    margin: 0 0 .4rem;
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.45;
}

.faq-invite-label {
    display: block;
    font-size: .8rem;
    color: var(--navy);
    font-weight: 700;
    margin: .15rem 0 .3rem;
}
.faq-invite-label span {
    font-weight: 400;
    color: var(--muted);
    font-size: .73rem;
}

.faq-invite-popup .form-control {
    border-radius: 10px;
    min-height: 38px;
    font-size: .85rem;
}

.faq-invite-error {
    margin-top: .3rem;
    color: #c0392b !important;
    font-size: .76rem !important;
    font-weight: 600;
}

.faq-invite-actions {
    display: flex;
    gap: .5rem;
    margin-top: .6rem;
}
.faq-invite-actions .btn { flex: 1; font-size: .82rem; }

.faq-invite-privacy {
    font-size: .68rem !important;
    color: #bbb !important;
    text-align: center;
    margin-top: .45rem !important;
    margin-bottom: 0 !important;
}

.fiq-text-link.mt-2 { margin-top: .5rem; }

/* ── Panel transitions ─────────────────── */
.fiq-panel { animation: fiqPanelSlide .28s ease both; }
.fiq-panel.d-none { animation: none; }

/* ── Panel 2: Returning visitor ────────── */
.fiq-return-greeting {
    font-size: .88rem !important;
    color: var(--navy) !important;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: .5rem !important;
}

.fiq-last-topic-wrap {
    background: #f3f6ff;
    border-radius: 8px;
    padding: .45rem .6rem;
    margin-bottom: .65rem;
    font-size: .78rem;
    line-height: 1.4;
}
.fiq-last-topic-label {
    display: block;
    color: var(--muted);
    font-size: .71rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: .15rem;
}
.fiq-last-topic-text {
    color: var(--navy);
    font-weight: 700;
    font-size: .82rem;
}

.fiq-return-options {
    display: flex;
    gap: .5rem;
    margin-bottom: .55rem;
}

.fiq-return-opt {
    flex: 1;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: .55rem .5rem;
    cursor: pointer;
    text-align: center;
    transition: border-color .18s, background .18s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
    color: var(--navy);
}
.fiq-return-opt i     { font-size: 1.2rem; }
.fiq-return-opt span  { font-size: .8rem; font-weight: 700; line-height: 1.2; }
.fiq-return-opt small { font-size: .68rem; color: var(--muted); line-height: 1.2; }
.fiq-return-opt:hover { border-color: var(--navy2); background: #f5f8ff; }
.fiq-return-opt--cta  { border-color: var(--solar); background: var(--solar-light); }
.fiq-return-opt--cta i { color: var(--solar-dark); }
.fiq-return-opt--cta:hover { border-color: var(--solar-dark); background: #fff3a0; }

.fiq-text-link {
    background: transparent;
    border: 0;
    padding: 0;
    font-size: .73rem;
    color: var(--muted);
    text-decoration: underline;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    text-align: center;
}
.fiq-text-link:hover { color: var(--navy); }

/* ── Panel 3: Contact details ──────────── */
.fiq-contact-intro {
    font-size: .84rem !important;
    color: var(--navy) !important;
    font-weight: 600;
    margin-bottom: .6rem !important;
    line-height: 1.45;
}

.fiq-contact-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.fiq-contact-row {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .6rem .75rem;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--navy);
    transition: background .15s;
}
.fiq-contact-row:last-child { border-bottom: 0; }
a.fiq-contact-row:hover { background: #f5f8ff; color: var(--navy); text-decoration: none; }

.fiq-contact-row > i:first-child {
    font-size: 1.05rem;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
    color: var(--navy2);
}
.fiq-contact-row--wa > i:first-child { color: #25d366; }

.fiq-contact-row div  { flex: 1; min-width: 0; }
.fiq-contact-row strong { display: block; font-size: .7rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }
.fiq-contact-row span  { display: block; font-size: .83rem; font-weight: 700; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fiq-contact-arrow { color: #ccd; font-size: .85rem; }
.fiq-contact-row--addr { cursor: default; }
.fiq-contact-row--addr span { white-space: normal; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-info-card {
    background: var(--navy); border-radius: var(--radius-lg);
    padding: 2rem 1.75rem; box-shadow: var(--shadow-lg);
}
.ci-item { display: flex; align-items: flex-start; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.ci-item:last-of-type { border-bottom: none; }
.ci-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--navy);
    background: linear-gradient(135deg, var(--solar), #ffe07a);
}
.ci-item strong { display: block; font-size: .82rem; color: rgba(255,255,255,.65); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .15rem; }
.ci-item span   { color: rgba(255,255,255,.9); font-size: .95rem; font-weight: 500; }
.ci-item > div  { min-width: 0; flex: 1; overflow-wrap: anywhere; }
.ci-item a      { color: var(--solar); font-weight: 600; font-size: .95rem; overflow-wrap: anywhere; word-break: normal; }
.ci-item a:hover { color: #ffe07a; }
.branch-list { display: grid; gap: .65rem; margin-top: .6rem; }
.branch-entry {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: .7rem .8rem;
}
.branch-entry-title {
    margin: 0 0 .35rem;
    font-size: 1.01rem;
    line-height: 1.3;
    color: #fff;
    font-weight: 700;
}
.branch-entry-address {
    margin: 0;
    font-style: normal;
    font-size: .96rem;
    line-height: 1.45;
    color: rgba(255,255,255,.9);
}
.branch-entry-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .34rem;
}
.branch-entry-line {
    display: flex;
    align-items: flex-start;
    gap: .48rem;
}
.branch-entry-line i {
    color: rgba(246,201,14,.95);
    font-size: .85rem;
    margin-top: .25rem;
    flex-shrink: 0;
}
.branch-entry-line span {
    color: rgba(255,255,255,.94);
    line-height: 1.42;
}
.branch-entry-link {
    display: inline-flex;
    margin-top: .45rem;
    font-size: .9rem;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.ci-socials { display: flex; flex-direction: column; gap: .6rem; }
.ci-social-btn {
    display: inline-flex; align-items: center; gap: .6rem;
    border-radius: 999px; padding: .65rem 1.2rem; font-weight: 700; font-size: .9rem;
    transition: var(--trans); border: 2px solid transparent;
}
.ci-social-btn.wa  { background: var(--wa); color: #fff; }
.ci-social-btn.wa:hover  { background: #1ebe5c; color: #fff; }
.ci-social-btn.em  { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: #fff; }
.ci-social-btn.em:hover  { background: rgba(255,255,255,.2); color: #fff; }
.ci-social-btn.ca  { background: rgba(246,201,14,.18); border-color: rgba(246,201,14,.35); color: var(--solar); }
.ci-social-btn.ca:hover  { background: var(--solar); color: var(--navy); }

.contact-form-card {
    background: var(--bg-card); border-radius: var(--radius-lg);
    padding: 2rem 1.8rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.form-label { font-weight: 700; font-size: .88rem; color: var(--navy); margin-bottom: .4rem; }
.req { color: #e74c3c; }
.form-control, .form-select {
    border-radius: 12px; border: 1.5px solid rgba(11,37,69,.14);
    padding: .7rem .95rem; font-size: .94rem; min-height: 48px;
    transition: border-color var(--trans), box-shadow var(--trans);
}
textarea.form-control { min-height: 130px; resize: vertical; }
.form-control:focus, .form-select:focus {
    border-color: rgba(10,191,142,.5);
    box-shadow: 0 0 0 3px rgba(10,191,142,.12);
    outline: none;
}

.branch-map-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.branch-map-head {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--border);
}

.branch-map-head h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--navy);
}

.branch-map-head p {
    margin: .4rem 0 0;
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.5;
}

.branch-map-card iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--navy); padding: 5rem 0 0; }
.footer-about { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.8; margin-top: .5rem; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.2rem; }
.footer-socials a {
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1rem; background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8); transition: var(--trans);
}
.footer-socials a:hover { background: var(--solar); color: var(--navy); }
.site-footer h5 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 1.2rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li + li { margin-top: .55rem; }
.site-footer ul li a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color var(--trans); }
.site-footer ul li a:hover { color: var(--solar); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .7rem; color: rgba(255,255,255,.65); font-size: .9rem; margin-bottom: .6rem; }
.footer-contact-list li i { color: var(--solar); font-size: 1rem; margin-top: .15rem; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.75); }
.footer-contact-list a:hover { color: var(--solar); }
.footer-bottom {
    margin-top: 3.5rem; padding: 1.4rem 0;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { color: rgba(255,255,255,.5); font-size: .84rem; margin: 0; }

.developer-credit-wrap {
    padding: .25rem 0 1.25rem;
    display: flex;
    justify-content: center;
}
.developer-credit {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .45rem .75rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.78);
    font-size: .82rem;
    transition: var(--trans);
}
.developer-credit strong { color: #fff; letter-spacing: .02em; }
.developer-credit img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
    background: #fff;
    padding: 2px;
}
.developer-credit:hover {
    color: #fff;
    border-color: rgba(246,201,14,.55);
    background: rgba(246,201,14,.12);
}

.developer-credit-light {
    border-color: rgba(11,37,69,.18);
    background: #fff;
    color: rgba(11,37,69,.78);
}
.developer-credit-light strong { color: var(--navy); }
.developer-credit-light:hover {
    color: var(--navy);
    border-color: rgba(11,37,69,.35);
    background: #f8fafc;
}

/* ── Floating Buttons ────────────────────────────────────────── */
.float-btns { position: fixed; right: 1.5rem; bottom: 5.4rem; z-index: 992; display: flex; flex-direction: column; gap: .7rem; }

body.faq-popup-open .float-btns {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease;
}
.float-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    border-radius: 999px; padding: .7rem 1.3rem;
    font-weight: 700; font-size: .85rem; box-shadow: 0 6px 20px rgba(0,0,0,.18);
    transition: transform var(--trans), box-shadow var(--trans);
    white-space: nowrap; color: #fff;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.22); color: #fff; }
.float-wa   { background: var(--wa); }
.float-wa:hover { background: #1ebe5c; }
.float-call { background: var(--navy); border: 2px solid rgba(255,255,255,.2); }
.float-call:hover { background: var(--navy2); }
.float-btn i { font-size: 1.1rem; }
.float-label { display: none; }

/* ── Scroll Reveal ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (min-width: 1200px) { .float-label { display: inline; } }

@media (max-width: 991.98px) {
    .section-space { padding: 4.5rem 0; }
    .hero-section { min-height: auto; }
    .hero-inner { padding-top: 7rem; padding-bottom: 5rem; }
    .about-badge-1, .about-badge-2 { position: static; margin-top: .75rem; max-width: 260px; }
    .why-grid { grid-template-columns: 1fr; }
    .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767.98px) {
    .section-space { padding: 3.5rem 0; }
    .hero-title { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: .75rem; padding: 1rem; }
    .hero-stat-sep { display: none; }
    .hero-stat-item { padding: 0; text-align: left; }
    .contact-form-card { padding: 1.4rem 1.1rem; }
    .float-btns { bottom: 4.9rem; right: 1rem; }
    .float-btn { padding: .75rem; border-radius: 50%; }
    .float-label { display: none !important; }
    .float-btn i { font-size: 1.3rem; }
}

@media (max-width: 575.98px) {
    .hero-ctas .btn { width: 100%; text-align: center; }
    .cta-banner .d-flex { flex-direction: column; }
    .cta-banner .d-flex .btn { width: 100%; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .tech-table { font-size: .8rem; }
    .tech-table th, .tech-table td { padding: .65rem .75rem; }
}
