/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6500;
    --secondary-color: #1E3E62;
    --dark-color: #0B192C;
    --black-color: #000000;
    --white-color: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Enhanced color palette */
    --primary-light: #ff8a3d;
    --primary-dark: #e55a00;
    --secondary-light: #2d5a8a;
    --accent-gold: #ffd700;
    --accent-purple: #8a2be2;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    --gradient-hero: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    
    /* Enhanced shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 20px rgba(255, 101, 0, 0.3);
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-padding: 0 2rem;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000000;
    color: #ffffff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.skip-link:focus {
    top: 6px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 2rem;
    padding: 0.5rem 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white-color);
    font-weight: 700;
    font-size: 1.8rem;
    transition: var(--transition);
}

.nav-logo:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.nav-logo img {
    height: 60px;
    width: auto;
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: var(--primary-color);
}

.nav-link:focus {
    outline: 2px solid var(--white-color);
    outline-offset: 2px;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-login {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-login:hover,
.btn-login:focus {
    background-color: var(--white-color);
    color: var(--dark-color);
}

.btn-register {
    background-color: #d14500;
    color: #ffffff;
    font-weight: 700;
}

.btn-register:hover,
.btn-register:focus {
    background-color: #e55a00;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #d14500;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    font-weight: 700;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 101, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #d14500;
    border: 2px solid #d14500;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    font-weight: 700;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
    background: none;
    border: none;
    outline: none;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger:focus {
    background-color: rgba(255, 255, 255, 0.2);
    outline: 2px solid var(--white-color);
    outline-offset: 2px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white-color);
    transition: var(--transition);
}

/* General Link Styling */
a {
    color: #d14500;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: #d14500;
    transition: var(--transition);
    position: relative;
    font-weight: 600;
}

a:hover {
    color: #b33a00;
    text-decoration-color: #b33a00;
    text-decoration-thickness: 2px;
}

a:focus {
    outline: 2px solid #d14500;
    outline-offset: 2px;
    border-radius: 3px;
}

/* Button links should not have underlines */
.btn, .btn-login, .btn-register, .btn-primary, .btn-secondary, .btn-outline {
    text-decoration: none;
}

.btn:hover, .btn-login:hover, .btn-register:hover, .btn-primary:hover, .btn-secondary:hover, .btn-outline:hover {
    text-decoration: none;
}

/* Content area links */
.content-section a,
.about-content a,
.contact-content a,
.faq-content a,
.terms-content a,
.privacy-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.content-section a:hover,
.about-content a:hover,
.contact-content a:hover,
.faq-content a:hover,
.terms-content a:hover,
.privacy-content a:hover {
    color: var(--accent-gold);
    text-decoration-color: var(--accent-gold);
    text-decoration-thickness: 2px;
}

.content-section a:focus,
.about-content a:focus,
.contact-content a:focus,
.faq-content a:focus,
.terms-content a:focus,
.privacy-content a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 3px;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero);
    color: var(--white-color);
    padding: var(--section-padding);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(45deg, var(--white-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.25s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 0.25s ease-out 0.1s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.hero-image {
    text-align: center;
    animation: fadeInRight 0.5s ease-out 0.3s both;
    position: relative;
    padding: 1rem;
    max-width: 80%;
    margin: 0 auto;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-gold), var(--accent-purple));
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    z-index: -2;
    opacity: 0.3;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
    filter: drop-shadow(0 8px 16px rgba(255, 101, 0, 0.3));
}

/* Hero image animations */
@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(45deg, var(--primary-color), var(--accent-gold), var(--accent-purple));
    }
    33% {
        background: linear-gradient(45deg, var(--accent-gold), var(--accent-purple), var(--primary-color));
    }
    66% {
        background: linear-gradient(45deg, var(--accent-purple), var(--primary-color), var(--accent-gold));
    }
}

@keyframes borderPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* Hero animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Features Section */
.features-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white-color) 100%);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--dark-color), transparent);
    opacity: 0.05;
}

.features-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
}

.features-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card img {
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray-medium);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Login Section */
.login-section {
    padding: var(--section-padding);
    background: var(--gradient-secondary);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.login-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.login-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.login-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--white-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.login-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.icon {
    font-size: 2rem;
    color: var(--accent-gold);
}

.btn-login-large {
    background: var(--gradient-primary);
    color: var(--white-color);
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.btn-login-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 101, 0, 0.4);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Register Section */
.register-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--white-color) 0%, var(--gray-light) 100%);
    color: var(--dark-color);
    position: relative;
}

.register-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    border-radius: 50%;
    opacity: 0.05;
    animation: float 8s ease-in-out infinite reverse;
}

.register-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.register-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
}

.register-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.register-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: var(--gray-medium);
}

.register-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    padding: 1.5rem;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 101, 0, 0.1);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.benefit-item .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.btn-register-large {
    background: var(--gradient-primary);
    color: var(--white-color);
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.btn-register-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 101, 0, 0.4);
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    border-radius: 50%;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite reverse;
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content {
    text-align: center;
}

.about-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2.5rem;
    color: var(--white-color);
    font-weight: 800;
    position: relative;
    background: linear-gradient(45deg, var(--white-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: slideInLeft 1s ease-out 0.5s both;
}

.about-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white-color);
    opacity: 0.9;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.about-content p:last-of-type {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.about-content .btn {
    animation: fadeInUp 1s ease-out 1.1s both;
}

.about-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.8s both;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: 30px;
    bottom: 30px;
    background: var(--gradient-primary);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.15;
    animation: pulse 3s ease-in-out infinite;
}

.about-image::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.about-image img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: var(--shadow-glow);
}

/* About section animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Games Section */
.games-section {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    color: var(--white-color);
    position: relative;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.games-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--white-color);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.games-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: var(--white-color);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.game-category {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.game-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.game-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.game-category:hover::before {
    transform: scaleX(1);
}

.game-category img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.game-category:hover img {
    transform: scale(1.05);
}

.game-category h3 {
    padding: 2rem 2rem 1rem;
    color: var(--white-color);
    font-size: 1.6rem;
    font-weight: 600;
}

.game-category p {
    padding: 0 2rem 2rem;
    color: var(--white-color);
    opacity: 0.9;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white-color) 100%);
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    opacity: 0.03;
    animation: pulse 4s ease-in-out infinite;
}

.benefits-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.benefits-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: var(--white-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--gray-medium);
    line-height: 1.6;
    font-size: 1.1rem;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.03; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.05; }
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    color: var(--white-color);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.2;
}

.testimonials-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: var(--white-color);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary-color);
    position: absolute;
    top: -15px;
    left: 25px;
    font-family: serif;
    opacity: 0.8;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.testimonial-card p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white-color);
    font-style: italic;
    line-height: 1.6;
    opacity: 0.95;
}

.testimonial-author {
    text-align: right;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-author strong {
    display: block;
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--white-color);
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: var(--gray-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #1a202c;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: #ffffff;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    text-decoration-color: var(--accent-gold);
    text-decoration-thickness: 2px;
}

.footer-section ul li a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 3px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #4a5568;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: var(--transition);
    color: #ffffff;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: #ffffff;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
}

.footer-bottom a:hover {
    color: var(--primary-color);
    text-decoration-color: var(--accent-gold);
    text-decoration-thickness: 2px;
}

.footer-bottom a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Container and general mobile fixes */
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hamburger {
        display: flex;
        padding: 10px;
        margin-right: 1.5rem;
        background: none;
        border: none;
        outline: none;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background: #1a202c;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-menu li a {
        color: #ffffff;
        font-weight: 500;
        text-decoration: none;
        transition: var(--transition);
    }
    
    .nav-menu li a:hover,
    .nav-menu li a:focus {
        color: var(--primary-color);
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-color: var(--primary-color);
    }
    
    .nav-menu li a:focus {
        outline: 2px solid var(--white-color);
        outline-offset: 2px;
        border-radius: 3px;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-buttons {
        display: none;
    }
    
    .nav-menu.active .nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 0.5rem;
    }
    
    .nav-menu.active .nav-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-container {
        margin: 0 1rem;
        padding: 0.5rem 0;
        width: 100%;
        box-sizing: border-box;
    }

    /* Hero Section Mobile Fixes */
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
        width: 100%;
        overflow: hidden;
    }

    .hero-section .container {
        display: flex !important;
        flex-direction: column !important;
        text-align: center;
        gap: 1.5rem;
        grid-template-columns: 1fr !important;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
        width: 100%;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-image {
        max-width: 70%;
        padding: 0.5rem;
        order: 2;
        margin: 0 auto;
        width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    /* About Section Mobile Fixes */
    .about-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    /* Grid Layouts Mobile Fixes */
    .features-grid,
    .games-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }

    .login-features,
    .register-benefits {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        margin: 0 1rem;
        padding: 0.25rem 0;
    }

    /* Hero Section Small Mobile Fixes */
    .hero-section {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-section .container {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        max-width: 90%;
        padding: 0.5rem;
        order: 2;
    }

    .hero-buttons {
        gap: 0.75rem;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Mobile Touch Improvements */
@media (max-width: 768px) {
    .btn,
    .nav-link,
    .hamburger {
        min-height: 44px;
        min-width: 44px;
    }
    
    .feature-card,
    .game-category,
    .benefit-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Additional Mobile Layout Fixes */
    .hero-section .hero-image {
        position: relative;
        z-index: 1;
        order: 2;
    }
    
    .hero-section .hero-image::before,
    .hero-section .hero-image::after {
        display: none;
    }
    
    .hero-section .hero-image img {
        width: 100%;
        height: auto;
        max-width: 300px;
        border-radius: 15px;
    }
    
    /* Force mobile layout */
    .hero-section .container {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
    }
}

/* Games Page Styles */
.game-categories-nav {
    background: var(--white-color);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.categories-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-nav-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.category-nav-btn:hover,
.category-nav-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Featured Games Section */
.featured-games-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white-color) 100%);
}

.featured-games-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
}

.featured-games-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.featured-games-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.featured-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.featured-game-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.featured-game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-image .game-icon {
    font-size: 4rem;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.featured-game-card:hover .game-image img {
    transform: scale(1.1);
}

.featured-game-card:hover .game-image .game-icon {
    transform: scale(1.2);
    color: var(--accent-gold);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
    pointer-events: none;
}

.featured-game-card:hover .game-overlay {
    opacity: 1;
    pointer-events: auto;
}

.game-category {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    align-self: flex-start;
}

.game-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-play {
    background: var(--accent-gold);
    color: var(--white-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-play:hover {
    background: #e5a800;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-demo {
    background: transparent;
    color: var(--white-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--white-color);
    cursor: pointer;
}

.btn-demo:hover {
    background: var(--white-color);
    color: var(--dark-color);
}

.game-info {
    padding: 2rem;
}

.game-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.game-info p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.game-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature {
    background: var(--gray-light);
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Game Sections */
.slot-games-section,
.table-games-section,
.live-casino-section,
.jackpot-games-section {
    padding: var(--section-padding);
}

.slot-games-section {
    background: linear-gradient(135deg, var(--white-color) 0%, var(--gray-light) 100%);
}

.table-games-section {
    background: var(--gradient-secondary);
    color: var(--white-color);
}

.live-casino-section {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white-color) 100%);
}

.jackpot-games-section {
    background: var(--gradient-dark);
    color: var(--white-color);
}

.slot-games-section h2,
.table-games-section h2,
.live-casino-section h2,
.jackpot-games-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
}

.slot-games-section h2,
.live-casino-section h2 {
    color: var(--secondary-color);
}

.table-games-section h2,
.jackpot-games-section h2 {
    color: var(--accent-gold);
}

.slot-games-section h2::after,
.table-games-section h2::after,
.live-casino-section h2::after,
.jackpot-games-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.slot-games-section > .container > p,
.table-games-section > .container > p,
.live-casino-section > .container > p,
.jackpot-games-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.table-games-section > .container > p,
.jackpot-games-section > .container > p {
    opacity: 0.9;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.game-card img,
.game-card .game-icon {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card .game-icon {
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: var(--gray-light);
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-card:hover .game-icon {
    transform: scale(1.1);
    color: var(--accent-gold);
}

.game-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.game-card p {
    color: var(--secondary-color);
    line-height: 1.5;
    margin: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.game-stats {
    display: flex;
    gap: 1rem;
    margin: 0 1.5rem 1.5rem;
    flex-wrap: wrap;
}

.game-stats span {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 101, 0, 0.3);
    transition: var(--transition);
}

.game-stats span:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 101, 0, 0.4);
}

.btn-play-small {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: block;
    text-align: center;
    margin: 0 1.5rem 1.5rem;
}

.btn-play-small:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Jackpot Display */
.jackpot-display {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.jackpot-amount h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.amount {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.jackpot-amount p {
    opacity: 0.8;
    font-size: 1rem;
}

.jackpot-levels {
    display: flex;
    gap: 0.5rem;
    margin: 0 1.5rem 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.jackpot-levels span {
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.jackpot-levels .mini {
    background: #4CAF50;
    color: white;
}

.jackpot-levels .minor {
    background: #2196F3;
    color: white;
}

.jackpot-levels .major {
    background: #FF9800;
    color: white;
}

.jackpot-levels .mega {
    background: #F44336;
    color: white;
}

/* Game Features Section */
.game-features-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--white-color) 0%, var(--gray-light) 100%);
}

.game-features-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
}

.game-features-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* About Us Page Styles */
.page-header {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--white-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Story Section */
.story-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--white-color) 0%, var(--gray-light) 100%);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--secondary-color);
    position: relative;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: var(--section-padding);
    background: var(--gradient-secondary);
    color: var(--white-color);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 20px 20px 0 0;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    background: rgba(255, 255, 255, 0.15);
}

.mission-card h3,
.vision-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white-color) 100%);
}

.values-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
}

.values-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 20px 20px 0 0;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    color: var(--white-color);
    text-align: center;
}

.team-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.team-section > .container > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-heavy);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: block;
    border: 4px solid var(--accent-gold);
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.team-member p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Achievements Section */
.achievements-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--white-color) 0%, var(--gray-light) 100%);
    text-align: center;
}

.achievements-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
}

.achievements-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-item {
    background: var(--white-color);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.achievement-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: var(--text-color);
    font-weight: 500;
}

/* Mobile-First Additional Fixes */
@media (max-width: 768px) {
    /* Ensure all sections fit screen width */
    section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Fix any potential horizontal scrolling */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Ensure buttons don't overflow */
    .btn {
        box-sizing: border-box;
        word-wrap: break-word;
    }
    
    /* Fix feature cards mobile layout */
    .feature-card {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    /* About Us Mobile Styles */
    .page-header {
        padding: 4rem 0 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Games Page Mobile Styles */
    .game-categories-nav {
        padding: 1.5rem 0;
        position: relative;
        top: auto;
    }
    
    .categories-nav-buttons {
        gap: 0.75rem;
    }
    
    .category-nav-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .featured-games-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Fix game image overlapping on mobile */
    .game-image {
        height: 180px;
        margin-bottom: 0;
    }
    
    .game-overlay {
        padding: 1rem;
        z-index: 20;
    }
    
    .game-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-play,
    .btn-demo {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .jackpot-display {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .jackpot-levels {
        flex-direction: column;
        align-items: center;
    }
    
    .jackpot-levels span {
        width: 100%;
        text-align: center;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }

    body {
        color: black;
        background: white;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #ff0000;
        --secondary-color: #0000ff;
        --dark-color: #000000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 

/* Contact Us Page Styles */
.contact-page {
    background: linear-gradient(135deg, var(--gradient-primary) 0%, var(--gradient-secondary) 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.contact-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white-color) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--white-color);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--accent-purple));
    border-radius: 20px 20px 0 0;
}

.contact-info h2 {
    color: var(--white-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 1px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: var(--accent-gold);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.contact-method-content h3 {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-method-content p,
.contact-method-content a {
    color: var(--white-color);
    opacity: 0.9;
    text-decoration: none;
    transition: var(--transition);
}

.contact-method-content a:hover {
    color: var(--accent-gold);
    opacity: 1;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 20px 20px 0 0;
}

.contact-form-container h2 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.contact-form-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white-color);
    color: var(--dark-color);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-medium);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: var(--gradient-secondary);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Contact Map Section */
.contact-map-section {
    margin-top: 5rem;
    padding: 3rem 0;
    background: var(--white-color);
    border-radius: 20px 20px 0 0;
    position: relative;
}

.contact-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--accent-purple));
    border-radius: 20px 20px 0 0;
}

.contact-map-section h2 {
    text-align: center;
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.contact-map-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.map-container {
    background: var(--gray-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin: 0 2rem;
    border: 2px dashed var(--primary-color);
}

.map-placeholder {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 3rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .contact-method-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }
    
    .map-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }
} 

.contact-info-section {
    background: linear-gradient(135deg, #0B192C 0%, #1E3E62 100%);
    padding: 5rem 0;
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.contact-info-section .container {
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6500, #FFD700);
    border-radius: 20px 20px 0 0;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #FF6500;
    box-shadow: 0 20px 40px rgba(255, 101, 0, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6500, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 101, 0, 0.4);
}

.contact-card h3 {
    color: #1E3E62;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-link {
    color: #FF6500;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 1rem;
}

.contact-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.response-time {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-info-section {
        padding: 3rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* Contact Form Section - Modern & Professional Design */
.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,101,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.contact-form-section .container {
    position: relative;
    z-index: 10;
}

.contact-form-section h2 {
    color: #1E3E62;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF6500, #FFD700);
    border-radius: 2px;
}

.contact-form-section p {
    color: #666;
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.contact-form {
    background: white;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 101, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6500, #FFD700, #FF6500);
    border-radius: 25px 25px 0 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #1E3E62;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.form-group label::after {
    content: ' *';
    color: #FF6500;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #1E3E62;
    box-sizing: border-box;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF6500;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 101, 0, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #FFD700;
    background: white;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FF6500"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

.submit-btn {
    background: linear-gradient(135deg, #FF6500, #FF8C00);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 101, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 101, 0, 0.4);
    background: linear-gradient(135deg, #FF8C00, #FF6500);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Form validation styles */
.form-group input:invalid,
.form-group textarea:invalid,
.form-group select:invalid {
    border-color: #dc3545;
}

.form-group input:valid,
.form-group textarea:valid,
.form-group select:valid {
    border-color: #28a745;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem 1.2rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* FAQ Preview Section - Modern & Interactive Design */
.faq-preview-section {
    background: linear-gradient(135deg, #1E3E62 0%, #0B192C 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.faq-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
}

.faq-preview-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 101, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.faq-preview-section .container {
    position: relative;
    z-index: 10;
}

.faq-preview-section h2 {
    color: var(--white-color);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.faq-preview-section h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 2px;
}

.faq-preview-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 1px;
}

.faq-preview-section p {
    color: var(--white-color);
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    opacity: 0.9;
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-preview-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-preview-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 20px 20px 0 0;
}

.faq-preview-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-preview-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.faq-preview-item:hover::after {
    opacity: 1;
    transform: rotate(45deg) scale(1.1);
}

.faq-preview-question {
    color: var(--white-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-preview-question::before {
    content: '❓';
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.faq-preview-answer {
    color: var(--white-color);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 5;
    font-size: 0.95rem;
}

.faq-preview-category {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--dark-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
    position: relative;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.faq-preview-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-preview-cta .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: var(--white-color);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 101, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-preview-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.faq-preview-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 101, 0, 0.4);
}

.faq-preview-cta .btn:hover::before {
    left: 100%;
}

/* Floating animation for background elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-preview-section {
        padding: 3rem 0;
    }
    
    .faq-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .faq-preview-item {
        padding: 1.5rem;
    }
    
    .faq-preview-question {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .faq-preview-question::before {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .faq-preview-cta .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* FAQ Item Styling - Enhanced Typography & Links */
.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--accent-purple));
    border-radius: 20px 20px 0 0;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 101, 0, 0.2);
}

.faq-item h3 {
    color: var(--secondary-color);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-left: 3rem;
    display: flex;
    align-items: center;
}

.faq-item h3::before {
    content: '❓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(255, 101, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.faq-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 3rem;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 1px;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0 0 1.5rem 3rem;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    position: relative;
}

.faq-item p::before {
    content: '💡';
    position: absolute;
    left: -2rem;
    top: 0.2rem;
    font-size: 1.2rem;
    opacity: 0.7;
}

.faq-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 101, 0, 0.1), rgba(255, 215, 0, 0.1));
    border: 2px solid transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-left: 3rem;
    box-shadow: 0 4px 15px rgba(255, 101, 0, 0.2);
}

.faq-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 101, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.faq-link:hover {
    color: var(--white-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 101, 0, 0.4);
    text-decoration: none;
}

.faq-link:hover::before {
    left: 100%;
}

.faq-link:active {
    transform: translateY(0);
}

/* FAQ Item Category Styling */
.faq-item .faq-category {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--dark-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 3rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    position: relative;
}

.faq-item .faq-category::before {
    content: '🏷️';
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* FAQ Item Stats Styling */
.faq-item .faq-stats {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0 0 3rem;
    flex-wrap: wrap;
}

.faq-item .faq-stats span {
    background: var(--gray-light);
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item .faq-stats span:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 101, 0, 0.3);
}

/* Enhanced FAQ Item Hover Effects */
.faq-item:hover h3::before {
    animation: bounce 0.6s ease-in-out;
}

.faq-item:hover h3::after {
    width: 80px;
    transition: width 0.3s ease;
}

.faq-item:hover p::before {
    animation: wiggle 0.6s ease-in-out;
}

/* Animation Keyframes */
@keyframes pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%) translateY(0);
    }
    40% {
        transform: translateY(-50%) translateY(-5px);
    }
    60% {
        transform: translateY(-50%) translateY(-3px);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* Mobile Responsiveness for FAQ Items */
@media (max-width: 768px) {
    .faq-item {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-item h3 {
        padding-left: 2.5rem;
        font-size: 1.3rem;
    }
    
    .faq-item h3::before {
        font-size: 1.5rem;
    }
    
    .faq-item h3::after {
        left: 2.5rem;
        width: 40px;
    }
    
    .faq-item p {
        margin-left: 2.5rem;
        font-size: 0.95rem;
    }
    
    .faq-item p::before {
        left: -1.5rem;
        font-size: 1rem;
    }
    
    .faq-link {
        margin-left: 2.5rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        width: calc(100% - 2.5rem);
        text-align: center;
    }
    
    .faq-item .faq-category {
        margin-left: 2.5rem;
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    
    .faq-item .faq-stats {
        margin-left: 2.5rem;
        gap: 0.5rem;
    }
    
    .faq-item .faq-stats span {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

/* FAQ Navigation - Modern & Interactive Design */
.faq-navigation {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    position: relative;
    border-bottom: 3px solid var(--primary-color);
}

.faq-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(255,101,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.faq-navigation .container {
    position: relative;
    z-index: 10;
}

.faq-navigation h2 {
    color: var(--secondary-color);
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
}

.faq-navigation h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 2px;
}

.faq-navigation p {
    color: var(--text-color);
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

.faq-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-nav-item {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.faq-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 20px 20px 0 0;
}

.faq-nav-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 101, 0, 0.05) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-nav-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 101, 0, 0.15);
}

.faq-nav-item:hover::after {
    opacity: 1;
    transform: rotate(45deg) scale(1.1);
}

.faq-nav-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 101, 0, 0.3);
    position: relative;
    z-index: 5;
}

.faq-nav-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.faq-nav-item h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 5;
}

.faq-nav-item p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
    position: relative;
    z-index: 5;
}

.faq-nav-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 101, 0, 0.1);
    border: 1px solid rgba(255, 101, 0, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.faq-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 101, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.faq-nav-link:hover {
    color: white;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 101, 0, 0.3);
}

.faq-nav-link:hover::before {
    left: 100%;
}

/* FAQ Navigation Categories */
.faq-nav-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.faq-nav-category {
    background: white;
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.faq-nav-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.faq-nav-category:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 101, 0, 0.25);
}

.faq-nav-category:hover::before {
    opacity: 1;
}

.faq-nav-category.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(255, 101, 0, 0.3);
}

/* FAQ Navigation Search */
.faq-nav-search {
    max-width: 500px;
    margin: 2rem auto;
    position: relative;
}

.faq-nav-search input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 101, 0, 0.2);
    border-radius: 25px;
    font-size: 1rem;
    background: white;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-nav-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 101, 0, 0.1);
    transform: translateY(-2px);
}

.faq-nav-search input::placeholder {
    color: var(--text-color);
    opacity: 0.6;
}

.faq-nav-search::after {
    content: '🔍';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    pointer-events: none;
    opacity: 0.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-navigation {
        padding: 2rem 0;
    }
    
    .faq-nav-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .faq-nav-item {
        padding: 1.5rem 1rem;
    }
    
    .faq-nav-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .faq-nav-categories {
        gap: 0.5rem;
        margin: 1.5rem 0;
    }
    
    .faq-nav-category {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .faq-nav-search {
        margin: 1.5rem 1rem;
    }
    
    .faq-nav-search input {
        padding: 0.8rem 1.2rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* FAQ Navigation Buttons - Modern & Interactive Design */
.faq-nav-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.faq-nav-btn {
    background: white;
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 101, 0, 0.2);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    min-width: 140px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.faq-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 101, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.faq-nav-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 30px;
}

.faq-nav-btn:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 101, 0, 0.25);
    text-decoration: none;
}

.faq-nav-btn:hover::before {
    left: 100%;
}

.faq-nav-btn:hover::after {
    opacity: 1;
}

.faq-nav-btn:active {
    transform: translateY(-2px);
}

/* FAQ Navigation Button Icons */
.faq-nav-btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-nav-btn:hover .faq-nav-btn-icon {
    transform: scale(1.2) rotate(5deg);
}

/* FAQ Navigation Button Variants */
.faq-nav-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 101, 0, 0.3);
}

.faq-nav-btn.primary:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-color));
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 101, 0, 0.4);
}

.faq-nav-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.faq-nav-btn.secondary:hover {
    background: var(--primary-color);
    color: white;
}

.faq-nav-btn.outline {
    background: transparent;
    color: var(--secondary-color);
    border-color: rgba(255, 101, 0, 0.3);
}

.faq-nav-btn.outline:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* FAQ Navigation Button Sizes */
.faq-nav-btn.small {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    min-width: 120px;
}

.faq-nav-btn.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    min-width: 160px;
}

/* FAQ Navigation Button States */
.faq-nav-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 101, 0, 0.3);
}

.faq-nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.faq-nav-btn.disabled:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* FAQ Navigation Button Groups */
.faq-nav-btn-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.faq-nav-btn-group .faq-nav-btn {
    border-radius: 0;
    margin: 0;
}

.faq-nav-btn-group .faq-nav-btn:first-child {
    border-radius: 30px 0 0 30px;
}

.faq-nav-btn-group .faq-nav-btn:last-child {
    border-radius: 0 30px 30px 0;
}

.faq-nav-btn-group .faq-nav-btn:not(:first-child):not(:last-child) {
    border-radius: 0;
}

/* FAQ Navigation Button Loading State */
.faq-nav-btn.loading {
    position: relative;
    color: transparent;
}

.faq-nav-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-nav-buttons {
        gap: 1rem;
        margin: 2rem 0;
        flex-direction: column;
        align-items: stretch;
    }
    
    .faq-nav-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-nav-btn.small {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .faq-nav-btn.large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .faq-nav-btn-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .faq-nav-btn-group .faq-nav-btn {
        border-radius: 30px !important;
        margin: 0.25rem 0;
    }
}

/* FAQ Category Active H2 Styling */
.faq-category.active h2 {
    color: var(--white-color);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.faq-category.active h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--white-color), var(--accent-gold));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.faq-category.active h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 1px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.faq-category.active h2 span {
    background: linear-gradient(135deg, var(--white-color) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.faq-category.active h2 .highlight {
    color: var(--accent-gold);
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
    }
}

/* Mobile Responsiveness for Active Category H2 */
@media (max-width: 768px) {
    .faq-category.active h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    
    .faq-category.active h2::before {
        width: 60px;
        height: 3px;
        top: -10px;
    }
    
    .faq-category.active h2::after {
        width: 40px;
        height: 2px;
        bottom: -10px;
    }
}

/* Still Have Questions Section - Modern & Engaging Design */
.still-have-questions {
    background: linear-gradient(135deg, var(--gradient-primary) 0%, var(--gradient-secondary) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.still-have-questions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="question-marks" width="40" height="40" patternUnits="userSpaceOnUse"><text x="20" y="25" font-family="Arial" font-size="20" fill="rgba(255,255,255,0.05)" text-anchor="middle">❓</text></pattern></defs><rect width="100" height="100" fill="url(%23question-marks)"/></svg>');
}

.still-have-questions::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.still-have-questions .container {
    position: relative;
    z-index: 10;
}

.still-have-questions h2 {
    color: var(--white-color);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.still-have-questions h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--white-color), var(--accent-gold));
    border-radius: 2px;
    box-shadow: 0 2px 15px rgba(255, 215, 0, 0.5);
}

.still-have-questions h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 1px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.still-have-questions p {
    color: var(--accent-gold);
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 0 1px 10px rgba(255, 215, 0, 0.3);
}

/* Contact Options Centering */
.contact-options {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    padding: 0 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-options .btn {
    margin: 0;
    flex-shrink: 0;
}

/* Mobile Responsiveness for Contact Options */
@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-options .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Team Intro Section - Modern & Engaging Design */
.team-intro-section {
    background: linear-gradient(135deg, var(--gradient-primary) 0%, var(--gradient-secondary) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.team-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
}

.team-intro-section .container {
    position: relative;
    z-index: 10;
}

.team-intro-section h2 {
    color: var(--white-color);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.team-intro-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--white-color), var(--accent-gold));
    border-radius: 2px;
    box-shadow: 0 2px 15px rgba(255, 215, 0, 0.5);
}

.team-intro-section p {
    color: var(--white-color);
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Team Members Section - Professional Grid Layout */
.team-members-section {
    background: var(--white-color);
    padding: 5rem 0;
    position: relative;
}

.team-members-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--accent-purple));
}

.team-members-section h2 {
    color: var(--secondary-color);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.team-members-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 20px 20px 0 0;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 101, 0, 0.2);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.team-member h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-member .position {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* Support Services Section - Feature Grid */
.support-services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
}

.support-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(255,101,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.support-services-section .container {
    position: relative;
    z-index: 10;
}

.support-services-section h2 {
    color: var(--secondary-color);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.support-services-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.support-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-service {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 20px 20px 0 0;
}

.support-service:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 101, 0, 0.15);
}

.support-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 101, 0, 0.3);
}

.support-service h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-service p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* Support Channels Section - Interactive Cards */
.support-channels-section {
    background: var(--white-color);
    padding: 5rem 0;
    position: relative;
}

.support-channels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-purple));
}

.support-channels-section h2 {
    color: var(--secondary-color);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.support-channels-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.support-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-channel {
    background: linear-gradient(135deg, rgba(255, 101, 0, 0.05), rgba(255, 215, 0, 0.05));
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid rgba(255, 101, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-channel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 20px 20px 0 0;
}

.support-channel:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 101, 0, 0.1), rgba(255, 215, 0, 0.1));
    box-shadow: 0 20px 40px rgba(255, 101, 0, 0.15);
}

.support-channel-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 101, 0, 0.3);
}

.support-channel h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-channel p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    opacity: 0.8;
}

.support-channel .availability {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 101, 0, 0.1);
    border-radius: 20px;
    display: inline-block;
}

/* Support Commitment Section - Trust Building */
.support-commitment-section {
    background: linear-gradient(135deg, var(--gradient-dark) 0%, var(--secondary-color) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.support-commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="shields" width="40" height="40" patternUnits="userSpaceOnUse"><text x="20" y="25" font-family="Arial" font-size="20" fill="rgba(255,255,255,0.05)" text-anchor="middle">🛡️</text></pattern></defs><rect width="100" height="100" fill="url(%23shields)"/></svg>');
}

.support-commitment-section .container {
    position: relative;
    z-index: 10;
}

.support-commitment-section h2 {
    color: var(--white-color);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.support-commitment-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-purple));
    border-radius: 2px;
    box-shadow: 0 2px 15px rgba(255, 215, 0, 0.5);
}

.support-commitment-section p {
    color: var(--white-color);
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    opacity: 0.9;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.commitment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-purple));
    border-radius: 20px 20px 0 0;
}

.commitment-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.commitment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white-color);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.commitment-item h3 {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.commitment-item p {
    color: var(--white-color);
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .team-intro-section,
    .team-members-section,
    .support-services-section,
    .support-channels-section,
    .support-commitment-section {
        padding: 3rem 0;
    }
    
    .team-members-grid,
    .support-services-grid,
    .support-channels-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .team-member,
    .support-service,
    .support-channel,
    .commitment-item {
        padding: 2rem 1.5rem;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
    
    .support-service-icon,
    .support-channel-icon,
    .commitment-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Team Intro Section - Enhanced Font Colors */
.team-intro-section h2 {
    color: var(--accent-gold);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(255, 215, 0, 0.4);
}

.team-intro-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-color));
    border-radius: 2px;
    box-shadow: 0 2px 15px rgba(255, 215, 0, 0.6);
}

.team-intro-section p {
    color: var(--white-color);
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    opacity: 0.95;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Team Members Section - Enhanced Font Colors */
.team-members-section h2 {
    color: var(--primary-color);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 15px rgba(255, 101, 0, 0.2);
}

.team-members-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 101, 0, 0.3);
}

.team-member h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 1px 5px rgba(255, 101, 0, 0.1);
}

.team-member .position {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(255, 215, 0, 0.2);
}

.team-member p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    font-weight: 500;
}

/* Support Services Section - Enhanced Font Colors */
.support-services-section h2 {
    color: var(--accent-purple);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 15px rgba(128, 90, 213, 0.2);
}

.support-services-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--primary-color));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(128, 90, 213, 0.3);
}

.support-service h3 {
    color: var(--accent-purple);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(128, 90, 213, 0.1);
}

.support-service p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
    font-weight: 500;
}

/* Support Channels Section - Enhanced Font Colors */
.support-channels-section h2 {
    color: var(--accent-gold);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.3);
}

.support-channels-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-purple));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.support-channel h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(255, 215, 0, 0.2);
}

.support-channel p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    opacity: 0.85;
    font-weight: 500;
}

.support-channel .availability {
    color: var(--white-color);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 101, 0, 0.3);
}

/* Support Commitment Section - Enhanced Font Colors */
.support-commitment-section h2 {
    color: var(--accent-gold);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(255, 215, 0, 0.5);
}

.support-commitment-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--white-color));
    border-radius: 2px;
    box-shadow: 0 2px 15px rgba(255, 215, 0, 0.6);
}

.support-commitment-section p {
    color: var(--accent-gold);
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    opacity: 0.9;
    text-shadow: 0 1px 10px rgba(255, 215, 0, 0.3);
    font-weight: 500;
}

.commitment-item h3 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 8px rgba(255, 215, 0, 0.4);
}

.commitment-item p {
    color: var(--white-color);
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Terms & Conditions Page - Modern & Professional Design */
.terms-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.terms-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.terms-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.terms-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(30, 62, 98, 0.3);
    font-weight: 800;
}

.terms-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.terms-content {
    background: white;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 101, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.terms-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--accent-purple));
    border-radius: 25px 25px 0 0;
}

.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 101, 0, 0.1);
    position: relative;
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-section h2 {
    color: var(--primary-color);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-left: 2rem;
}

.terms-section h2::before {
    content: '📋';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.terms-section h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.terms-section h3::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.terms-section p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: justify;
    opacity: 0.9;
}

.terms-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.terms-section li {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
}

.terms-section li::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.terms-section .highlight {
    background: linear-gradient(135deg, rgba(255, 101, 0, 0.1), rgba(255, 215, 0, 0.1));
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.terms-section .important {
    background: linear-gradient(135deg, rgba(255, 101, 0, 0.15), rgba(255, 215, 0, 0.15));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
}

.terms-section .important::before {
    content: '⚠️';
    position: absolute;
    top: -10px;
    left: 20px;
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
}

.terms-section .important h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.terms-section .important p {
    margin: 0;
    color: var(--secondary-color);
    font-weight: 500;
}

.terms-section .contact-info {
    background: linear-gradient(135deg, rgba(30, 62, 98, 0.05), rgba(255, 101, 0, 0.05));
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.terms-section .contact-info h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.terms-section .contact-info p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.terms-section .contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-section .contact-info a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Terms Navigation */
.terms-navigation {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 101, 0, 0.1);
}

.terms-navigation h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.terms-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.terms-nav-link {
    background: rgba(255, 101, 0, 0.1);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.terms-nav-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 101, 0, 0.3);
}

/* Terms Footer */
.terms-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 101, 0, 0.1);
}

.terms-footer p {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

.terms-footer .last-updated {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .terms-page {
        padding: 1rem 0;
    }
    
    .terms-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 20px;
    }
    
    .terms-section h2 {
        padding-left: 1.5rem;
        font-size: 1.6rem;
    }
    
    .terms-section h2::before {
        font-size: 1.2rem;
    }
    
    .terms-section h3 {
        padding-left: 1.2rem;
        font-size: 1.2rem;
    }
    
    .terms-section h3::before {
        font-size: 1.2rem;
    }
    
    .terms-section ul {
        padding-left: 1.5rem;
    }
    
    .terms-section li::before {
        left: -1.2rem;
    }
    
    .terms-navigation {
        padding: 1.5rem;
        margin: 0 1rem 2rem;
    }
    
    .terms-nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .terms-nav-link {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Privacy Policy Page - Modern & Professional Design */
.privacy-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.privacy-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.privacy-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(30, 62, 98, 0.3);
    font-weight: 800;
}

.privacy-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.privacy-content {
    background: white;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 101, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--accent-purple));
    border-radius: 25px 25px 0 0;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 101, 0, 0.1);
    position: relative;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2 {
    color: var(--primary-color);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-left: 2rem;
}

.privacy-section h2::before {
    content: '🔒';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.privacy-section h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.privacy-section h3::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.privacy-section p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: justify;
    opacity: 0.9;
}

.privacy-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
}

.privacy-section li::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.privacy-section .highlight {
    background: linear-gradient(135deg, rgba(255, 101, 0, 0.1), rgba(255, 215, 0, 0.1));
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.privacy-section .important {
    background: linear-gradient(135deg, rgba(255, 101, 0, 0.15), rgba(255, 215, 0, 0.15));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
}

.privacy-section .important::before {
    content: '⚠️';
    position: absolute;
    top: -10px;
    left: 20px;
    background: white;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
}

.privacy-section .important h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.privacy-section .important p {
    margin: 0;
    color: var(--secondary-color);
    font-weight: 500;
}

.privacy-section .contact-info {
    background: linear-gradient(135deg, rgba(30, 62, 98, 0.05), rgba(255, 101, 0, 0.05));
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.privacy-section .contact-info h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.privacy-section .contact-info p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.privacy-section .contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-section .contact-info a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Privacy Navigation */
.privacy-navigation {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 101, 0, 0.1);
}

.privacy-navigation h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.privacy-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.privacy-nav-link {
    background: rgba(255, 101, 0, 0.1);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.privacy-nav-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 101, 0, 0.3);
}

/* Privacy Footer */
.privacy-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 101, 0, 0.1);
}

.privacy-footer p {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

.privacy-footer .last-updated {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .privacy-page {
        padding: 1rem 0;
    }
    
    .privacy-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 20px;
    }
    
    .privacy-section h2 {
        padding-left: 1.5rem;
        font-size: 1.6rem;
    }
    
    .privacy-section h2::before {
        font-size: 1.2rem;
    }
    
    .privacy-section h3 {
        padding-left: 1.2rem;
        font-size: 1.2rem;
    }
    
    .privacy-section h3::before {
        font-size: 1.2rem;
    }
    
    .privacy-section ul {
        padding-left: 1.5rem;
    }
    
    .privacy-section li::before {
        left: -1.2rem;
    }
    
    .privacy-navigation {
        padding: 1.5rem;
        margin: 0 1rem 2rem;
    }
    
    .privacy-nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .privacy-nav-link {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* 404 Page - Modern & Engaging Design */
.error-404-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.error-404-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="error-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23error-dots)"/></svg>');
}

.error-404-page::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.error-404-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.error-404-number {
    font-size: clamp(8rem, 20vw, 12rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    display: inline-block;
}

.error-404-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.error-404-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    position: relative;
}

.error-404-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    border-radius: 2px;
    box-shadow: 0 2px 15px rgba(255, 105, 180, 0.6);
}

.error-404-description {
    font-size: 1.3rem;
    color: #f0f8ff;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.error-404-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    padding: 1.2rem 2.5rem;
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 180px;
    justify-content: center;
}

.error-404-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.error-404-btn:hover {
    transform: translateY(-5px);
    background: #ffffff;
    color: #667eea;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: #ff69b4;
}

.error-404-btn:hover::before {
    left: 100%;
}

.error-404-btn.primary {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: #ffffff;
    border-color: #ff69b4;
}

.error-404-btn.primary:hover {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.5);
}

.error-404-btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.error-404-btn:hover .error-404-btn-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Error Search Section */
.error-404-search {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-search h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.error-404-search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.error-404-search-input:focus {
    outline: none;
    border-color: #ff69b4;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.3);
    transform: translateY(-2px);
}

.error-404-search-input::placeholder {
    color: #666666;
    opacity: 0.8;
}

/* Error Help Section */
.error-404-help {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
}

.error-404-help h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.error-404-help-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.error-404-help-link {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.error-404-help-link:hover {
    background: #ffffff;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Floating animation for background elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Pulse animation for 404 number */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .error-404-page {
        padding: 1rem 0;
    }
    
    .error-404-container {
        padding: 0 1rem;
    }
    
    .error-404-number {
        font-size: 6rem;
        margin-bottom: 0.5rem;
    }
    
    .error-404-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .error-404-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .error-404-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .error-404-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .error-404-search {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    
    .error-404-help {
        margin: 2rem 1rem 0;
        padding: 1.5rem;
    }
    
    .error-404-help-links {
        flex-direction: column;
        align-items: center;
    }
    
    .error-404-help-link {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-color));
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top::before {
    content: '↑';
    font-weight: bold;
    line-height: 1;
}

/* Mobile Responsiveness for Back to Top */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}