/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&display=swap');

/* CSS Variables - Midnight Royale Theme */
:root {
    --bg-dark: #020617;
    /* Deepest Navy */
    --bg-surface: #0f172a;
    /* Slate 900 */
    --bg-card: #1e293b;
    /* Slate 800 */

    --primary-main: #fbbf24;
    /* Amber Gold */
    --primary-hover: #f59e0b;
    --accent-gold: #d4af37;
    /* Metallic Gold */
    --accent-gold-bright: #fffbeb;

    --text-main: #f8fafc;
    /* White-ish */
    --text-muted: #94a3b8;
    /* Slate 400 */
    --text-light: #cbd5e1;
    /* Slate 300 */

    --success: #10b981;

    --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d4af37 100%);
    --navy-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --card-gradient: linear-gradient(145deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.7));

    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);

    --radius-lg: 16px;
    --radius-md: 10px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo,
.nav-links a,
.btn {
    font-family: 'Cinzel', serif;
    color: var(--text-main);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Wrapper */
.container {
    max-width: 1240px;
    /* Wider container */
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: rgba(15, 23, 42, 0.85);
    /* Dark Glass */
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--primary-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 48px;
    width: auto;
    transition: height 0.3s;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--primary-main);
    color: var(--primary-main);
}

.btn-login:hover {
    background: rgba(251, 191, 36, 0.1);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}

.btn-primary {
    background: var(--gold-gradient);
    color: #0f172a;
    /* Dark text on Gold btn */
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-right: 12px;
}

.lang-btn {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    transition: 0.3s;
    opacity: 0.6;
}

.lang-btn.active {
    opacity: 1;
    border-color: var(--primary-main);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.lang-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    background: linear-gradient(rgba(2, 6, 23, 0.6), rgba(2, 6, 23, 0.8)), url('assets/hero_bg.webp');
    background-size: cover;
    background-position: center bottom;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-main);
    /* Gold text */
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.hero span.highlight {
    color: #fff;
    background: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto 40px;
    font-weight: 400;
}

/* Trust Strip */
.trust-strip {
    background: var(--bg-surface);
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: 0.3s;
}

.trust-icons:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.trust-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Content Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-main);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-main);
    margin: 15px auto 0;
    box-shadow: 0 0 10px var(--primary-main);
}

/* Features Grid (Marquee) */
.features-grid {
    display: flex;
    gap: 25px;
    width: max-content;
    /* Allow grid to stretch beyond container */
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.marquee-container:hover .features-grid {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half the length (1 set of cards) */
    }
}

.feature-card {
    flex: 0 0 320px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    background: var(--card-gradient);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.feature-card button {
    margin-top: auto !important;
}

.feature-card:hover {
    border-color: var(--primary-main);
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: var(--primary-main);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Bonus Table */
.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    box-shadow: var(--shadow-soft);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    font-family: 'Roboto', sans-serif;
}

th {
    background: rgba(251, 191, 36, 0.1);
    color: var(--primary-main);
    padding: 18px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
}

td {
    padding: 18px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.95rem;
}

tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Payment Grid */
.payment-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 25px 0 30px;
    align-items: center;
}

.payment-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s;
    background: #fff;
    /* Ensure logos pop on dark theme */
    padding: 5px;
    /* Padding for uniform look */
}

.payment-logo:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.2);
}

/* SEO Content Guide */
.guide-container {
    background: var(--bg-surface);
    padding: 50px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.guide-block {
    margin-bottom: 50px;
}

.guide-block h3 {
    color: var(--primary-main);
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
}

.guide-block p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.guide-block ul {
    margin-left: 20px;
    margin-bottom: 24px;
}

.guide-block li {
    color: var(--text-light);
    margin-bottom: 12px;
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.guide-block li::before {
    content: '▶';
    color: var(--primary-main);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 4px;
}

.guide-block strong {
    color: var(--text-main);
    font-weight: 600;
}

/* App Download Redesign */
.app-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-main), transparent);
}

.direct-access-box {
    background: rgba(251, 191, 36, 0.05);
    border: 1px dashed rgba(251, 191, 36, 0.3);
    padding: 30px;
    border-radius: var(--radius-md);
    margin: 40px auto;
    max-width: 800px;
    color: var(--text-light);
    backdrop-filter: blur(5px);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
    text-align: left;
}

.app-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.app-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-main);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.1);
}

.app-card h4 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.app-card i {
    color: var(--primary-main);
    font-size: 1.5rem;
}

/* FAQ */
.accordion-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: var(--bg-card);
    border: none;
    color: var(--primary-main);
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(251, 191, 36, 0.05);
    padding-left: 30px;
}

.accordion-header.active {
    background: var(--primary-main);
    color: var(--bg-dark);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s;
}

.accordion-header.active::after {
    transform: rotate(45deg);
    content: '+';
    /* Or just keep + and rotate it to look like x */
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-surface);
}

.accordion-content p {
    padding: 25px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 0;
    text-align: center;
    margin-top: 80px;
    background: var(--bg-surface);
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 24px;
    font-family: 'Roboto', sans-serif;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .logo img {
        height: 40px;
    }

    /* Mobile Header */
    .navbar {
        position: relative;
        justify-content: space-between;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background-color: var(--primary-main);
        border-radius: 3px;
        transition: 0.3s;
    }

    /* Mobile Menu Drawer */
    .nav-links {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(2, 6, 23, 0.98);
        border-bottom: 3px solid var(--primary-main);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        text-align: center;
        display: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
        max-height: 85vh;
        overflow-y: auto;
        backdrop-filter: blur(12px);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile Menu Actions */
    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--border-color);
        width: 100%;
        align-items: center;
    }

    .lang-switch-mobile {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 12px;
    }

    .lang-label {
        color: var(--text-muted);
        font-family: 'Roboto', sans-serif;
        font-weight: 500;
    }

    .btn.full-width {
        width: 100%;
        padding: 14px;
    }

    /* Grids & Layouts */
    .features-grid,
    .app-grid {
        grid-template-columns: 1fr;
    }

    .app-section {
        padding: 50px 24px;
    }

    .guide-container {
        padding: 24px;
    }

    th,
    td {
        font-size: 0.85rem;
        padding: 12px;
    }
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 24px;
    font-family: 'Roboto', sans-serif;
}





/* Hide hamburger on Desktop */
@media (min-width: 769px) {

    .hamburger,
    .mobile-actions {
        display: none;
    }
}

/* =========================================
   Modern Premium Footer
   ========================================= */
.modern-footer {
    background: #0b1120;
    /* Very dark rich blue */
    padding: 80px 0 30px;
    border-top: 1px solid rgba(251, 191, 36, 0.15);
    /* Subtle gold border */
    position: relative;
    color: var(--text-silver);
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-main), transparent);
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Brand Column */
.footer-logo {
    height: 50px;
    margin-bottom: 25px;
}

.brand-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.8;
}

.footer-badges {
    display: flex;
    gap: 10px;
}

.badge-18,
.badge-safe {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.badge-18 {
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.3);
}

.badge-safe {
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.3);
}

/* Column Headers */
.footer-col h4 {
    color: var(--primary-main);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-main);
    transform: translateX(5px);
}

/* Payment Icons Grid */
.footer-payments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-payments img {
    width: 100%;
    border-radius: 6px;
    background: #fff;
    padding: 3px;
    transition: transform 0.3s;
}

.footer-payments img:hover {
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-policies {
    display: flex;
    gap: 25px;
}

.footer-policies a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
}

.footer-policies a:hover {
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-policies {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-payments {
        grid-template-columns: repeat(5, 1fr);
        max-width: 300px;
    }
}

/* =========================================
   ROYAL CENTERED FOOTER (Alternative)
   ========================================= */
.royal-footer {
    background: #050b14;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    position: relative;
    text-align: center;
    color: var(--text-silver);
}

.footer-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Brand */
.footer-logo-lg {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.brand-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.social-row {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.social-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.social-text:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary-gold);
}

.dot {
    color: rgba(255, 255, 255, 0.2);
}

/* Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 10px 0;
}

/* Navigation */
.footer-nav-center {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-center a {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.footer-nav-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: 0.3s;
}

.footer-nav-center a:hover::after {
    width: 100%;
}

/* Payment Section */
.footer-payment-center {
    margin-top: 20px;
}

.payment-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

.payment-flex-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-flex-row img {
    height: 35px;
    width: auto;
    object-fit: contain;
    background: #fff;
    padding: 3px;
    border-radius: 4px;
    transition: transform 0.3s;
}

.payment-flex-row img:hover {
    transform: translateY(-5px);
}

/* Bottom */
.footer-bottom-minimal {
    margin-top: 50px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 600px) {
    .footer-nav-center {
        flex-direction: column;
        gap: 15px;
    }
}

/* Showcase Image Styling */
.showcase-wrapper {
    max-width: 850px;
    margin: 40px auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.showcase-wrapper:hover {
    transform: translateY(-5px);
}

.showcase-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2000;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    background: white;
    padding: 2px;
    overflow: hidden;
}

.float-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.float-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.whatsapp-float {
    background: #25D366;
    /* Whatsapp Green */
}

.telegram-float {
    background: #0088cc;
    /* Telegram Blue */
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 30px;
        right: 15px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }
}

/* Category Banner Styling */
.category-banner {
    width: 100%;
    margin-bottom: 30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #002e1a;
    /* Backup dark green */
    transition: transform 0.3s ease;
}

.category-banner:hover {
    transform: translateY(-5px);
}

.category-banner img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (max-width: 768px) {
    .category-banner {
        margin-bottom: 20px;
    }
}