/* =========================================================
   ASIARAC — Index / Home  |  Minimalist Light Theme
   Palette: Navy #0a1628 · Gold #d4af37 · Off-white #f8f7f4
   Fonts: Montserrat (body) · Cormorant Garamond (headings)
========================================================= */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

html { overflow-x: hidden; }

:root {
    --navy-dark:   #0a1628;
    --navy-medium: #1a2d4a;
    --navy-light:  #2d4466;
    --gold:        #d4af37;
    --gold-light:  #f4d774;
    --gold-dark:   #b8941f;
    --white:       #ffffff;
    --black:       #000000;
    --gray-light:  #e5e5e5;
    --off-white:   #f8f7f4;
    --section-alt: #f0f2f5;
    --text-muted:  #5a6a7e;
    --p-font:      0.95rem;
}

body {
    background: var(--off-white);
    color: var(--navy-dark);
    overflow-x: hidden;
}

/* ── HEADER ─────────────────────────────────────────────── */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 5%;
    background: var(--navy-dark);
    border-bottom: 2px solid rgba(212, 175, 55, 0.25);
    transition: all .4s ease;
    animation: slideDown 0.7s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.logo img {
    max-width: 160px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img { transform: scale(1.04); }

/* ── NAV ─────────────────────────────────────────────────── */
.navlist { display: flex; align-items: center; }

.navlist a {
    display: inline-block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.88);
    margin: 0 18px;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    text-decoration: none;
    transition: all .25s ease;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.navlist a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.navlist .dropdown-menu {
    background: var(--navy-dark);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    padding: 0.4rem 0;
}

.navlist .dropdown-menu .dropdown-item {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    padding: 0.55rem 1.4rem;
    transition: all .25s ease;
}

.navlist .dropdown-menu .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding-left: 1.8rem;
}

.nav-content { display: flex; align-items: center; }
.nav-content button:hover { transform: translateY(-2px); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all .25s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff !important;
    border-radius: 50px;
    box-shadow: 0 3px 12px rgba(37,211,102,.35);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,.45);
    color: #fff !important;
}

.btn-whatsapp i { margin-right: 7px; font-size: 16px; }

/* ── MOBILE MENU ─────────────────────────────────────────── */
.toggle_btn {
    display: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--gold);
}

.dropdown_bar_menu {
    display: none;
    flex-direction: column;
    background: var(--navy-dark);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    z-index: 999;
}

.dropdown_bar_menu li {
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    text-align: center;
}

.dropdown_bar_menu li a { color: rgba(255,255,255,0.88); font-weight: 500; }
.dropdown_bar_menu li:hover { background: rgba(212, 175, 55, 0.08); }
.dropdown_bar_menu.open { display: flex; }

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--navy-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    z-index: 999;
}

.submenu li {
    padding: 0.6rem 1.4rem;
    white-space: nowrap;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.has-submenu:hover .submenu { display: block; }

.whatsapp-btn { display: none; }

@media (max-width: 768px) {
    .navlist { display: none; }
    .toggle_btn { display: block; }
    .nav-content { display: none; }
    .whatsapp-btn { display: block; }
    .submenu { position: static; }
}

/* ── CAROUSEL ────────────────────────────────────────────── */
.carousel {
    margin-top: 66px;
    max-width: 100vw;
    overflow-x: hidden;
}

/* ── SECTION BASE ────────────────────────────────────────── */
section { padding: 80px 5%; }

/* ── SHARED HEADING STYLE ────────────────────────────────── */
h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--navy-dark);
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy-dark);
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.4rem;
}

/* ── ABOUT US ─────────────────────────────────────────────── */
.about-us {
    padding: 80px 5%;
    width: 100%;
    background: var(--white);
}

.about-us .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 12px;
    margin-top: 32px;
    line-height: 1.25;
}

.about-us .section-content {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-us .container-us img {
    border-radius: 16px;
    width: auto;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(10,22,40,.1);
}

.about-us .container-us p {
    font-size: 0.95rem;
    text-align: justify;
    color: var(--text-muted);
    line-height: 1.9;
}

.read-more-btn {
    background: var(--navy-dark);
    color: var(--white);
    padding: 11px 28px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid var(--navy-dark);
    border-radius: 50px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more-btn:hover {
    background: transparent;
    color: var(--navy-dark);
    transform: translateY(-2px);
}

.hidden-text { display: none; }

@media (max-width: 768px) {
    .about-us { padding: 48px 5%; }
    .about-us .section-title { margin-top: 20px; font-size: 1.6rem; }
}

/* ── PARTNERS ─────────────────────────────────────────────── */
.partners {
    padding: 72px 5%;
    width: 100%;
    text-align: center;
    background: var(--section-alt);
}

.partners h2 { color: var(--navy-dark); margin-bottom: 2rem; }

.img-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.img-container {
    width: 130px;
    height: 130px;
    padding: 14px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.img-container:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
}

.partners img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ── CLIENTS ──────────────────────────────────────────────── */
.clients {
    padding: 72px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.clients h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.4rem;
}

.clients p {
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.images-wrapper {
    display: flex;
    align-items: center;
    width: max-content;
    animation: move 60s linear infinite;
}

.images-wrapper img {
    width: 160px;
    height: 100px;
    object-fit: contain;
    margin-right: 20px;
    padding: 16px 22px;
    background: linear-gradient(135deg, #c4d6ec, #d4e4f4);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(10,22,40,0.08);
    filter: drop-shadow(1px 0 0 rgba(10,22,40,0.45))
            drop-shadow(-1px 0 0 rgba(10,22,40,0.45))
            drop-shadow(0 1px 0 rgba(10,22,40,0.45))
            drop-shadow(0 -1px 0 rgba(10,22,40,0.45));
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.images-wrapper img:hover {
    transform: scale(1.06) translateY(-3px);
    border-color: rgba(212,175,55,0.75);
    box-shadow: 0 8px 24px rgba(10,22,40,0.14);
}

@keyframes move {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .clients { padding: 48px 5%; }
    .clients h1 { font-size: 1.8rem; }
    .images-wrapper img { width: 120px; height: 76px; padding: 12px 16px; margin-right: 14px; }
}

/* ── SIGNATURE / SERVICES ─────────────────────────────────── */
.signature {
    padding: 80px 5%;
    background: var(--section-alt);
}

.signature h2 { color: var(--navy-dark); margin-bottom: 2.5rem; }

.card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    height: 400px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(10,22,40,.12);
    border-color: var(--gold);
}

.card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card a:hover .card-img-top { transform: scale(1.04); }

.card-body {
    text-align: center;
    padding: 1.1rem;
}

.card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0.5rem 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-text, .description {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── VIDEO SECTION ────────────────────────────────────────── */
.video-section {
    padding: 80px 5%;
    text-align: center;
    background: var(--white);
}

.video-section h2 { color: var(--navy-dark); margin-bottom: 0.5rem; }

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    background: var(--section-alt);
    padding-bottom: 0.5rem;
}

.video-container h2 {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy-medium);
    margin: 0.8rem 0 0.4rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.video-container h2::after { display: none; }

video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

@media (max-width: 768px) { .video-grid { grid-template-columns: 1fr; } }

/* ── TRACK RECORD + FLAGS (unified section) ───────────────── */
.track-record {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 5% 48px;
    background: var(--navy-dark);
    width: 100%;
}

.track-record h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.track-record h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 2.5rem;
    border-radius: 2px;
}

.track-record .row {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
}

.track-record .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 200px;
    padding: 2rem 2.5rem;
    border-right: 1px solid rgba(212, 175, 55, 0.15);
}

.track-record .col-md-6:last-child { border-right: none; }

.track-record .counter,
.track-record h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.3rem;
    line-height: 1;
}

.track-record p {
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 0;
    max-width: 160px;
    line-height: 1.5;
}

/* ── FLAGS (fused below track record, same navy bg) ─────────── */
.flag {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5% 72px;
    background: var(--navy-dark);
    width: 100%;
}

.flag-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}

.flag-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.4rem;
}

.flag .flags {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 3px 12px rgba(0,0,0,.3);
    transition: all 0.25s ease;
}

.flag .flags:hover {
    transform: scale(1.14);
    border-color: var(--gold);
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.35);
}

.flag .flags img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .track-record { padding: 56px 5% 0; }
    .track-record .col-md-6 { border-right: none; border-bottom: 1px solid rgba(212,175,55,0.12); padding: 1.4rem 1rem; }
    .track-record .col-md-6:last-child { border-bottom: none; }
    .track-record .counter, .track-record h3 { font-size: 2.8rem; }
    .flag { padding: 0 5% 56px; }
    .flag .flags { width: 54px; height: 54px; }
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonial {
    background: var(--white);
    padding: 80px 7%;
    text-align: center;
    width: 100%;
}

.testimonial h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--navy-dark);
    margin-bottom: 0;
}

.testimonial-card {
    flex: 1;
    min-width: 0;
    padding: 1.4rem 1.2rem;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.13), 0 2px 8px rgba(10,22,40,.07);
    transition: all 0.25s ease;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.28;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 36px rgba(212, 175, 55, 0.28), 0 4px 16px rgba(10,22,40,.08);
    border-color: var(--gold);
}

/* ensure all 3 cards fill the row equally */
.testimonial .d-flex {
    gap: 1rem;
    align-items: stretch;
}

.testimonial .col-12.col-md-4 {
    flex: 1;
    min-width: 0;
    padding: 0;
}

.testimonial-logo {
    width: 90px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 8px;
}

.testimonial-name {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--navy-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-style: italic;
    line-height: 1.7;
}

/* testimonial carousel — allow buttons to escape the clip */
#clientTestimonials,
#clientTestimonials .carousel-inner {
    overflow: visible;
}

/* testimonial carousel arrow buttons */
#clientTestimonials .carousel-control-prev,
#clientTestimonials .carousel-control-next {
    width: 44px;
    height: 44px;
    background: var(--navy-dark);
    border: 2px solid var(--gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.25s ease;
    position: absolute;
}

#clientTestimonials .carousel-control-prev { left: -54px; }
#clientTestimonials .carousel-control-next { right: -54px; }

#clientTestimonials .carousel-control-prev:hover,
#clientTestimonials .carousel-control-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

#clientTestimonials .carousel-control-prev-icon,
#clientTestimonials .carousel-control-next-icon {
    width: 16px;
    height: 16px;
    filter: invert(1);
}

#clientTestimonials .carousel-control-prev:hover .carousel-control-prev-icon,
#clientTestimonials .carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(0) brightness(0);
}

/* keep main banner arrows unchanged */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 18px;
    height: 18px;
    background-color: var(--navy-dark);
    border-radius: 50%;
    opacity: 0.7;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-light);
    border: 2px solid var(--navy-medium);
}

.carousel-indicators .active { background-color: var(--gold); border-color: var(--gold); }

@media (max-width: 768px) {
    .testimonial { padding: 56px 5%; }
    .testimonial .d-flex { flex-direction: column; }
    .testimonial-card { width: 100%; }
    .testimonial h1 { font-size: 1.8rem; }
    #clientTestimonials .carousel-control-prev { left: -16px; }
    #clientTestimonials .carousel-control-next { right: -16px; }
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
    background: var(--navy-dark);
    padding: 4rem 5% 2rem;
    color: rgba(255,255,255,0.7);
    width: 100%;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    flex: 1;
    margin: 1rem;
    max-width: 280px;
}

.footer-col .material-symbols-outlined {
    font-size: 18px;
    margin-right: 8px;
    color: var(--gold);
    vertical-align: middle;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.footer-col p,
.footer-col ul,
.footer-col li { margin: 0.45rem 0; font-size: 0.88rem; }

.footer-col ul { list-style: none; padding: 0; }

.footer-col a {
    color: rgba(255,255,255,0.65);
    transition: color 0.25s;
}

.footer-col a:hover { color: var(--gold); }

/* Footer dropdown */
.footer-col .dropdown > a::after { content: " ▾"; font-size: 0.7rem; margin-left: 4px; }
.footer-col .dropdown:hover > a::after { content: " ▴"; }
.footer-col .dropdown .sub-links { display: none; padding-left: 16px; }
.footer-col .dropdown:hover .sub-links { display: block; }

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.35);
    transition: all 0.25s ease;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.social-links img { width: 18px; height: 18px; filter: brightness(0) invert(1); }

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin: 0.3rem 0; }

/* ── UTILITY ──────────────────────────────────────────────── */
.center-text { text-align: center; }
.center-text h6 {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.action_btn {
    background: var(--navy-dark);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.action_btn:hover {
    background: var(--navy-medium);
    transform: translateY(-2px);
}

/* ── MEDIA QUERIES ────────────────────────────────────────── */
@media (max-width: 1200px) { h2 { font-size: 2.1rem; } }

@media (max-width: 768px) {
    h2 { font-size: 1.9rem; }
    h1 { font-size: 1.9rem; }
    .footer-container { flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 0.4rem; }
    .card { height: auto; }
    .track-record .row { gap: 2rem; }
}

@media (max-width: 576px) {
    h2 { font-size: 1.6rem; }
    h1 { font-size: 1.5rem; }
    .card-title { font-size: 0.82rem; }
    .card-text, .description { font-size: 0.83rem; }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff; border-radius: 50px;
    padding: 13px 22px;
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .82rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 16px rgba(37,211,102,.45);
    transition: all .25s; z-index: 9999; text-decoration: none;
    animation: waPulse 2.2s ease-in-out infinite;
}
.whatsapp-float i { font-size: 1.25rem; }
.whatsapp-float:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 8px 28px rgba(37,211,102,.65); animation: none; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.35); }
    50%       { box-shadow: 0 4px 16px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}

