/* assets/css/style.css */
:root {
    /* Color Palette - Midnight Blue & Cyan (Cool Elegant) */
    --primary: #06b6d4;
    /* Cyan 500 - Cool, Modern, Electric */
    --primary-hover: #0891b2;
    /* Cyan 600 */
    --secondary: #3b82f6;
    /* Blue 500 - Deep Accent */

    --bg-body: #0f172a;
    /* Slate 950 - Deep Cool Dark Background */
    --bg-card: #1e293b;
    /* Slate 800 - Rich Dark Blue-Grey Card */
    --bg-input: #334155;
    /* Slate 700 - Input Background */

    --text-main: #f8fafc;
    /* Slate 50 - Crisp White Text */
    --text-muted: #94a3b8;
    /* Slate 400 - Cool Gray Text */

    --border-color: #334155;
    /* Slate 700 - Functional Border */

    --success: #10b981;
    /* Emerald 500 */
    --danger: #ef4444;
    /* Red 500 */
    --warning: #f59e0b;
    /* Amber 500 */

    /* Spacing & Radius */
    --container-width: 1200px;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.5), 0 2px 4px -2px rgb(0 0 0 / 0.5);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.5);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Mesh Gradient Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(at 0% 0%, rgba(6, 182, 212, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(59, 130, 246, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(6, 182, 212, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(59, 130, 246, 0.1) 0px, transparent 50%);
    z-index: -2;
    filter: blur(100px);
    animation: backgroundPulse 15s ease infinite alternate;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1) rotate(2deg);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.04em;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

/* ... existing code ... */

.logo {
    font-size: 1.75rem;
    color: var(--text-main);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.03em;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    /* Clean Standard Font for Logo */
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-primary {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

/* Global Accents & Dividers */
.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
    margin: 4rem 0;
}

/* Section Spacing & Transitions */
.section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section-alt {
    background-color: rgba(30, 41, 59, 0.3);
}

.bg-accent {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.accent-right {
    right: -300px;
    top: 100px;
}

.accent-left {
    left: -300px;
    top: 300px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    font-size: 0.95rem;
    gap: 0.5rem;
    letter-spacing: 0.3px;
    text-transform: none;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0891b2 100%);
    /* Gradient Button */
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(6, 182, 212, 0.3), 0 2px 4px -1px rgba(6, 182, 212, 0.2);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.6), 0 10px 15px -3px rgba(6, 182, 212, 0.4);
    color: #ffffff;
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: none;
    box-shadow: none;
}

.btn-ghost:hover {
    background-color: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Form Elements */
input,
select,
textarea {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    width: 100%;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Header */
header {
    background-color: rgba(15, 23, 42, 0.95);
    /* Darker and slightly more opaque for better readability */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /*Subtle border*/
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Ensure it stays on top of 3D elements */
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 1rem;
}

.logo {
    font-size: 1.85rem;
    display: flex;
    align-items: center;
    gap: 0;
    letter-spacing: -0.08em;
    font-family: 'Inter', sans-serif;
    font-weight: 950;
    font-style: italic;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
    background: linear-gradient(to bottom, #ffffff 40%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    background: linear-gradient(to bottom, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 950;
    position: relative;
    padding-right: 5px;
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.4));
}

/* Removed glow effect for cleaner sporty look */

.logo:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.logo:hover span::after {
    opacity: 0.6;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: 0.5rem;
}

header .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    height: 38px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-right: 1.5rem;
}

.nav-item {
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: var(--text-muted) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    padding: 0.5rem 0;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-item:hover {
    color: var(--text-main) !important;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-item.active {
    color: var(--primary) !important;
}

/* Auth Buttons Specifics */
.btn-login {
    color: var(--text-main) !important;
    font-weight: 500 !important;
}

.btn-login:hover {
    color: var(--primary) !important;
    background: rgba(6, 182, 212, 0.05) !important;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
    z-index: 1001;
}

.user-dropdown-trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.user-dropdown-trigger:hover {
    transform: scale(1.05);
}

.user-avatar-sm {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 220px;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 2000;
    animation: dropdownFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu.show {
    display: block !important;
}

.dropdown-header {
    padding: 0.5rem 0.75rem 0.75rem;
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-role {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.7rem 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dropdown-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    transform: translateX(4px);
}

.dropdown-item.logout {
    color: #ef4444;
}

.dropdown-item.logout:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.25rem;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.hero {
    position: relative;
    padding: 4rem 0 6rem;
    text-align: center;
    background-color: #0f172a;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.8)),
        url('../images/hero/hero_stadium.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: flex-start;
}

.hero .container {
    padding-top: 0 !important;
}

/* Remove Grid Overlay */
.hero::before {
    display: none;
}

/* Floating Glow Orb */
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 5s ease-in-out infinite alternate;
}

@keyframes moveGrid {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.05em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    display: block;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Visual styling removed since hero content is now centered */

/* =========================================
   Section Styling
   ========================================= */
.section {
    padding: 6rem 0;
    position: relative;
    /* Ensure sections have relative positioning for z-index containment */
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0;
}

/* =========================================
   Step Cards (How It Works)
   ========================================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.step-card {
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
}

.step-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   Feature Cards
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: left;
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   Testimonial Cards
   ========================================= */
.testimonial-card {
    padding: 2.5rem;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    background: rgba(30, 41, 59, 0.6);
}

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.12;
    pointer-events: none;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    opacity: 0.25;
    transform: scale(1.1) rotate(-10deg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.user-avatar {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .user-avatar {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.testimonial-author-name {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.testimonial-field-info {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-field-name {
    color: var(--primary);
    font-weight: 600;
}

.testimonial-rating {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    color: #e2e8f0;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes glowPulse {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    to {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.orbit-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    animation: orbitRotate 10s linear infinite;
}

.orbit-ring.ring-2 {
    width: 140%;
    height: 140%;
    border: 1px dashed rgba(59, 130, 246, 0.2);
    animation: orbitRotate 15s linear infinite reverse;
}

.ball-shadow {
    position: absolute;
    bottom: -60px;
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    filter: blur(10px);
    animation: shadowPulse 6s ease-in-out infinite;
}

/* Removed old animation */

@keyframes orbitRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.05);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes shadowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(0.8);
        opacity: 0.3;
    }
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Very subtle border */
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
    /* Highlight border on hover */
}

.card-image {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-info {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-price {
    margin-top: auto;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.card-rating-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(245, 158, 11, 0.1);
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.1);
    transition: all 0.3s ease;
}

.card:hover .card-rating-badge {
    background: rgba(245, 158, 11, 0.2);
    transform: scale(1.05);
}

.card-rating-badge i {
    color: #f59e0b;
    font-size: 0.85rem;
}

.card-rating-badge span {
    font-weight: 700;
    color: #f59e0b;
    font-size: 0.95rem;
}

.card-rating-count {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.card-price-container {
    margin-bottom: 1.25rem;
}

.card-price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
}

.card-price-value {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.card-price-unit {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}


/* FAQ Section Styles */
.faq-section {
    padding: 10rem 0 6rem;
    position: relative;
    z-index: 1;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(30, 41, 59, 0.6);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Card Interactive Glow Effect */
.card {
    position: relative;
    z-index: 1;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(6, 182, 212, 0.1),
            transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

/* Improved Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.section-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    margin: 0;
}

.section-title h2 {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-title span.badge {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 1rem;
    background: rgba(6, 182, 212, 0.1);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

/* Card Improvements - Neon Glass */
.card {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
    transform: translateY(-12px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), 0 0 20px rgba(6, 182, 212, 0.1);
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.card:hover::after {
    opacity: 1;
}

.card-image {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-image {
    transform: scale(1.1);
}

.card-title {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Steps Grid Polish */
.step-card {
    background: rgba(30, 41, 59, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.03) !important;
}

.step-card:hover .step-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
}

.step-icon {
    transition: all 0.4s ease;
}

/* Footer & Other */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
    background-color: #0f172a;
    padding: 6rem 0 3rem;
}