/*
Theme Name: Betpro Theme
Theme URI: https://betpro.ae
Author: Betpro.ae
Author URI: https://betpro.ae
Description: Professional WordPress theme for Betpro - Dubai's trusted betting platform. Features SEO optimization, responsive design, blog functionality, and custom layouts.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: betpro-theme
Tags: one-column, two-columns, right-sidebar, custom-colors, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments

Betpro Theme - Dubai's #1 Trusted Betting Platform WordPress Theme
*/

/* ============================================
   CSS Variables
   ============================================ */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: #15151f;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6a6a7a;
    
    --accent-primary: #16e0a8;
    --accent-secondary: #0bc88f;
    --accent-gold: #f0b429;
    --accent-gold-light: #ffd666;
    
    --gradient-primary: linear-gradient(135deg, #16e0a8 0%, #0bc88f 100%);
    --gradient-gold: linear-gradient(135deg, #f0b429 0%, #ffd666 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(22, 224, 168, 0.15);
    
    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Syne', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

strong {
    color: var(--accent-primary);
    font-weight: 600;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Preloader
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    animation: pulse 1.5s ease infinite;
}

.preloader-bar {
    width: 120px;
    height: 3px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: loading 1s ease infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--bg-primary);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-text .dot {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a:hover,
.nav-links .current-menu-item a,
.nav-links .current_page_item a {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-links a:hover::after,
.nav-links .current-menu-item a::after,
.nav-links .current_page_item a::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--bg-primary);
    transition: var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(22, 224, 168, 0.4);
}

.nav-cta svg {
    width: 16px;
    height: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(22, 224, 168, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(240, 180, 41, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 10% 60%, rgba(22, 224, 168, 0.08) 0%, transparent 50%),
        var(--gradient-dark);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Animated Orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    top: -10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-gold);
    bottom: 10%;
    left: -5%;
    animation-delay: -7s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-primary);
    top: 50%;
    right: -5%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(10px, 30px) scale(1.05); }
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 56px;
    height: 56px;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.float-element:hover {
    opacity: 0.4;
}

.float-element svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.float-1 { top: 15%; left: 8%; animation-delay: 0s; width: 64px; height: 64px; }
.float-2 { top: 20%; right: 12%; animation-delay: 2s; width: 52px; height: 52px; }
.float-3 { bottom: 25%; left: 5%; animation-delay: 4s; width: 60px; height: 60px; }
.float-4 { bottom: 15%; right: 8%; animation-delay: 6s; width: 48px; height: 48px; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(3deg); }
    50% { transform: translateY(-25px) rotate(-3deg); }
    75% { transform: translateY(-10px) rotate(2deg); }
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(22, 224, 168, 0.08);
    border: 1px solid rgba(22, 224, 168, 0.25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: badgeFadeIn 0.8s ease;
    margin-left: auto;
    margin-right: auto;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: blink 1.5s ease infinite;
    box-shadow: 0 0 12px var(--accent-primary);
}

.badge-text {
    letter-spacing: 0.3px;
}

.badge-icon {
    width: 16px;
    height: 16px;
    stroke: var(--accent-gold);
    fill: var(--accent-gold);
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.9); }
}

@keyframes badgeFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(22, 224, 168, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: #ba0d0d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(186, 13, 13, 0.2);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(22, 224, 168, 0.1);
    border: 1px solid rgba(22, 224, 168, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-primary);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-row {
    display: flex;
    align-items: baseline;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, var(--border-light), transparent);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-muted);
    transition: var(--transition-base);
}

.trust-badge:hover {
    border-color: rgba(22, 224, 168, 0.3);
    color: var(--text-secondary);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-primary);
}

/* Button Glow Effect */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, var(--border-color), transparent);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 4px;
    animation: scrollBounce 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-primary);
}

@keyframes scrollBounce {
    0%, 100% { top: 0; opacity: 1; }
    50% { top: 70%; opacity: 0.5; }
}

/* ============================================
   Section Styles
   ============================================ */
.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(22, 224, 168, 0.1);
    border: 1px solid rgba(22, 224, 168, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-lead {
    font-size: 19px;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 16px;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.point {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.point-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(22, 224, 168, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
}

.point-content h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.point-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.about-note {
    padding: 16px 20px;
    background: rgba(240, 180, 41, 0.1);
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-size: 15px;
    color: var(--text-secondary);
}

/* About Visual */
.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 100%;
    max-width: 360px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 18px;
}

.visual-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 224, 168, 0.1);
    border-radius: 10px;
}

.visual-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-primary);
}

.visual-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visual-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.visual-list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: var(--accent-primary);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.service-card:hover {
    border-color: rgba(22, 224, 168, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-card.featured {
    border-color: var(--accent-primary);
    background: linear-gradient(180deg, rgba(22, 224, 168, 0.05) 0%, var(--bg-card) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--bg-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(22, 224, 168, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-primary);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.steps-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.steps-line {
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border-color);
}

.step {
    position: relative;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
    position: relative;
    z-index: 1;
    transition: var(--transition-base);
}

.step:hover .step-number {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.step-content {
    padding: 0 10px;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: rgba(22, 224, 168, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Markets Section
   ============================================ */
.markets {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.market-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-base);
}

.market-card:hover {
    border-color: rgba(22, 224, 168, 0.3);
    transform: translateY(-4px);
}

.market-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 224, 168, 0.1);
    border-radius: 16px;
    color: var(--accent-primary);
}

.market-icon svg {
    width: 36px;
    height: 36px;
}

.market-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.market-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.market-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.market-tags span {
    padding: 4px 12px;
    background: var(--bg-tertiary);
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Providers */
.providers-section {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.providers-section h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.providers-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.providers-list span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: var(--transition-base);
}

.providers-list span:hover {
    opacity: 1;
    color: var(--accent-primary);
}

/* ============================================
   Dealer Section
   ============================================ */
.dealer-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.dealer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.dealer-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.dealer-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.dealer-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 224, 168, 0.1);
    border-radius: 12px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
}

.dealer-feature h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.dealer-feature p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Dealer Card */
.dealer-visual {
    display: flex;
    justify-content: center;
}

.dealer-card {
    width: 100%;
    max-width: 340px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.dealer-card-header {
    padding: 16px 24px;
    background: rgba(22, 224, 168, 0.1);
    border-bottom: 1px solid var(--border-color);
}

.verified-badge {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
}

.dealer-card-body {
    padding: 32px 24px;
    text-align: center;
}

.dealer-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--bg-primary);
}

.dealer-card-body h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.dealer-card-body > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.dealer-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.dealer-stats > div {
    text-align: center;
}

.stat-val {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 12px;
    color: var(--text-muted);
}

.btn-full {
    width: 100%;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(22, 224, 168, 0.3);
}

.faq-item.active {
    border-color: var(--accent-primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    background: transparent;
    cursor: pointer;
}

.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    transition: var(--transition-base);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    stroke: var(--accent-primary);
}

.faq-answer {
    display: none;
    padding: 0 24px 24px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.contact-wrapper {
    position: relative;
    padding: 80px 60px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(22, 224, 168, 0.2) 0%, transparent 50%),
        linear-gradient(225deg, rgba(240, 180, 41, 0.15) 0%, transparent 50%),
        var(--bg-secondary);
}

.contact-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-feature svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-primary);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-large {
    padding: 20px 48px;
    font-size: 17px;
}

.contact-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    padding: 80px 0 40px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    color: #25D366;
    margin-bottom: 12px;
}

.footer-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
}

.footer-whatsapp .whatsapp-icon {
    width: 18px;
    height: 18px;
}

.footer-hours {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.7;
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-base);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Betpro Number Section
   ============================================ */
.betpro-number-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.number-grid {
    max-width: 900px;
    margin: 0 auto;
}

.number-content p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.number-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.number-feature {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.number-feature:hover {
    border-color: rgba(22, 224, 168, 0.3);
    transform: translateX(8px);
}

.feature-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-primary);
}

.number-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.number-feature p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

.highlight-box {
    padding: 24px;
    background: rgba(22, 224, 168, 0.1);
    border-left: 4px solid var(--accent-primary);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 32px;
}

/* ============================================
   Account Types Section
   ============================================ */
.account-types {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.account-card {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.account-card:hover {
    border-color: rgba(22, 224, 168, 0.3);
    transform: translateY(-4px);
}

.account-card.featured {
    border-color: var(--accent-primary);
    background: linear-gradient(180deg, rgba(22, 224, 168, 0.05) 0%, var(--bg-card) 100%);
}

.account-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--bg-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 224, 168, 0.1);
    border-radius: 16px;
    color: var(--accent-primary);
}

.account-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-primary);
}

.account-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.account-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.account-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.account-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.account-card ul li::before {
    content: '✓';
    color: var(--accent-primary);
    font-weight: bold;
}

.account-note {
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================
   Comparison Section
   ============================================ */
.comparison {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.comparison-card {
    padding: 32px;
    border-radius: var(--border-radius);
    background: var(--bg-card);
    border: 2px solid var(--border-color);
}

.comparison-card.betpro {
    border-color: var(--accent-primary);
    background: linear-gradient(180deg, rgba(22, 224, 168, 0.05) 0%, var(--bg-card) 100%);
}

.comparison-card.international {
    border-color: rgba(255, 68, 68, 0.3);
    background: linear-gradient(180deg, rgba(255, 68, 68, 0.03) 0%, var(--bg-card) 100%);
}

.comparison-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.comparison-card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-card ul li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.comparison-card.betpro ul li {
    color: var(--text-primary);
}

.comparison-note {
    text-align: center;
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

/* ============================================
   Blog/Archive Styles
   ============================================ */
.blog-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-grid.has-sidebar {
    grid-template-columns: 2fr 1fr;
}

.blog-posts {
    display: grid;
    gap: 30px;
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-base);
}

.post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 224, 168, 0.3);
    box-shadow: var(--shadow-glow);
}

.post-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 24px;
}

.post-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-meta svg {
    width: 14px;
    height: 14px;
}

.post-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-title a {
    color: var(--text-primary);
}

.post-title a:hover {
    color: var(--accent-primary);
}

.post-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-primary);
}

.read-more:hover {
    gap: 12px;
}

/* Single Post */
.single-post-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.single-post-container {
    max-width: 800px;
    margin: 0 auto;
}

.single-post-header {
    text-align: center;
    margin-bottom: 40px;
}

.single-post-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.single-post-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: var(--text-muted);
    font-size: 14px;
}

.single-post-featured-image {
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.single-post-featured-image img {
    width: 100%;
    height: auto;
}

.single-post-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.single-post-content p {
    margin-bottom: 20px;
}

.single-post-content a {
    color: var(--accent-primary);
}

.single-post-content a:hover {
    text-decoration: underline;
}

.single-post-content ul,
.single-post-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.single-post-content li {
    margin-bottom: 8px;
    list-style: disc;
}

.single-post-content ol li {
    list-style: decimal;
}

.single-post-content blockquote {
    padding: 20px 24px;
    background: var(--bg-card);
    border-left: 4px solid var(--accent-primary);
    margin: 24px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
    margin: 24px 0;
}

/* Post Tags */
.post-tags {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.post-tags span {
    font-weight: 600;
    margin-right: 12px;
}

.post-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 13px;
    margin: 4px;
    transition: var(--transition-base);
}

.post-tags a:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Post Navigation */
.post-navigation {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.nav-previous,
.nav-next {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.nav-previous:hover,
.nav-next:hover {
    border-color: rgba(22, 224, 168, 0.3);
}

.nav-next {
    text-align: right;
}

.nav-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.nav-title {
    font-weight: 600;
    color: var(--text-primary);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.widget ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 14px;
}

.widget ul li a:hover {
    color: var(--accent-primary);
}

.widget ul li a .count {
    background: var(--bg-tertiary);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 12px;
}

/* Search Widget */
.search-form {
    display: flex;
    gap: 8px;
}

.search-field {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-size: 14px;
}

.search-field:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.search-submit {
    padding: 12px 20px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius-sm);
    color: var(--bg-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.search-submit:hover {
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    transition: var(--transition-base);
}

.pagination a:hover,
.pagination .current {
    background: var(--gradient-primary);
    border-color: var(--accent-primary);
    color: var(--bg-primary);
}

/* ============================================
   404 Page
   ============================================ */
.error-404-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    text-align: center;
}

.error-content {
    max-width: 600px;
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(120px, 20vw, 200px);
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.error-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
}

.error-description {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--bg-secondary);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(22, 224, 168, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.page-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
    position: relative;
}

.breadcrumbs a {
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--accent-primary);
}

.breadcrumbs .separator {
    opacity: 0.5;
}

/* ============================================
   Comments
   ============================================ */
.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.comments-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comment {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-author {
    font-weight: 600;
    margin-bottom: 4px;
}

.comment-date {
    font-size: 13px;
    color: var(--text-muted);
}

.comment-content {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.comment-reply {
    margin-top: 12px;
    display: inline-block;
    font-size: 13px;
    color: var(--accent-primary);
    font-weight: 600;
}

/* Comment Form */
.comment-respond {
    margin-top: 40px;
}

.comment-form-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.comment-form {
    display: grid;
    gap: 20px;
}

.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition-base);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form-submit {
    padding: 16px 32px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: var(--bg-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.comment-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(22, 224, 168, 0.4);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-grid,
    .dealer-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .steps-line {
        display: none;
    }
    
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .account-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid.has-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 100px 40px;
        gap: 24px;
        transition: var(--transition-base);
        border-left: 1px solid var(--border-color);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .hero-stats {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stat-item {
        width: 100%;
        padding: 12px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .trust-badge {
        width: 100%;
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-orbs {
        display: none;
    }
    
    .float-element {
        width: 40px;
        height: 40px;
        opacity: 0.1;
    }
    
    .services-grid,
    .steps-container,
    .markets-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-wrapper {
        padding: 60px 24px;
    }
    
    .contact-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .number-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-num {
        margin: 0 auto;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
    }
    
    .comment-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px 0;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .about-points {
        gap: 16px;
    }
    
    .point {
        flex-direction: column;
        text-align: center;
    }
    
    .providers-list {
        gap: 16px;
    }
    
    .dealer-stats {
        gap: 24px;
    }
}

/* WordPress Specific */
.alignleft {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
}

.alignright {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
}

.aligncenter {
    display: block;
    margin: 20px auto;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 20px;
}

.wp-caption-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.gallery-item {
    margin: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
