/* ===========================================================
   Kanvakpriya Infra Pvt Ltd — Site Stylesheet
   (Responsive rewrite — matches Font Awesome icon markup in .php files)
   =========================================================== */
:root {
    --orange: #FF8C1A;
    --orange-dark: #E56F00;
    --amber: #FFB238;
    --green: #16A34A;
    --green-dark: #0F7A38;
    --navy: #0B1220;
    --navy-2: #101a2c;
    --ink: #1E293B;
    --muted: #5B6B82;
    --line: #E7ECF2;
    --bg: #FFFFFF;
    --bg-soft: #F7F9FC;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(15, 23, 42, .08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, .14);
    --grad-sun: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
    --grad-eco: linear-gradient(135deg, var(--green) 0%, #22c55e 100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
    overflow-wrap: break-word;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    line-height: 1.2;
    margin: 0 0 .5em;
    color: var(--navy);
}

p {
    margin: 0 0 1em;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 88px 0;
}

@media (max-width:768px) {
    section {
        padding: 56px 0;
    }
}

@media (max-width:480px) {
    .container {
        padding: 0 18px;
    }
    section {
        padding: 44px 0;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 140, 26, .1);
    color: var(--orange-dark);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .03em;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.eyebrow i {
    font-size: .85rem;
}

.section-head {
    max-width: 680px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-head p {
    color: var(--muted);
    font-size: 1.05rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .98rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: .25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-sun);
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 140, 26, .35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 140, 26, .45);
}

.btn-outline {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .12);
}

.btn-dark {
    background: var(--navy);
    color: #fff;
}

.btn-dark:hover {
    background: var(--navy-2);
    transform: translateY(-2px);
}

.btn-green {
    background: var(--grad-eco);
    color: #fff;
    box-shadow: 0 10px 24px rgba(22, 163, 74, .35);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 10px 18px;
    font-size: .88rem;
}

@media (max-width:420px) {
    .hero-actions .btn, .cta-actions .btn {
        width: 100%;
    }
}

/* ---------- Icons ---------- */
.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 140, 26, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: var(--orange-dark);
    flex-shrink: 0;
}

.icon-box.green {
    background: rgba(22, 163, 74, .1);
    color: var(--green-dark);
}

.logo-dot {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--grad-sun);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1180px;
    margin: 0 auto;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy);
    flex-shrink: 0;
}

.brand small {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: .66rem;
    color: var(--muted);
    letter-spacing: .02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--ink);
    font-size: .95rem;
    position: relative;
    padding: 6px 0;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--orange-dark);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--navy);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin: -10px;
}

.burger span {
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
}

@media (max-width:960px) {
    .nav-phone {
        display: none;
    }
    .nav-links {
        position: fixed;
        top: 69px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 18px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-130%);
        transition: transform .3s ease;
        border-bottom: 1px solid var(--line);
        max-height: calc(100vh - 69px);
        overflow-y: auto;
    }
    .nav-links.open {
        transform: translateY(0);
    }
    .burger {
        display: flex;
    }
}

@media (max-width:480px) {
    .brand {
        font-size: 1rem;
        gap: 8px;
    }
    .brand small {
        font-size: .6rem;
    }
    .nav-cta {
        gap: 8px;
    }
    .btn-sm {
        padding: 9px 14px;
        font-size: .82rem;
    }
    .contact {
        display: none;
    }
}

@media (max-width:360px) {
    .brand small {
        display: none;
    }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    color: #fff;
    padding: 130px 0 100px;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center;
    animation: kenburns 22s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.09) translate(-1%, -1%);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(8, 13, 24, .94) 8%, rgba(8, 13, 24, .72) 42%, rgba(8, 13, 24, .38) 75%, rgba(8, 13, 24, .5) 100%), radial-gradient(ellipse at top left, rgba(255, 140, 26, .16), transparent 55%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero .eyebrow {
    background: rgba(255, 255, 255, .12);
    color: var(--amber);
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.1rem, 4.4vw, 3.4rem);
}

.hero p.lead {
    color: rgba(255, 255, 255, .85);
    font-size: 1.12rem;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* hero-stats: some pages set an inline grid-template-columns (e.g. solar.php uses 3 cols).
   These rules use !important at small widths so mobile always gets a sane column count
   regardless of the inline style. */
.hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 64px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--amber);
}

.stat-label {
    font-size: .83rem;
    color: rgba(255, 255, 255, .72);
}

@media (max-width:768px) {
    .hero {
        padding: 100px 0 72px;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px 16px;
    }
}

@media (max-width:420px) {
    .hero-stats {
        grid-template-columns: 1fr !important;
    }
}

.page-hero {
    padding: 96px 0 72px;
    text-align: center;
}

.page-hero .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.page-hero p {
    color: rgba(255, 255, 255, .82);
    max-width: 620px;
    margin: 0 auto;
}

@media (max-width:600px) {
    .page-hero {
        padding: 76px 0 56px;
    }
}

.tag-strip {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

.tag-strip .container {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 32px;
    justify-content: center;
}

.tag-strip span {
    font-size: .86rem;
    font-weight: 600;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag-strip span i {
    color: var(--orange);
    font-size: .6rem;
}

/* ---------- Cards ---------- */
.grid {
    display: grid;
    gap: 28px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width:900px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-soft);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}

.card:hover .card-img img {
    transform: scale(1.07);
}

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.card-body h3 i {
    color: var(--orange-dark);
    font-size: 1rem;
}

.card-body p {
    color: var(--muted);
    font-size: .94rem;
    margin-bottom: 14px;
}

.card-link {
    color: var(--orange-dark);
    font-weight: 600;
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.icon-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    text-align: left;
}

.icon-card h4 {
    font-size: 1.04rem;
    margin-bottom: 6px;
}

.icon-card p {
    color: var(--muted);
    font-size: .92rem;
    margin: 0;
}

.bg-soft {
    background: var(--bg-soft);
}

.bg-navy {
    background: var(--navy);
    color: #fff;
}

.bg-navy h2, .bg-navy h3, .bg-navy h4 {
    color: #fff;
}

.bg-navy p {
    color: rgba(255, 255, 255, .75);
}

/* ---------- Stats band ---------- */
.stats-band {
    background: var(--navy);
    color: #fff;
}

.stats-band .grid-4 {
    text-align: center;
}

.stats-band .stat-num {
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
}

.stats-band .stat-label {
    color: rgba(255, 255, 255, .75);
}

/* ---------- Table ---------- */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    background: #fff;
}

th, td {
    padding: 14px 18px;
    text-align: left;
    font-size: .92rem;
    border-bottom: 1px solid var(--line);
}

th {
    background: var(--bg-soft);
    color: var(--navy);
    font-weight: 700;
}

tr:last-child td {
    border-bottom: none;
}

/* ---------- Testimonials ---------- */
.tcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
}

.tcard .quote-mark {
    color: var(--orange);
    opacity: .4;
    font-size: 1.6rem;
    display: block;
    margin-bottom: 10px;
}

.tcard p.quote {
    font-size: .96rem;
    color: var(--ink);
    margin-bottom: 18px;
}

.tcard .who {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tcard .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--grad-sun);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: .85rem;
}

.tcard .who strong {
    display: block;
    font-size: .92rem;
}

.tcard .who span {
    font-size: .82rem;
    color: var(--muted);
}

/* ---------- Steps (process) ----------
   6 steps look best as 3 columns x 2 rows on desktop, not 5 columns
   (5 cols with 6 items left an orphaned box on its own row). */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width:900px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:560px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 20px;
    position: relative;
}

.step .num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--grad-sun);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
}

.step h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.step p {
    font-size: .88rem;
    color: var(--muted);
    margin: 0;
}

/* ---------- FAQ ----------
   Markup already includes an explicit <i class="fa-solid fa-plus"> icon,
   so there is no ::after "+" here (that was duplicating it into two plus signs). */
.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: .96rem;
    color: var(--navy);
    gap: 12px;
}

.faq-q i {
    color: var(--orange);
    transition: .25s;
    flex-shrink: 0;
    font-size: .95rem;
}

.faq-item.open .faq-q i {
    transform: rotate(135deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding: 0 22px;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 22px 20px;
}

.faq-a p {
    color: var(--muted);
    font-size: .92rem;
    margin: 0;
}

/* ---------- CTA banner ---------- */
.cta-banner {
    background: var(--grad-sun);
    color: #fff;
    border-radius: 24px;
    padding: 56px 40px;
    text-align: center;
    max-width: 1132px;
    margin-inline: auto;
}

.cta-banner h2 {
    color: #fff;
}

.cta-banner p {
    color: rgba(255, 255, 255, .92);
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.cta-banner .btn-outline {
    border-color: rgba(255, 255, 255, .7);
}

.cta-note {
    margin-top: 18px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .85);
}

@media (max-width:600px) {
    .cta-banner {
        padding: 40px 24px;
        border-radius: 18px;
    }
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 40px;
}

@media (max-width:860px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.info-card {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.info-card:last-child {
    border-bottom: none;
}

.info-card .icon-box {
    margin-bottom: 0;
}

.info-card h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.info-card p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.form-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

@media (max-width:480px) {
    .form-box {
        padding: 22px;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width:560px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-size: .86rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--navy);
}

.field input, .field select, .field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: 9px;
    font-size: .94rem;
    font-family: inherit;
    background: var(--bg-soft);
    transition: .2s;
}

.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
}

.form-note {
    font-size: .82rem;
    color: var(--muted);
    margin-top: 10px;
}

.map-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    margin-top: 28px;
}

.map-frame iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

@media (max-width:480px) {
    .map-frame iframe {
        height: 240px;
    }
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .72);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 36px;
    margin-bottom: 44px;
}

@media (max-width:860px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-grid h4 {
    color: #fff;
    font-size: .98rem;
    margin-bottom: 16px;
}

.footer-grid li {
    margin-bottom: 10px;
    font-size: .9rem;
}

.footer-grid a:hover {
    color: var(--amber);
}

.footer-brand p {
    font-size: .9rem;
    max-width: 300px;
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    color: #fff;
}

/* .social-row a:hover{background:var(--grad-sun);} */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 22px;
    text-align: center;
    font-size: .84rem;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(37, 211, 102, .5);
    color: #fff;
    font-size: 1.5rem;
    transition: .2s;
}

.wa-float:hover {
    transform: scale(1.08);
}

@media (max-width:600px) {
    .wa-float {
        width: 48px;
        height: 48px;
        bottom: 16px;
        left: 16px;
        font-size: 1.3rem;
    }
}

/* ---------- Utility ---------- */
.text-center {
    text-align: center;
}

.mt-0 {
    margin-top: 0;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--grad-eco);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: .02em;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width:860px) {
    .split {
        grid-template-columns: 1fr;
    }
}

.split img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.check-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: .95rem;
    color: var(--ink);
    align-items: flex-start;
}

.check-list li i {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--grad-eco);
    color: #fff;
    font-size: .65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

/* extra small screen text scaling */

@media (max-width:360px) {
    html {
        font-size: 15px;
    }
}

/* Header logo polish — add to style.css */
.brand {
    display: flex;
    align-items: center;
}

.brand img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand:hover img {
    opacity: 0.85;
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .brand img {
        height: 38px;
    }
}

@media (max-width: 480px) {
    .brand img {
        height: 32px;
    }
}

/* Footer logo polish — add to style.css */
/* The logo has a white background, so it needs a light chip to read
   correctly on the dark footer. Also fixes duplicate nested <a> tags
   that were in the old footer markup. */
.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    margin-bottom: 14px;
    width: fit-content;
}

.footer-brand-logo img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-brand-logo:hover img {
    opacity: 0.85;
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .footer-brand-logo img {
        height: 34px;
    }
}
