/* =========================================================
   GRADIENT BUTTON SYSTEM
   ========================================================= */


/* ---------- BASE (Shared) ---------- */
.gradient-button,
.gradient-button-light {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: -4px 4px 0 var(--site-color);
}

/* ---------- DARK BUTTON ---------- */
.gradient-button {
    background-color: var(--secondary-color);
    color: #ffffff !important;
}

/* Dark hover — color LOCKED */
.gradient-button:hover,
.gradient-button:focus,
.gradient-button:active {
    background-color: var(--secondary-color);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow:
        -4px 4px 0 var(--site-color),
        0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Dark shine effect */
.gradient-button::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -150%;
    width: 120%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent 45%,
        rgba(255, 255, 255, 0.22),
        transparent 55%
    );
    transform: rotate(25deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.gradient-button:hover::after {
    left: 150%;
}

/* ---------- LIGHT BUTTON ---------- */
.gradient-button-light {
    background-color: #ffffff;
    color: #000000 !important;
}

/* Light hover — background NEVER changes */
.gradient-button-light:hover,
.gradient-button-light:focus,
.gradient-button-light:active {
    background-color: #ffffff;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow:
        -4px 4px 0 var(--site-color),
        0 6px 16px rgba(0, 0, 0, 0.18);
}

/* Optional: subtle outline on hover (elegant) */
.gradient-button-light:hover {
    outline: 1px solid rgba(0, 0, 0, 0.06);
    outline-offset: -1px;
}

/* ---------- SAFETY LOCKS (Tailwind / Browser Proof) ---------- */
a.gradient-button,
a.gradient-button-light {
    text-decoration: none;
}

.gradient-button *,
.gradient-button-light * {
    position: relative;
    z-index: 2;
}


.nav-link:hover {
    color: var(--site-color) !important;
}

/* ===== PREMIUM DROPDOWN ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: 280px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 10px;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.12),
        0 2px 6px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    z-index: 9999;
}

/* Show */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Item */
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    transition: all 0.25s ease;
}

/* Hover item */
.dropdown-menu a:hover {
    background: linear-gradient(
        90deg,
        rgba(250, 204, 15, 0.12),
        rgba(250, 204, 15, 0.04)
    );
    transform: translateX(4px);
}

/* Icon bubble */
.dropdown-icon {
    width: 36px;
    height: 36px;
    background: rgba(15, 23, 42, 0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--site-color);
    font-size: 14px;
}


/* ---------- Mobile Accordion ---------- */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-submenu.open {
    max-height: 500px;
}

/* Promotional Headline Styles */
.promotional-headline {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 68px;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
}
.tax-free-text {
    color: var(--site-color) !important;
}

/* Announcement Banner Styles */
.announcement-banner {
    background: var(--site-color);
    overflow: hidden;
    position: relative;
}
.announcement-slider {
    display: flex;
    white-space: nowrap;
    animation: slide var(--speed) linear infinite;
    --speed: 30s;
}

.announcement-banner:hover .announcement-slider {
    --speed: 90s; /* slow glide instead of stop */
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin-right: 15px;
}
.bullet-point {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    margin: 0 12px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.announcement-banner::before,
.announcement-banner::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.announcement-banner::before {
    left: 0;
    background: linear-gradient(to right, var(--site-color), transparent);
}

.announcement-banner::after {
    right: 0;
    background: linear-gradient(to left, var(--site-color), transparent);
}


/* Logo Slider Styles */
.logo-slider-container {
    width: 100%;
    overflow: hidden;
}
.logo-slider {
    display: flex;
    align-items: center;
    animation: logo-scroll 30s linear infinite;
    width: max-content;
}
.logo-item {
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes logo-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.logo-slider:hover {
    animation-play-state: paused;
}

/* Comment Hover Effect - All Comments on Blog Pages */
.comment-hover {
    transition: all 0.3s ease;
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}
.comment-hover:hover {
    margin-left: 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid #2563eb;
}

/* Start support */
:root {
    --brand-emerald: #2BAE66;
    --brand-navy: #00203F;
}

/* Main FAB Button (The Trigger) */
.fab-main {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--brand-emerald);
    border: 2px solid var(--brand-navy);
    border-radius: 16px;
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    box-shadow: 6px 6px 0px var(--brand-navy);
    transition: all 0.2s ease;
}

.fab-main:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px var(--brand-navy);
}

/* Support Box Styling */
.support-box {
    position: fixed;
    bottom: 110px; /* Positioned above the button */
    right: 30px;
    width: 350px;
    background: #fff;
    border: 2px solid var(--brand-navy);
    border-radius: 24px;
    overflow: hidden;
    z-index: 10000;
    display: none; /* Controlled by JS */
    flex-direction: column;
    box-shadow: 12px 12px 0px var(--brand-navy); /* Match Testimonial Shadow */
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header & Avatars */
.support-header {
    background: var(--brand-navy);
    padding: 25px;
    color: #fff;
}

.support-avatars {
    display: flex;
    margin-bottom: 12px;
}

.support-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--brand-navy);
    margin-right: -10px;
    background: #eee;
}

/* Buttons inside the box */
.support-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border: 2px solid var(--brand-navy);
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    color: var(--brand-navy);
    transition: all 0.2s ease;
}

.support-btn.primary {
    background: var(--brand-emerald);
    color: white;
}

.support-btn:hover {
    transform: translateX(-5px);
    background: #f8fafc;
}

@media (max-width: 480px) {
    .support-box { width: calc(100% - 40px); right: 20px; }
}

/* Close Button in Header */
.support-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: #000; /* Matching the GoTo screenshot style */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 10;
}

.support-close:hover {
    transform: scale(1.1);
    background: #ff4757; /* Visual feedback on hover */
}

