/*
Theme Name: Teebot Theme
Theme URI: https://teebot.app
Author: Teebot Team
Author URI: https://teebot.app
Description: Custom WordPress theme for Teebot - The Ultimate Traffic Tool.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
Text Domain: teebot-theme
*/

:root {
    --primary-color: #0284c7;
    /* TeeBot Blue */
    --primary-light: #38bdf8;
    /* Lighter Blue */
    --accent-color: #7dd3fc;
    --secondary-color: #6366f1;
    /* Indigo for depth */
    --bg-dark: #0f172a;
    /* Slate 900 */
    --bg-darker: #020617;
    /* Slate 950 */
    --bg-card: rgba(30, 41, 59, 0.4);
    /* Slate 800 with opacity */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    /* Slate 400 */
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-main: linear-gradient(135deg, #0284c7 0%, #6366f1 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

[data-theme="light"] {
    --bg-dark: #f8fafc;
    /* Light Slate Background */
    --bg-darker: #f1f5f9;
    /* Slightly darker for sections */
    --bg-card: #ffffff;
    /* White cards */
    --text-main: #0f172a;
    /* Dark Text */
    --text-muted: #475569;
    /* Muted Slate Text */
    --border-color: #cbd5e1;
    /* Light Border */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo,
.btn {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.small-container {
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.bg-darker {
    background-color: var(--bg-darker);
}

/* Typography Gradient */
.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--primary-light);
    color: var(--primary-light);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-light);
    color: white;
}

.theme-toggle-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
    margin-right: 15px;
    padding: 5px;
    transition: color 0.3s;
}

.theme-toggle-btn:hover {
    color: var(--primary-blue);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-accent {
    color: var(--primary-light);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--text-main);
}

.nav-list a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at top right, rgba(2, 132, 199, 0.15), transparent 60%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(2, 132, 199, 0.2);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(2, 132, 199, 0.3);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Hero Visual Animation */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse 5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-card:nth-child(2) {
    top: 20%;
    right: 10%;
    transform: rotate(5deg);
    animation: float 6s ease-in-out infinite;
}

.hero-card:nth-child(3) {
    bottom: 20%;
    left: 10%;
    transform: rotate(-3deg);
    animation: float 6s ease-in-out infinite 3s;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-text strong {
    display: block;
    font-size: 1.1rem;
}

.card-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(2, 132, 199, 0.1);
    color: var(--primary-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Why Choose */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

.benefit-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.check-icon {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.benefit-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.benefit-content p {
    color: var(--text-muted);
}

.visual-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-card {
    width: 100%;
    max-width: 400px;
    padding: 40px;
}

.stat-row {
    margin-top: 25px;
}

.stat-row span:first-child {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.fill {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 10px;
}

/* Pricing */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Plan Specific Colors */
.text-cyan {
    color: #22d3ee;
}

.text-purple {
    color: #c084fc;
}

.text-amber {
    color: #fbbf24;
}

.text-green {
    color: #4ade80;
}

.border-cyan {
    border-color: rgba(34, 211, 238, 0.3);
}

.border-purple {
    border-color: rgba(192, 132, 252, 0.3);
}

.border-amber {
    border-color: rgba(251, 191, 36, 0.3);
}

.bg-cyan {
    background: #0891b2;
    color: white;
}

.bg-purple {
    background: #9333ea;
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.pricing {
    display: none;
}

.active-grid {
    display: grid;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 40px;
    width: 100%;
    max-width: 380px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 10px 40px rgba(2, 132, 199, 0.15);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    background: linear-gradient(180deg, rgba(2, 132, 199, 0.05), rgba(15, 23, 42, 0) 50%);
    transform: scale(1.05);
    /* Slight emphasized scale */
}

.badge-pop {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 10px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features-list li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--primary-light);
}

.pricing-card .btn {
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: 20px;
}

.faq-answer p {
    color: var(--text-muted);
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question {
    color: var(--primary-light);
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Light Mode Adjustments */
[data-theme="light"] .header {
    background: rgba(248, 250, 252, 0.8);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .glass-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .feature-card {
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .faq-question {
    color: var(--text-main);
}

[data-theme="light"] .brand-section {
    background: white;
}

[data-theme="light"] .slider::before,
[data-theme="light"] .slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

[data-theme="light"] .slider::after {
    background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-muted);
}

.footer-col ul a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-darker);
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding-top: 120px;
    }
}

/* Custom Section */
.custom-section {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
}

.custom-features {
    display: flex;
    gap: 20px;
    margin: 30px 0 40px;
}

.c-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.c-feat-item i {
    color: var(--primary-light);
}

/* Emulator Card */
.emulator-card {
    width: 100%;
    max-width: 500px;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    gap: 0;
}

.emu-header {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.emu-content {
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.emu-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.emu-row>span {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Split Bar Animation */
.split-bar {
    display: flex;
    height: 30px;
    border-radius: 8px;
    overflow: hidden;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
}

.split-segment {
    transition: width 1s ease-in-out;
}

.mobile {
    background: var(--primary-color);
    color: white;
    width: 0%;
    /* Start at 0 for animation */
    animation: growBarMobile 1.5s ease-out forwards;
}

.desktop {
    background: var(--secondary-color);
    color: white;
    width: 0%;
    /* Start at 0 for animation */
    animation: growBarDesktop 1.5s ease-out forwards 0.5s;
}

@keyframes growBarMobile {
    to {
        width: 60%;
    }
}

@keyframes growBarDesktop {
    to {
        width: 40%;
    }
}

/* Browser Pill */
.sim-pill {
    align-self: flex-start;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
}

.sim-pill.active {
    border-color: #27c93f;
    background: rgba(39, 201, 63, 0.1);
    animation: pulseGreen 2s infinite;
}

/* OS Grid */
.os-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.os-item {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all 0.3s;
}

.os-item.active {
    opacity: 1;
    background: var(--bg-card);
    border: 1px solid var(--primary-light);
    box-shadow: 0 0 10px rgba(2, 132, 199, 0.2);
    animation: fadeInOs 0.5s forwards;
}

.os-item:nth-child(1) {
    animation-delay: 0.2s;
}

.os-item:nth-child(2) {
    animation-delay: 0.4s;
}

.os-item:nth-child(3) {
    animation-delay: 0.6s;
}

.os-item:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(39, 201, 63, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(39, 201, 63, 0);
    }
}

@keyframes fadeInOs {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pricing Table */
.comparison-section {
    position: relative;
    z-index: 1;
}

.table-responsive {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    /* Added border to container */
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Visible row separators */
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    /* Visible col separators */
    transition: background-color 0.3s;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
    border-right: none;
}

.comparison-table th {
    background: rgba(15, 23, 42, 0.8);
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.comparison-table .feature-col {
    text-align: left;
    color: var(--primary-light);
    font-weight: 600;
}

.comparison-table .premium-col {
    color: var(--secondary-amber);
}

.check-mark {
    color: var(--secondary-green);
    font-size: 1.2rem;
}

.cross-mark {
    color: #ef4444;
    font-size: 1.2rem;
    opacity: 0.5;
}

/* Table Hover Effects */
.comparison-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.05);
    /* Slight highlight on row hover */
    transform: scale(1);
    /* Stability */
}

.comparison-table tr:hover .feature-col {
    padding-left: 25px;
    /* Slight shift for feature name */
    color: white;
}

/* Pricing Card Unique Hover */
.pricing-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.3);
    border-color: var(--primary-light);
    z-index: 10;
}

.pricing-card.popular:hover {
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.4);
    border-color: var(--secondary-purple);
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 30px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.features-list li i {
    font-size: 1.1rem;
}

.btn-plan {
    display: block;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    /* Default text color */
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    background: var(--bg-card);
    /* Default background if not specified */
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.btn-plan.outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: white;
}

.btn-plan.outline:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.btn-plan.fill {
    background: var(--gradient-main);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
}

.btn-plan.fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.6);
}

/* Brand Slider */
.brand-section {
    padding: 20px 0 40px;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.brand-title {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider {
    height: 80px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, var(--bg-dark) 0%, rgba(15, 23, 42, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
}

.slider::after {
    background: linear-gradient(to left, var(--bg-dark) 0%, rgba(15, 23, 42, 0) 100%);
    right: 0;
    top: 0;
}

.slider::before {
    left: 0;
    top: 0;
}

.slide-track {
    animation: scroll 30s linear infinite;
    display: flex;
    width: calc(250px * 10);
    /* 5 brands * 2 duplicates */
}

.slide {
    height: 80px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.slide:hover {
    opacity: 1;
}

.slide img {
    height: 50px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    /* Removed grayscale filter to show original colors */
    transition: transform 0.3s;
}

.slide span {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.slide:hover img {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5));
    }
}

/* Continuous Bounce Animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.bounce-animate {
    animation: bounce 2s infinite ease-in-out;
}

/* Horizontal Shake Animation */
@keyframes shake-horizontal {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }
}

.shake-animate {
    animation: shake-horizontal 2s infinite ease-in-out;
}