/* ===== CSS VARIABLES ===== */
:root {
    --gold:        #f0a500;
    --gold-dark:   #c98a00;
    --gold-glow:   rgba(240, 165, 0, 0.35);
    --bg:          #080814;
    --bg-alt:      #0c0c1e;
    --card-bg:     #101028;
    --card-border: #1c1c3a;
    --muted:       #b9b9b9;
    --white:       #ffffff;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

section { padding: 55px 0; }

img { max-width: 100%; }

/* ===== UTILITIES ===== */
.text-gold { color: var(--gold) !important; }

.section-label {
    display: inline-block;
    background: rgba(240,165,0,0.12);
    color: var(--gold);
    border: 1px solid rgba(240,165,0,0.3);
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.section-title span { color: var(--gold); }

.divider {
    width: 55px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 14px auto 40px;
    border-radius: 2px;
}

.divider-left { margin-left: 0; }

/* ===== BUTTONS ===== */
.btn-gold {
    background: var(--gold);
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 11px 32px;
    border: 2px solid var(--gold);
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

/* ===== NAVBAR ===== */
/* ===== TICKER BAR ===== */
.ticker-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: var(--gold);
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 35s linear infinite;
    will-change: transform;
}

.ticker-item {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ticker-item i {
    font-size: 0.85rem;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-bar:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-highlight {
    background: #000;
    color: var(--gold) !important;
    font-size: 0.92rem !important;
    padding: 3px 14px !important;
    border-radius: 20px;
    margin: 0 6px;
    letter-spacing: 1px;
}

#mainNav {
    background: rgba(8, 8, 20, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(240,165,0,0.15);
    padding: 14px 0;
    position: fixed;
    top: 36px;
    width: 100%;
    z-index: 1000;
    transition: padding 0.3s, box-shadow 0.3s;
}

#mainNav.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.navbar-brand {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold) !important;
    letter-spacing: 1px;
    line-height: 1;
}

.navbar-brand span { color: #fff; }

.navbar-brand small {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.55rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -2px;
}

.navbar-nav .nav-link {
    color: #c0c0d8 !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.3s;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-toggler {
    border: 1px solid rgba(240,165,0,0.4);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240,165,0,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-call-btn {
    background: rgba(240,165,0,0.1);
    border: 1px solid rgba(240,165,0,0.35);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s;
}

.nav-call-btn:hover {
    background: var(--gold);
    color: #000;
}

/* ===== HERO CAROUSEL ===== */
#home { padding: 0; margin-top: 106px; }

.hero-carousel { position: relative; }

.carousel-item {
    height: 92vh;
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.35);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.carousel-item.active img { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.75) 0%,
        rgba(8,8,20,0.5) 50%,
        rgba(240,165,0,0.07) 100%
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 92%;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5.5vw, 3.8rem);
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
    margin-bottom: 18px;
    line-height: 1.15;
}

.hero-content h1 span { color: var(--gold); }

.hero-content p {
    font-size: clamp(0.88rem, 2vw, 1.05rem);
    color: #bbbbd0;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.carousel-indicators {
    bottom: 25px;
    gap: 6px;
}

.carousel-indicators button {
    width: 36px;
    height: 4px;
    border-radius: 3px;
    background: rgba(255,255,255,0.35);
    border: none;
    transition: all 0.3s;
}

.carousel-indicators button.active {
    background: var(--gold);
    width: 55px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.6;
}

.carousel-control-prev:hover,
.carousel-control-next:hover { opacity: 1; }

/* ===== FEATURE HIGHLIGHTS ===== */
.highlights-section {
    background: var(--bg-alt);
    padding: 90px 0;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-color: rgba(240,165,0,0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);

}


.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 76px;
    height: 76px;
    background: rgba(240,165,0,0.1);
    border: 2px solid rgba(240,165,0,0.25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 0 25px var(--gold-glow);
}

.feature-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== GAMES SECTION ===== */
.games-section { background: var(--bg); padding: 55px 0; }

.game-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    height: 290px;
    border: 1px solid var(--card-border);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.game-card:hover img { transform: scale(1.1); }

.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 45%, rgba(0,0,0,0.2) 100%);
    transition: background 0.35s;
}

.game-card:hover .game-overlay {
    background: linear-gradient(to top, rgba(240,165,0,0.25) 0%, rgba(0,0,0,0.8) 55%, rgba(0,0,0,0.2) 100%);
}

.game-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 22px 20px;
}

.game-info h4 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 4px;
}

.game-info span {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: #000;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.more-games-box {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(240,165,0,0.06) 100%);
    border: 1px dashed rgba(240,165,0,0.4);
    border-radius: 14px;
    padding: 36px 30px;
    text-align: center;
    margin-top: 30px;
}

.more-games-box h4 {
    color: var(--gold);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* ===== ABOUT SECTION ===== */
#about { background: var(--bg-alt); }

.about-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-img-wrap img {
    width: 100%;
    border-radius: 14px;
    display: block;
    transition: transform 0.45s;
}

.about-img-wrap:hover img { transform: scale(1.04); }

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gold);
    color: #000;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
}

.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 20px; }

.about-text p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 30px 0;
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
}

.stat-item { text-align: center; }

.stat-item .num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-item .lbl {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ===== SERVICES SECTION ===== */
#services { background: var(--bg); }

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 36px 26px;
    transition: all 0.35s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(240,165,0,0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.service-icon {
    width: 66px;
    height: 66px;
    background: rgba(240,165,0,0.1);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: all 0.35s;
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: #000;
    border-radius: 16px;
}

.service-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== WHY US SECTION ===== */
#why-us { background: var(--bg-alt); }

.why-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.35s ease;
    height: 100%;
}

.why-card:hover {
    border-color: rgba(240,165,0,0.35);
    box-shadow: 0 12px 35px rgba(0,0,0,0.45);
    transform: translateY(-6px);
}

.why-icon {
    min-width: 56px;
    height: 56px;
    background: rgba(240,165,0,0.1);
    border: 1px solid rgba(240,165,0,0.25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    color: var(--gold);
    transition: all 0.35s;
}

.why-card:hover .why-icon {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.why-body h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-body p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

.cta-banner {
    background: linear-gradient(135deg, rgba(240,165,0,0.08) 0%, rgba(240,165,0,0.03) 100%);
    border: 1px solid rgba(240,165,0,0.2);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    margin-top: 50px;
}

.cta-banner h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }

/* ===== CONTACT SECTION ===== */
#contact { background: var(--bg); }

.contact-info-card,
.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 36px;
    height: 100%;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--card-border);
}

.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-row:first-child { padding-top: 0; }

.contact-ico {
    min-width: 50px;
    height: 50px;
    background: rgba(240,165,0,0.1);
    border: 1px solid rgba(240,165,0,0.25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
}

.contact-row h6 {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-row p { margin: 0; font-weight: 500; font-size: 0.95rem; }

.contact-row a { color: #fff; text-decoration: none; transition: color 0.3s; }
.contact-row a:hover { color: var(--gold); }

.social-icons { display: flex; gap: 10px; margin-top: 24px; }

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(240,165,0,0.08);
    border: 1px solid rgba(240,165,0,0.25);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.social-icon.wa:hover { background: #25D366; border-color: #25D366; color: #fff; }

/* Form Styles */
.form-label {
    color: #ccc;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 7px;
}

.form-control, .form-select {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid var(--card-border) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control::placeholder { color: #555 !important; }

.form-control:focus, .form-select:focus {
    border-color: rgba(240,165,0,0.5) !important;
    box-shadow: 0 0 0 3px rgba(240,165,0,0.12) !important;
    background: rgba(255,255,255,0.06) !important;
}

textarea.form-control { resize: none; }

.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    margin-top: 0;
}

/* ===== FOOTER ===== */
footer {
    background: #050510;
    border-top: 1px solid rgba(240,165,0,0.18);
    padding: 0;
}

.footer-brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.footer-brand-name span { color: #fff; }

.footer-desc {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-top: 14px;
}

.footer-socials { display: flex; gap: 10px; margin-top: 22px; }

.footer-social-ico {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social-ico:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.footer-social-ico.wa:hover { background: #25D366; color: #fff; border-color: #25D366; }

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    color: var(--gold);
    font-size: 1.3rem;
    line-height: 0;
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact-list { list-style: none; padding: 0; }

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-contact-list li:last-child { border-bottom: none; }

.footer-contact-list i {
    color: var(--gold);
    font-size: 1rem;
    width: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list span,
.footer-contact-list a {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-list a:hover { color: var(--gold); }

.footer-bottom {
    border-top: none;
    margin-top: 0;
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p {
    color: #555;
    font-size: 0.82rem;
    margin: 0 0 5px;
}

.footer-bottom span { color: var(--gold); }

/* ===== FLOATING BUTTONS ===== */
.float-wrap {
    position: fixed;
    bottom: 28px;
    right: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    text-decoration: none;
    box-shadow: 0 5px 22px rgba(0,0,0,0.45);
    transition: all 0.3s ease;
    position: relative;
    border: none;
    cursor: pointer;
}

.float-btn:hover {
    transform: scale(1.16);
    box-shadow: 0 8px 28px rgba(0,0,0,0.55);
}

.float-wa { background: #25D366; color: #fff; }
.float-wa:hover { background: #1fba59; color: #fff; }

.float-call { background: var(--gold); color: #000; }
.float-call:hover { background: var(--gold-dark); color: #000; }

.float-top {
    background: rgba(240,165,0,0.15);
    border: 1px solid rgba(240,165,0,0.4);
    color: var(--gold);
}

.float-top:hover { background: var(--gold); color: #000; }

.float-label {
    position: absolute;
    right: 62px;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.73rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.float-label::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid #000;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.float-btn:hover .float-label { opacity: 1; }

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 5px 22px rgba(37,211,102,0.4); }
    50%        { box-shadow: 0 5px 22px rgba(37,211,102,0.1), 0 0 0 10px rgba(37,211,102,0); }
}

.float-wa { animation: wa-pulse 2.5s ease infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    section { padding: 45px 0; }
    .carousel-item { height: 68vh; min-height: 400px; }
    .hero-content h1 { font-size: 1.75rem; }
    .hero-content p { font-size: 0.85rem; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .float-wrap { bottom: 18px; right: 14px; }
}

@media (max-width: 480px) {
    .carousel-item { height: 60vh; }
    .hero-content h1 { font-size: 1.45rem; }
    .hero-btns .btn-gold,
    .hero-btns .btn-outline-gold { padding: 10px 20px; font-size: 0.88rem; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 18px; }
    .stat-item .num { font-size: 1.7rem; }
}
