/* ============================================
   Nexon Travenza – Stylesheet
   ============================================ */

    /* ====== BRAND TOKENS ====== */
    :root {
        --gold: #C9A84C;
        --gold-light: #e8c87a;
        --dark: #1A3A3A;
        --dark2: #2D5A5A;
        --white: #fff;
        --off-white: #f8f6f0;
        --text: #2c2c2c;
        --text-muted: #666;
        --radius: 12px;
        --shadow: 0 8px 32px rgba(0,0,0,0.12);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
    body {
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        color: var(--text);
        background: #fff;
        margin: 0;
        overflow-x: hidden;
        width: 100%;
    }
    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

    /* ====== NAVBAR ====== */
    .navbar {
        background: rgba(255,255,255,0.97) !important;
        backdrop-filter: blur(12px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        padding: 6px 0;
    }
    .navbar-brand img { height: 60px; }
    .navbar-brand { padding-top: 2px; padding-bottom: 2px; }
    .nav-link {
        font-weight: 500;
        font-size: 13.5px;
        color: var(--dark) !important;
        letter-spacing: 0.5px;
        padding: 6px 14px !important;
        border-radius: 6px;
        transition: all .2s;
    }
    .nav-link:hover, .nav-link.active { background: var(--off-white); color: var(--gold) !important; }
    .nav-link.btn-enquire {
        background: var(--gold);
        color: #fff !important;
        padding: 7px 18px !important;
        border-radius: 8px;
    }
    .nav-link.btn-enquire:hover { background: var(--dark); color: #fff !important; }

    /* ====== HERO ====== */
    .hero-section {
        position: relative;
        height: 100vh;
        min-height: 560px;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    /* Hero Slider */
    .hero-slider {
        position: absolute; top: 0; left: 0; right: 0; bottom: 0;
        width: 100%; height: 100%;
    }
    .hero-slider .slide {
        position: absolute; top: 0; left: 0; right: 0; bottom: 0;
        width: 100%; height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease;
    }
    .hero-slider .slide.active { opacity: 1; }
    .hero-slider .slide::after {
        content: '';
        position: absolute; inset: 0;
        background: linear-gradient(100deg, rgba(26,58,58,0.82) 0%, rgba(26,58,58,0.45) 60%, rgba(0,0,0,0.2) 100%);
    }
    .hero-content {
        position: relative; z-index: 2;
        height: 100%;
        display: flex; align-items: center;
        padding: 100px 5% 80px;
    }
    .hero-badge {
        display: inline-block;
        background: rgba(201,168,76,0.15);
        border: 1px solid rgba(201,168,76,0.4);
        color: var(--gold);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        padding: 6px 16px;
        border-radius: 30px;
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: clamp(2.2rem, 5vw, 4rem);
        font-weight: 700;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 12px;
    }
    .hero-title span { color: var(--gold); }
    .hero-sub {
        color: rgba(255,255,255,0.75);
        font-size: clamp(14px, 2vw, 17px);
        margin-bottom: 32px;
        font-weight: 300;
    }
    .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-gold {
        background: var(--gold);
        color: #fff;
        border: none;
        padding: 13px 28px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all .25s;
        text-decoration: none;
        display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-gold:hover { background: #b8922e; color: #fff; transform: translateY(-1px); }
    .btn-outline-gold {
        background: transparent;
        color: var(--gold);
        border: 2px solid var(--gold);
        padding: 11px 26px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all .25s;
        text-decoration: none;
        display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline-gold:hover { background: var(--gold); color: #fff; }

    /* Hero dots */
    .hero-dots {
        position: absolute;
        bottom: 28px; left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        display: flex; gap: 8px;
    }
    .hero-dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.4);
        cursor: pointer;
        border: none;
        transition: all .3s;
        padding: 0;
    }
    .hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

    /* Hero Info Card */
    .hero-card {
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(16px);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 28px 24px;
        min-width: 300px;
    }
    .badge-tag {
        background: var(--gold);
        color: #fff;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 1.5px;
        padding: 4px 12px;
        border-radius: 20px;
        text-transform: uppercase;
        margin-bottom: 14px;
        display: inline-block;
    }
    .badge-tag.price-highlight {
        font-size: 14px;
        letter-spacing: 0.3px;
        text-transform: none;
        padding: 7px 16px;
        background: linear-gradient(135deg, var(--gold), #c9982f);
        box-shadow: 0 4px 14px rgba(201, 152, 47, 0.4);
        animation: price-pop 2.2s infinite;
    }
    @keyframes price-pop {
        0%, 100% { box-shadow: 0 4px 14px rgba(201, 152, 47, 0.4); }
        50% { box-shadow: 0 4px 20px rgba(201, 152, 47, 0.65); }
    }
    .hero-content .badge-tag.price-highlight {
        margin-top: 4px;
        margin-bottom: 18px;
    }
    @media (max-width: 575px) {
        .badge-tag.price-highlight {
            font-size: 12.5px;
            padding: 6px 13px;
        }
    }
    .hero-card h4 { font-size: 20px; color: var(--dark); margin-bottom: 4px; }
    .hero-card .sub { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
    .spec-row {
        display: flex; justify-content: space-between; align-items: center;
        padding: 9px 0;
        border-bottom: 1px solid #f0ede8;
        font-size: 13px;
    }
    .spec-row:last-of-type { border-bottom: none; }
    .spec-row .label { color: var(--text-muted); }
    .spec-row .val { font-weight: 600; color: var(--dark); }
    .hero-card .enq-btn {
        width: 100%;
        margin-top: 16px;
        background: var(--dark);
        color: #fff;
        border: none;
        padding: 12px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: background .2s;
    }
    .hero-card .enq-btn:hover { background: var(--gold); }

    /* ====== STATS STRIP ====== */
    .stats-strip { background: var(--dark); padding: 20px 0; }
    .stats-strip .stat { text-align: center; padding: 10px 20px; }
    .stats-strip .stat-num { font-size: 26px; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; line-height: 1; }
    .stats-strip .stat-label { font-size: 11px; color: rgba(255,255,255,0.65); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
    .stat-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; margin: 8px 0; }

    /* ====== SECTIONS ====== */
    .section { padding: 80px 0; }
    .section-alt { background: var(--off-white); }
    .section-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; }
    .section-title { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--dark); margin-bottom: 16px; }
    .section-desc { color: var(--text-muted); line-height: 1.8; max-width: 640px; }
    .divider-gold { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0 28px; }

    /* ====== GALLERY SLIDER ====== */
    .gallery-slider-wrap {
        position: relative;
        overflow: hidden;
        border-radius: var(--radius);
        background: #111;
    }
    .gallery-track {
        display: flex;
        transition: transform 0.5s cubic-bezier(.4,0,.2,1);
    }
    .gallery-slide {
        min-width: 100%;
        position: relative;
    }
    .gallery-slide img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        display: block;
        cursor: pointer;
    }
    .gallery-slide .slide-caption {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.65));
        color: #fff;
        padding: 32px 24px 18px;
        font-size: 14px;
        font-weight: 500;
    }
    .slider-btn {
        position: absolute;
        top: 50%; transform: translateY(-50%);
        width: 44px; height: 44px;
        background: rgba(255,255,255,0.92);
        border: none; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        cursor: pointer;
        z-index: 5;
        color: var(--dark);
        font-size: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        transition: all .2s;
    }
    .slider-btn:hover { background: var(--gold); color: #fff; }
    .slider-btn.prev { left: 14px; }
    .slider-btn.next { right: 14px; }
    .slider-dots {
        display: flex; gap: 6px;
        justify-content: center;
        margin-top: 14px;
        flex-wrap: wrap;
    }
    .slider-dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: #ccc;
        border: none; cursor: pointer; padding: 0;
        transition: all .25s;
    }
    .slider-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

    /* Thumbs strip */
    .thumb-strip {
        display: flex; gap: 8px;
        overflow-x: auto;
        padding: 10px 2px 4px;
        scrollbar-width: thin;
    }
    .thumb-strip::-webkit-scrollbar { height: 4px; }
    .thumb-strip::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
    .thumb-item {
        min-width: 80px; height: 56px;
        border-radius: 6px;
        overflow: hidden;
        cursor: pointer;
        border: 2px solid transparent;
        transition: border-color .2s;
        flex-shrink: 0;
    }
    .thumb-item.active { border-color: var(--gold); }
    .thumb-item img { width: 100%; height: 100%; object-fit: cover; }

    /* ====== OVERVIEW ICONS ====== */
    .overview-card {
        text-align: center; padding: 32px 20px;
        background: #fff; border-radius: var(--radius);
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        transition: transform .25s, box-shadow .25s;
    }
    .overview-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.10); }
    .overview-card .icon-wrap {
        width: 64px; height: 64px;
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 16px; font-size: 22px; color: #fff;
    }
    .overview-card h5 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
    .overview-card p { font-size: 13px; color: var(--text-muted); margin: 0; }

    /* ====== AMENITIES ====== */
    .amenity-chip {
        display: inline-flex; align-items: center; gap: 7px;
        background: #fff; border: 1px solid #e8e4dc;
        border-radius: 30px; padding: 7px 14px;
        font-size: 13px; font-weight: 500; color: var(--dark);
        margin: 4px; transition: all .2s;
    }
    .amenity-chip:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
    .amenity-chip i { color: var(--gold); font-size: 12px; }
    .amenity-chip:hover i { color: #fff; }
    .amenity-section-title {
        font-size: 14px; font-weight: 600; color: var(--dark);
        text-transform: uppercase; letter-spacing: 1px;
        margin-bottom: 14px; padding-bottom: 8px;
        border-bottom: 2px solid var(--gold); display: inline-block;
    }

    /* ====== FLOOR PLANS SLIDER ====== */
    .floor-tabs {
        display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
    }
    .floor-tab {
        padding: 8px 18px; border-radius: 30px;
        border: 1.5px solid #ddd; background: #fff;
        font-size: 13px; font-weight: 500; cursor: pointer;
        color: var(--text-muted); transition: all .2s;
    }
    .floor-tab.active { background: var(--gold); color: #fff; border-color: var(--gold); }
    .floor-tab:hover:not(.active) { border-color: var(--gold); color: var(--gold); }
    .floor-plan-panel { display: none; }
    .floor-plan-panel.active { display: block; }
    .floor-plan-img-wrap {
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        background: #f8f6f0;
        position: relative;
    }
    .floor-plan-img-wrap img {
        width: 100%;
        display: block;
        cursor: pointer;
        transition: transform .3s;
    }
    .floor-plan-img-wrap:hover img { transform: scale(1.01); }

    /* ====== LOCATION ====== */
    .loc-list { list-style: none; padding: 0; margin: 0; }
    .loc-list li {
        display: flex; justify-content: space-between; align-items: center;
        padding: 12px 16px; border-radius: 8px; margin-bottom: 8px;
        background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.05); font-size: 14px;
    }
    .loc-list li:hover { background: var(--off-white); }
    .loc-list .place { font-weight: 500; color: var(--dark); }
    .loc-badge { background: var(--gold); color: #fff; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
    .location-map-img {
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        cursor: pointer;
        position: relative;
    }
    .location-map-img img { width: 100%; display: block; }

    /* ====== IMAGE ENQUIRE OVERLAY ====== */
    .img-enquire-btn {
        position: absolute; bottom: 12px; left: 12px;
        background: var(--gold);
        border: none; border-radius: 8px;
        padding: 7px 14px; font-size: 12px; font-weight: 600;
        color: #fff; cursor: pointer;
        display: flex; align-items: center; gap: 6px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        transition: background .2s;
    }
    .img-enquire-btn:hover { background: #b8922e; }

    /* ====== FAQ ====== */
    .faq-item { background: #fff; border-radius: var(--radius); margin-bottom: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; }
    .faq-question {
        width: 100%; background: none; border: none;
        text-align: left; padding: 18px 22px;
        font-weight: 600; font-size: 15px; color: var(--dark);
        cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    }
    .faq-question:hover { background: var(--off-white); }
    .faq-question .faq-icon {
        width: 26px; height: 26px; min-width: 26px;
        background: var(--off-white); border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 13px; color: var(--gold); transition: transform .3s, background .2s;
    }
    .faq-question.active .faq-icon { transform: rotate(45deg); background: var(--gold); color: #fff; }
    .faq-answer { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.8; }
    .faq-answer.open { display: block; }

    /* ====== DEVELOPER ====== */
    .dev-stat { text-align: center; }
    .dev-stat .num { font-size: 28px; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }
    .dev-stat .lbl { font-size: 12px; color: var(--text-muted); }

    /* ====== MOBILE ACTION BAR ====== */
    .mob-bar {
        position: fixed; bottom: 0; left: 0; right: 0;
        background: var(--dark); display: flex; z-index: 1000;
    }
    .mob-bar .mob-btn {
        flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
        gap: 4px; padding: 10px 4px;
        color: rgba(255,255,255,0.8); font-size: 11px; font-weight: 500;
        cursor: pointer; border: none; background: none; text-decoration: none; transition: all .2s;
    }
    .mob-bar .mob-btn i { font-size: 18px; }
    .mob-bar .mob-btn:hover { color: var(--gold); }
    .mob-bar .mob-btn.primary { background: var(--gold); color: #fff; }
    .mob-bar .mob-btn.primary:hover { background: var(--gold-light); }

    /* ====== FOOTER ====== */
    footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 40px 0 20px; font-size: 13px; }
    footer .footer-brand { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 8px; }
    footer ul { list-style: none; padding: 0; margin: 0; }
    footer ul li { padding: 3px 0; }
    footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
    footer a:hover { color: var(--gold); }
    .footer-divider { border-color: rgba(255,255,255,0.1); margin: 24px 0 16px; }
    .disclaimer { font-size: 11.5px; color: rgba(255,255,255,0.4); line-height: 1.7; }

    /* ====== LEGAL PAGES (Privacy Policy / Terms) ====== */
    .legal-hero {
        background: var(--dark);
        padding: 150px 0 60px;
        text-align: left;
    }
    .legal-hero .section-label { color: var(--gold); }
    .legal-hero h1 { color: #fff; font-size: 2.3rem; margin: 8px 0 10px; }
    .legal-hero p { color: rgba(255,255,255,0.55); font-size: 13px; margin: 0; }
    .legal-content { max-width: 760px; margin: 0 auto; }
    .legal-content h2 {
        font-size: 1.1rem; color: var(--dark);
        margin: 36px 0 12px; padding-bottom: 10px;
        border-bottom: 1px solid #ece7da;
    }
    .legal-content h2:first-of-type { margin-top: 0; }
    .legal-content p { color: var(--text-muted); line-height: 1.85; font-size: 14.5px; margin-bottom: 0; }
    .legal-content a { color: var(--gold); font-weight: 600; text-decoration: none; }
    .legal-content a:hover { text-decoration: underline; }
    @media (max-width: 576px) {
        .legal-hero { padding: 120px 0 40px; }
        .legal-hero h1 { font-size: 1.7rem; }
    }

    /* ====== MODAL ====== */
    .enq-modal .modal-content { border-radius: 16px; overflow: hidden; border: none; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
    .enq-modal .modal-header-custom {
        background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
        padding: 28px 28px 24px; position: relative;
    }
    .enq-modal .modal-header-custom::after {
        content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
        height: 40px; background: #fff; border-radius: 20px 20px 0 0;
    }
    .enq-modal .modal-logo-wrap {
        width: 56px; height: 56px;
        background: #fff;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 14px; position: relative; z-index: 1;
        box-shadow: 0 4px 14px rgba(0,0,0,0.18);
        overflow: hidden;
    }
    .enq-modal .modal-logo { width: 78%; height: 78%; object-fit: contain; }
    .enq-modal .modal-title { color: #fff; font-size: 22px; margin: 0 0 4px; position: relative; z-index: 1; }
    .enq-modal .modal-subtitle { color: rgba(255,255,255,0.7); font-size: 13px; position: relative; z-index: 1; }
    .enq-modal .close-btn {
        position: absolute; top: 16px; right: 16px; z-index: 2;
        background: rgba(255,255,255,0.15); border: none; color: #fff;
        width: 30px; height: 30px; border-radius: 50%; font-size: 16px; cursor: pointer;
        display: flex; align-items: center; justify-content: center; transition: background .2s;
    }
    .enq-modal .close-btn:hover { background: rgba(255,255,255,0.3); }
    .enq-modal .modal-body { padding: 24px 28px 28px; }
    .enq-modal .form-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
    .enq-modal .form-control { border: 1.5px solid #e5e5e5; border-radius: 8px; padding: 11px 14px; font-size: 14px; transition: border-color .2s; }
    .enq-modal .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
    .enq-modal .submit-btn { width: 100%; background: var(--gold); color: #fff; border: none; padding: 13px; border-radius: 10px; font-weight: 700; font-size: 15px; cursor: pointer; transition: background .2s, transform .15s; margin-top: 8px; }
    .enq-modal .submit-btn:hover { background: var(--dark); transform: translateY(-1px); }
    .enq-modal .privacy-note { font-size: 11.5px; color: var(--text-muted); text-align: center; margin-top: 10px; }
    .enq-modal .privacy-note i { color: var(--gold); }
    .success-state { display: none; text-align: center; padding: 20px 0; }
    .success-state .icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; margin: 0 auto 16px; }

    /* ====== RESPONSIVE ====== */
    @media (max-width: 991px) {
        .hero-section { height: auto; min-height: 100vh; padding-top: 80px; }
        .hero-content { height: auto; min-height: calc(100vh - 80px); flex-direction: column; gap: 40px; align-items: flex-start; justify-content: center; padding: 60px 20px 40px; }
        .hero-card { width: 100%; }
        .stat-divider { display: none; }
        body { padding-bottom: 60px; }
        .gallery-slide img { height: 280px; }
        .stats-strip .row { row-gap: 18px; }
        .stats-strip .stat { padding: 6px 10px; }
    }
    @media (min-width: 992px) {
        .mob-bar { display: none !important; }
        .hero-content { gap: 60px; }
    }
    @media (max-width: 576px) {
        .section { padding: 56px 0; }
        .hero-title { font-size: 2rem; }
        .gallery-slide img { height: 220px; }
        .stats-strip .stat-num { font-size: 22px; }
        .stats-strip .stat-label { font-size: 10px; }
    }
    @media (max-width: 400px) {
        .hero-content { padding: 50px 16px 30px; }
        .hero-ctas { width: 100%; }
        .hero-ctas .btn-gold, .hero-ctas .btn-outline-gold { flex: 1; justify-content: center; }
        .navbar-brand img { height: 48px; }
    }

/* ====== FLOATING WHATSAPP BUTTON ====== */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 90px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    z-index: 1050;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: wa-pulse 2.4s infinite;
}
.whatsapp-float,
.whatsapp-float:hover,
.whatsapp-float:focus,
.whatsapp-float:active {
    text-decoration: none;
    color: #fff;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: var(--dark, #1a1a1a);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--dark, #1a1a1a);
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
@keyframes wa-pulse {
    0%   { box-shadow: 0 4px 14px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.55); }
    70%  { box-shadow: 0 4px 14px rgba(0,0,0,0.25), 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 14px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0); }
}
/* On desktop (no mobile action bar), sit closer to the bottom */
@media (min-width: 992px) {
    .whatsapp-float {
        bottom: 28px;
    }
}