:root {
    --pink: #ed2f7c;
    --pink-dark: #bd145b;
    --pink-soft: #fff0f6;
    --navy: #052f62;
    --navy-2: #061d3d;
    --blue: #0494d4;
    --blue-soft: #e9f8ff;
    --gold: #f8b84e;
    --ink: #14213d;
    --muted: #6b7280;
    --light: #fff7fb;
    --white: #ffffff;
    --border: rgba(5, 47, 98, .1);
    --shadow: 0 24px 60px rgba(5, 47, 98, .14);
    --shadow-soft: 0 18px 45px rgba(237, 47, 124, .11);
    --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: #fff;
    overflow-x: hidden;
}

img { max-width: 100%; }

a { text-decoration: none; }

.section-padding { padding: 105px 0; }

.section-padding-sm { padding: 75px 0; }

.bg-soft {
    background:
        radial-gradient(circle at top left, rgba(237, 47, 124, .12), transparent 34%),
        radial-gradient(circle at bottom right, rgba(4, 148, 212, .10), transparent 34%),
        #fff8fc;
}

.bg-navy {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(5,47,98,.96), rgba(6,29,61,.98)),
        url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1700&q=80') center/cover no-repeat;
}

.topbar {
    background: var(--navy-2);
    color: rgba(255,255,255,.86);
    padding: 10px 0;
    font-size: .86rem;
}

.topbar .container,
.topbar-left,
.topbar-right {
    gap: 22px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.topbar i { color: var(--pink); }

.topbar a { color: rgba(255,255,255,.86); transition: .25s; }

.topbar a:hover { color: #fff; }

.main-nav {
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 34px rgba(5,47,98,.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
}

.navbar-brand img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    box-shadow: 0 12px 30px rgba(237,47,124,.20);
}

.navbar-brand strong {
    display: block;
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1;
}

.navbar-brand small {
    display: block;
    color: var(--pink);
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .68rem;
}

.navbar-nav .nav-link {
    color: var(--navy);
    font-weight: 800;
    font-size: .94rem;
    padding: 12px 13px !important;
    border-radius: 999px;
    transition: all .25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--pink);
    background: var(--pink-soft);
}

.btn {
    border-radius: 999px;
    font-weight: 900;
    padding: 13px 22px;
    border: none;
    transition: .25s ease;
}

.btn-donate {
    color: #fff !important;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    box-shadow: 0 18px 34px rgba(237,47,124,.26);
}

.btn-donate:hover {
    transform: translateY(-2px);
    color: #fff !important;
    box-shadow: 0 22px 42px rgba(237,47,124,.33);
}

.btn-help {
    color: var(--navy) !important;
    background: var(--blue-soft);
}

.btn-help:hover {
    color: #fff !important;
    background: var(--blue);
    transform: translateY(-2px);
}

.btn-outline-premium {
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
}

.btn-outline-premium:hover {
    color: var(--navy);
    background: #fff;
}

.hero-carousel,
.hero-slide,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    min-height: 760px;
}

.hero-carousel .carousel-item {
    height: 760px;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background-position: center;
    background-size: cover;
    height: 100%;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,29,61,.92) 0%, rgba(5,47,98,.74) 43%, rgba(237,47,124,.25) 100%),
        radial-gradient(circle at 25% 25%, rgba(237,47,124,.42), transparent 30%);
}

.hero-slide::after {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    right: -150px;
    bottom: -210px;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.18);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding-top: 58px;
    padding-bottom: 58px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pink);
    background: rgba(255,255,255,.94);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 900;
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    box-shadow: 0 16px 35px rgba(0,0,0,.12);
}

.hero-title,
.section-title,
.page-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    letter-spacing: -.045em;
}

.hero-title {
    font-size: clamp(3.05rem, 5.15vw, 5.55rem);
    line-height: .94;
    margin: 24px 0 22px;
    min-height: 2.82em;
    max-width: 820px;
    display: block;
    text-wrap: balance;
}
.hero-title .hero-line {
    display: block;
}

.hero-title .text-pink {
    color: var(--pink);
}


.section-title span,
.page-hero h1 span { color: var(--pink); }

.hero-text {
    font-size: clamp(1.05rem, 1.45vw, 1.25rem);
    color: rgba(255,255,255,.92);
    max-width: 720px;
    line-height: 1.7;
    min-height: 5.1em;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}


.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--pink);
    opacity: .8;
}

.carousel-control-prev,
.carousel-control-next { width: 8%; }

.trust-strip {
    position: relative;
    z-index: 3;
    margin-top: -58px;
}

.trust-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 28px;
}

.trust-card .icon-box {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--pink-soft);
    color: var(--pink);
    font-size: 1.35rem;
    flex: 0 0 auto;
}

.trust-card h6 {
    margin: 0;
    color: var(--navy);
    font-weight: 900;
}

.trust-card p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: .94rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pink);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .8rem;
    margin-bottom: 14px;
}

.section-kicker::before {
    content: '';
    width: 34px;
    height: 3px;
    border-radius: 99px;
    background: var(--pink);
}

.section-title {
    font-size: clamp(2.4rem, 4.7vw, 4.4rem);
    color: var(--navy);
    line-height: 1.03;
    margin-bottom: 20px;
}

.section-lead {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.82;
    max-width: 760px;
}

.image-stack {
    position: relative;
    min-height: 560px;
}

.image-stack .image-main,
.image-stack .image-small {
    position: absolute;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.image-stack .image-main {
    width: 78%;
    height: 520px;
    right: 0;
    top: 0;
}

.image-stack .image-small {
    width: 48%;
    height: 270px;
    left: 0;
    bottom: 0;
    border: 10px solid #fff;
}

.floating-badge {
    position: absolute;
    right: 22px;
    bottom: 48px;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 20px;
    max-width: 260px;
}

.floating-badge i {
    color: var(--pink);
    font-size: 1.55rem;
    margin-bottom: 8px;
}

.floating-badge strong {
    display: block;
    color: var(--navy);
    font-weight: 900;
}

.floating-badge span {
    color: var(--muted);
    font-size: .92rem;
}

.mission-card {
    height: 100%;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(5,47,98,.08);
    padding: 34px;
    transition: .25s ease;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.mission-card .mission-icon {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    font-size: 1.7rem;
}

.mission-card h4,
.service-card h4,
.impact-card h4,
.event-card h4 {
    color: var(--navy);
    font-weight: 900;
}

.mission-card p,
.service-card p,
.impact-card p,
.event-card p {
    color: var(--muted);
    line-height: 1.75;
}

.service-card {
    height: 100%;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 34px;
    box-shadow: 0 18px 45px rgba(5,47,98,.07);
    position: relative;
    overflow: hidden;
    transition: .25s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    right: -35px;
    top: -35px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--pink-soft);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(237,47,124,.26);
}

.service-icon {
    width: 66px;
    height: 66px;
    border-radius: 21px;
    display: grid;
    place-items: center;
    color: var(--pink);
    background: var(--pink-soft);
    font-size: 1.65rem;
    margin-bottom: 24px;
}

.service-card .learn-more {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: var(--pink);
    font-weight: 900;
    margin-top: 5px;
}

.cta-band {
    border-radius: 42px;
    background:
        linear-gradient(135deg, rgba(237,47,124,.95), rgba(5,47,98,.98)),
        url('https://images.unsplash.com/photo-1584515933487-779824d29309?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
    padding: 58px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.cta-band::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 38px solid rgba(255,255,255,.13);
}

.cta-band h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.8rem);
    letter-spacing: -.04em;
}

.cta-band p { color: rgba(255,255,255,.86); }

.step-card {
    position: relative;
    height: 100%;
    border-radius: var(--radius);
    background: #fff;
    padding: 34px;
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(5,47,98,.07);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--blue));
    font-weight: 900;
    margin-bottom: 22px;
}

.form-card {
    background: #fff;
    border-radius: 34px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 34px;
}

.form-control,
.form-select,
textarea.form-control {
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(5,47,98,.15);
    padding: 14px 17px;
    font-weight: 600;
}

textarea.form-control { min-height: 145px; }

.form-control:focus,
.form-select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 .25rem rgba(237,47,124,.12);
}

label {
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 8px;
}

.donation-amount {
    display: block;
    width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(237,47,124,.18);
    background: #fff;
    color: var(--navy);
    padding: 19px;
    text-align: center;
    font-weight: 900;
    transition: .25s;
}

.donation-amount:hover,
.donation-amount.active {
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(237,47,124,.20);
}

.impact-card {
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 50px rgba(5,47,98,.10);
    border: 1px solid var(--border);
}

.impact-card img,
.event-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.impact-card .card-body,
.event-card .card-body {
    padding: 28px;
}

.quote-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--pink-soft);
    color: var(--pink);
    margin-bottom: 16px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.metric-box {
    border-radius: 28px;
    padding: 28px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(12px);
}

.metric-box strong {
    display: block;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -.06em;
}

.metric-box span {
    color: rgba(255,255,255,.75);
}

.event-card {
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(5,47,98,.08);
}

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    color: var(--pink);
    background: var(--pink-soft);
    border-radius: 999px;
    font-weight: 900;
    font-size: .84rem;
    margin-bottom: 15px;
}

.page-hero {
    position: relative;
    color: #fff;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,29,61,.92), rgba(5,47,98,.75), rgba(237,47,124,.28));
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: .98;
}

.page-hero p {
    max-width: 720px;
    font-size: 1.18rem;
    color: rgba(255,255,255,.88);
    line-height: 1.8;
}

.breadcrumb-soft {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.82);
    font-weight: 900;
    margin-bottom: 18px;
}

.breadcrumb-soft a { color: #fff; }

.list-check {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-check li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 15px;
    color: var(--muted);
    line-height: 1.65;
}

.list-check li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: var(--pink-soft);
    color: var(--pink);
    display: grid;
    place-items: center;
    font-size: .72rem;
}

.info-panel {
    border-radius: var(--radius);
    padding: 36px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
    box-shadow: var(--shadow);
}

.info-panel h3 { font-weight: 900; }
.info-panel p { color: rgba(255,255,255,.78); }
.info-panel .line { height: 1px; background: rgba(255,255,255,.14); margin: 22px 0; }

.contact-card {
    height: 100%;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(5,47,98,.08);
    padding: 30px;
}

.contact-card i {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--pink);
    background: var(--pink-soft);
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.site-footer {
    position: relative;
    color: rgba(255,255,255,.84);
    padding: 72px 0 28px;
    background:
        radial-gradient(circle at 12% 18%, rgba(237,47,124,.28), transparent 32%),
        radial-gradient(circle at 88% 10%, rgba(4,148,212,.22), transparent 30%),
        linear-gradient(145deg, #04162f 0%, #062a56 48%, #081b38 100%);
    overflow: hidden;
    isolation: isolate;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 82%, transparent);
    opacity: .45;
    z-index: -2;
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(16px);
    opacity: .55;
    z-index: -1;
}

.footer-glow-pink {
    width: 320px;
    height: 320px;
    background: rgba(237,47,124,.28);
    left: -120px;
    bottom: 10%;
}

.footer-glow-blue {
    width: 360px;
    height: 360px;
    background: rgba(4,148,212,.18);
    right: -130px;
    top: 18%;
}

.footer-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 30px;
    margin-bottom: 38px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.07)),
        linear-gradient(135deg, rgba(237,47,124,.32), rgba(4,148,212,.14));
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 70px rgba(0,0,0,.20);
}

.footer-cta-icon {
    width: 74px;
    height: 74px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    box-shadow: 0 20px 44px rgba(237,47,124,.28);
    font-size: 1.8rem;
}

.footer-cta-kicker {
    display: inline-flex;
    color: #ffd8e8;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-cta h3 {
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    font-weight: 800;
    letter-spacing: -.04em;
    margin: 0 0 8px;
}

.footer-cta p {
    margin: 0;
    max-width: 760px;
    color: rgba(255,255,255,.78);
    line-height: 1.75;
}

.footer-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-main {
    padding: 20px 0 0;
}

.footer-main .row {
    row-gap: 36px;
}

.footer-brand-card,
.footer-link-block,
.footer-contact-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
}

.footer-link-block,
.footer-contact-card {
    padding-left: 28px;
    border-left: 1px solid rgba(255,255,255,.12);
    min-height: 100%;
}

.footer-contact-card {
    padding-left: 34px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.footer-brand img {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    padding: 3px;
    box-shadow: 0 16px 42px rgba(237,47,124,.22);
}

.footer-brand h4 {
    color: #fff;
    margin: 0;
    font-weight: 950;
    letter-spacing: -.03em;
    line-height: 1.05;
}

.footer-brand p {
    margin: 5px 0 0;
    color: #ffc9dd;
    font-weight: 900;
}

.footer-text {
    line-height: 1.85;
    color: rgba(255,255,255,.76);
    margin-bottom: 0;
}

.footer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.footer-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    color: rgba(255,255,255,.9);
    background: transparent;
    border: 0;
    font-weight: 800;
    font-size: .86rem;
}

.footer-pills i { color: var(--pink); }

.footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.10);
    transition: .25s;
}

.footer-socials a:hover {
    background: var(--pink);
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(237,47,124,.24);
}

.site-footer h5 {
    color: #fff;
    font-weight: 950;
    margin-bottom: 20px;
    letter-spacing: -.02em;
}

.footer-link-block h5::after,
.footer-contact-card h5::after {
    content: '';
    display: block;
    width: 38px;
    height: 3px;
    border-radius: 99px;
    background: var(--pink);
    margin-top: 11px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,.76);
    transition: .25s;
    font-weight: 750;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--pink);
    margin-right: 9px;
    font-size: .78rem;
    transition: .25s;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-contact-label {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--pink);
    background: rgba(255,255,255,.92);
    font-weight: 900;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.footer-contact-card p {
    color: rgba(255,255,255,.74);
    line-height: 1.72;
    margin-bottom: 20px;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 13px 16px;
    margin-bottom: 18px;
    border-radius: 18px;
    color: #fff;
    background: #25d366;
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(37,211,102,.18);
}

.footer-whatsapp:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-contact-line {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255,255,255,.82);
    margin-top: 12px;
    line-height: 1.5;
}

.footer-contact-line i {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--pink);
    background: rgba(255,255,255,.10);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 42px;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: .93rem;
    color: rgba(255,255,255,.70);
}

.powered-by a {
    color: #fff;
    font-weight: 900;
    border-bottom: 1px solid rgba(237,47,124,.75);
    transition: .25s;
}

.powered-by a:hover {
    color: #ffc9dd;
    border-bottom-color: #ffc9dd;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    z-index: 99;
    box-shadow: 0 18px 40px rgba(37,211,102,.34);
    transition: .25s;
}

.floating-whatsapp:hover { color: #fff; transform: translateY(-4px) scale(1.03); }

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: .7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199px) {
    .navbar-nav { padding-top: 18px; }
    .navbar-nav .btn { margin-top: 8px; width: 100%; }
}

@media (max-width: 991px) {
    .section-padding { padding: 82px 0; }
    .hero-carousel,
    .hero-slide,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        min-height: 650px;
        height: 650px;
    }
    .hero-title { font-size: clamp(2.65rem, 7vw, 4.35rem); min-height: 2.82em; }
    .hero-text { min-height: auto; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-strip { margin-top: 0; padding-top: 28px; }
    .image-stack { min-height: auto; }
    .image-stack .image-main,
    .image-stack .image-small {
        position: relative;
        width: 100%;
        height: 360px;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        margin-bottom: 16px;
        border: 0;
    }
    .floating-badge { position: relative; right: auto; bottom: auto; max-width: 100%; }
    .cta-band { padding: 42px; border-radius: 32px; }
    .footer-cta { grid-template-columns: 1fr; align-items: flex-start; }
    .footer-cta-actions { justify-content: flex-start; }
    .footer-link-block,
    .footer-contact-card { padding-left: 0; border-left: 0; }
}


@media (max-width: 575px) {
    .navbar-brand img { width: 48px; height: 48px; }
    .navbar-brand strong { font-size: 1rem; }
    .hero-carousel,
    .hero-slide,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        min-height: 660px;
        height: 660px;
    }
    .hero-content { padding-top: 34px; padding-bottom: 34px; }
    .hero-title { font-size: clamp(2.25rem, 10.4vw, 3.05rem); min-height: 2.95em; line-height: .98; }
    .hero-text { font-size: 1rem; line-height: 1.65; min-height: auto; }
    .metrics-grid { grid-template-columns: 1fr; }
    .trust-card { padding: 22px; }
    .form-card { padding: 24px; border-radius: 26px; }
    .cta-band { padding: 30px; }
    .page-hero { min-height: 410px; }
    .footer-cta { padding: 24px; border-radius: 26px; }
    .footer-cta-icon { width: 62px; height: 62px; border-radius: 20px; }
    .footer-brand-card,
    .footer-link-block,
    .footer-contact-card { padding: 0; border-radius: 0; }
    .footer-link-block,
    .footer-contact-card { padding-left: 0; border-left: 0; }
    .footer-brand { align-items: flex-start; }
    .footer-brand img { width: 66px; height: 66px; }
    .footer-bottom { display: block; }
    .powered-by { display: block; margin-top: 10px; }
    .floating-whatsapp { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}
