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

:root {
    --primary-red: #B31313;
    --primary-orange: #ff5100;
    --primary-yellow: #fdac16ec;
    --light-yellow: #fff382;
    --white: #ffffff;
    --black: #000000;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

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

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.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(--primary-red), var(--primary-orange));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Hide mobile menu close button on desktop by default */
.mobile-menu-close {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--light-yellow);
    background-color: rgba(255, 255, 255, 0.1);
}

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

.btn-register {
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
}

.btn-register:hover,
.btn-register:focus {
    background-color: var(--light-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 218, 22, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    color: var(--dark-gray);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 144, 0, 0.4);
}

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section - Enhanced Styling */
.hero-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--primary-yellow) 100%);
    color: var(--white);
    padding: 6rem 0;
    min-height: 100vh;
    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="hero-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.06)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="10" r="1" fill="rgba(255,255,255,0.04)"/><circle cx="10" cy="60" r="1.5" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.3;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(15deg);
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s ease-out;
}

.hero-content h1 span {
    display: block;
    color: var(--light-yellow);
    -webkit-text-fill-color: var(--light-yellow);
    font-size: 3.5rem;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    position: relative;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--light-yellow));
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.6s forwards;
    width: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    justify-content: center; /* Center the buttons horizontally */
    align-items: center; /* Center the buttons vertically */
    width: 100%; /* Ensure full width for centering */
}

.hero-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-buttons .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;
}

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

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow), var(--light-yellow));
    color: var(--dark-gray);
    border: none;
    transform: translateY(0);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(253, 218, 22, 0.4);
    background: linear-gradient(135deg, var(--light-yellow), var(--primary-yellow));
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: slideInRight 1s ease-out 0.9s forwards;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.hero-image img:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* Floating elements animation */
.hero-section .floating-element {
    position: absolute;
    opacity: 0.6;
    animation: floatElement 8s ease-in-out infinite;
}

.hero-section .floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-section .floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero-section .floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-5deg); }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes expandWidth {
    from { width: 0; }
    to { width: 80px; }
}

/* Section Styles - Enhanced */
section {
    padding: 4rem 0;
    position: relative;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    font-weight: 800;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

section p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray);
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.features-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="features-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.05)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23features-pattern)"/></svg>');
    opacity: 0.6;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(179, 19, 19, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(179, 19, 19, 0.15);
    border-color: rgba(179, 19, 19, 0.2);
}

.feature-card img {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover img {
    transform: scale(1.1);
}

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

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Login and Register Sections */
.login-section,
.register-section {
    background: linear-gradient(135deg, var(--light-yellow), var(--primary-yellow));
}

.login-content,
.register-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.login-info h3,
.register-steps h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.login-info ul,
.register-steps ol {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.login-info li,
.register-steps li {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.login-action,
.register-action {
    text-align: center;
}

.btn-login-large,
.btn-register-large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    margin-bottom: 1rem;
}

.login-note,
.register-note {
    font-size: 0.9rem;
    color: var(--gray);
}

.login-note a,
.register-note a {
    color: var(--primary-red);
    text-decoration: none;
}

.login-note a:hover,
.register-note a:focus {
    text-decoration: underline;
}

/* About Section - Enhanced Styling */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-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="about-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.04)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.5;
}

.about-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

.about-section p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

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

.about-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 19, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(179, 19, 19, 0.15);
    border-color: rgba(179, 19, 19, 0.2);
}

.about-card h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
}

.about-card h3::before {
    content: '🎯';
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.about-card p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Games Section */
.games-section {
    background-color: var(--light-gray);
}

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

.game-category {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
}

.game-category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-category h3 {
    color: var(--primary-red);
    margin: 1rem;
    font-size: 1.3rem;
}

.game-category p {
    margin: 0 1rem 1rem;
    color: var(--gray);
    text-align: left;
}

/* Benefits Section - Enhanced Styling */
.benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.benefits-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="benefits-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.04)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23benefits-pattern)"/></svg>');
    opacity: 0.4;
}

.benefits-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.benefits-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

.benefits-section p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

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

.benefit-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 19, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(179, 19, 19, 0.15);
    border-color: rgba(179, 19, 19, 0.2);
}

.benefit-item h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
}

.benefit-item h3::before {
    content: '🎁';
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* Testimonials Section - Enhanced Styling */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--primary-yellow) 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.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="testimonials-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonials-pattern)"/></svg>');
    opacity: 0.3;
}

.testimonials-section h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.testimonials-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--light-yellow);
    border-radius: 2px;
}

.testimonials-section p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    color: var(--light-yellow);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Stats Section - Enhanced Styling */
.stats-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-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="stats-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.04)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
    opacity: 0.4;
}

.stats-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.stats-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

.stats-section p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

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

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 19, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(179, 19, 19, 0.15);
    border-color: rgba(179, 19, 19, 0.2);
}

.stat-item h3 {
    color: var(--primary-red);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    color: var(--gray);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA Section - Enhanced Styling */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--primary-yellow) 100%);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-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="cta-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-section h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

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

.cta-section p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-red);
    border: none;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.4);
    background: var(--light-yellow);
    color: var(--dark-gray);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
}

/* Footer - Enhanced Styling */
.footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2c3e50 50%, #34495e 100%);
    color: var(--white);
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::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="footer-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(253,218,22,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(179,19,19,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.3;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.footer-section h3::before,
.footer-section h4::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-orange));
    border-radius: 2px;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--primary-yellow);
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

/* Games Slider Section */
.games-slider-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 30%, var(--primary-yellow) 70%, var(--light-yellow) 100%);
    padding: 4rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.games-slider-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="games-slider-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="10" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="10" cy="60" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="90" cy="90" r="1" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23games-slider-pattern)"/></svg>');
    opacity: 0.2;
}

.slider-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.emoji {
    font-size: 2.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
}

.language-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-red);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
    margin-top: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.language-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile Games Slider */
.mobile-games-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.mobile-slider-container {
    position: relative;
    overflow: hidden;
}

.mobile-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.mobile-slide {
    flex: 0 0 300px;
    text-align: center;
    opacity: 0.6;
    transform: scale(0.8);
    transition: all 0.5s ease-in-out;
}

.mobile-slide.active {
    opacity: 1;
    transform: scale(1);
}

.mobile-screen {
    border-radius: 20px;
    padding: 1rem;
    
   
    
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-screen:hover {
    transform: perspective(1000px) rotateY(5deg);
}

.game-screenshot {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.game-amount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.game-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid var(--primary-yellow);
    transition: transform 0.3s ease;
}

.game-icon:hover {
    transform: scale(1.1);
}

.game-name {
    font-weight: 600;
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

/* Game Thumbnails */
.game-thumbnails {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail-item.active {
    opacity: 1;
    transform: scale(1.1);
}

.thumbnail-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

.thumbnail-item.active .thumbnail-icon {
    border-color: var(--primary-orange);
    box-shadow: 0 0 15px rgba(255, 144, 0, 0.5);
}

.thumbnail-name {
    font-size: 0.8rem;
    color: var(--light-yellow);
    font-weight: 500;
    text-align: center;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: -60px;
}

.slider-nav.next {
    right: -60px;
}

.slider-nav svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Slider Slogan */
.slider-slogan {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.slider-slogan p {
    font-size: 1.2rem;
    color: var(--light-yellow);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content h1 span {
        font-size: 3rem;
    }
    
    .mobile-games-slider {
        padding: 0 40px;
    }
    
    .slider-nav.prev {
        left: -40px;
    }
    
    .slider-nav.next {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
        min-height: 80vh;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h1 span {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-image img {
        max-width: 90%;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mobile-slide {
        flex: 0 0 250px;
    }
    
    .game-screenshot {
        height: 300px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        left: -20px;
    }
    
    .slider-nav.next {
        right: -20px;
    }
    
    .game-thumbnails {
        gap: 1rem;
    }
    
    .thumbnail-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h1 span {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .mobile-slide {
        flex: 0 0 200px;
    }
    
    .game-screenshot {
        height: 250px;
    }
    
    .slider-nav {
        display: none;
    }
    
    .mobile-games-slider {
        padding: 0 10px;
    }
}

/* Loading and Performance Optimizations */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

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

    body {
        color: var(--black);
        background: var(--white);
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-red: #800000;
        --primary-orange: #CC6600;
        --primary-yellow: #CCCC00;
        --light-yellow: #FFFFCC;
    }
}

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

/* Login Section - Enhanced Styling */
.login-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 30%, var(--primary-yellow) 70%, var(--light-yellow) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.login-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="login-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.15)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.12)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.15)"/><circle cx="60" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1.5" fill="rgba(255,255,255,0.12)"/></pattern></defs><rect width="100" height="100" fill="url(%23login-pattern)"/></svg>');
    opacity: 0.3;
}

.login-section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.login-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: var(--white);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.login-section p {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    opacity: 0.95;
    font-weight: 400;
}

.login-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.login-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.login-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.login-info:hover::before {
    transform: scaleX(1);
}

.login-info:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.login-info h3 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.login-info h3::before {
    content: '🔐';
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.login-info ul {
    margin-left: 0;
    margin-bottom: 2rem;
    list-style: none;
}

.login-info li {
    margin-bottom: 1.2rem;
    color: var(--dark-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
    padding-left: 2.5rem;
    font-weight: 500;
}

.login-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(179, 19, 19, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(179, 19, 19, 0.2);
}

.login-action {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.login-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-login-large {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    color: var(--white);
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    margin-bottom: 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

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

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

.btn-login-large:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange), var(--primary-red));
    border-color: rgba(255, 255, 255, 0.3);
}

.login-note {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border-left: 3px solid var(--primary-orange);
}

.login-note a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.login-note a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.login-note a:hover {
    color: var(--primary-orange);
}

.login-note a:hover::after {
    width: 100%;
}

.login-image {
    text-align: center;
    position: relative;
}

.login-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.8;
}

.login-image img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.login-image img:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design for Login Section */
@media (max-width: 1200px) {
    .login-content {
        max-width: 1000px;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .login-section {
        padding: 4rem 0;
    }
    
    .login-section h2 {
        font-size: 2.8rem;
    }
    
    .login-section p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .login-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin: 0 1rem;
    }
    
    .login-info {
        padding: 2.5rem;
    }
    
    .btn-login-large {
        font-size: 1.2rem;
        padding: 1.3rem 2.5rem;
    }
    
    .login-image::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 3rem 0;
    }
    
    .login-section h2 {
        font-size: 2.2rem;
    }
    
    .login-section p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .login-content {
        margin: 0 0.5rem;
        gap: 2rem;
    }
    
    .login-info {
        padding: 2rem;
    }
    
    .btn-login-large {
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        padding: 1.2rem 2rem;
    }
    
    .login-image::before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }
} 

/* ========================================
   ABOUT US PAGE STYLING
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--primary-yellow) 100%);
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
    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="page-header-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23page-header-pattern)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-hero::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="about-hero-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.04)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-hero-pattern)"/></svg>');
    opacity: 0.5;
}

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

.about-text h2 {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-weight: 800;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-image {
    text-align: center;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Mission Vision Section */
.mission-vision {
    background: var(--white);
    padding: 5rem 0;
    position: relative;
}

.mission-vision::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="mission-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23mission-pattern)"/></svg>');
    opacity: 0.4;
}

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

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 19, 19, 0.1);
    transition: all 0.3s ease;
    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-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(179, 19, 19, 0.15);
}

.mission-card img,
.vision-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.mission-card:hover img,
.vision-card:hover img {
    transform: scale(1.1);
}

.mission-card h3,
.vision-card h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.values-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="values-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.04)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23values-pattern)"/></svg>');
    opacity: 0.4;
}

.values-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.values-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

.values-section > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

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

.value-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 19, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(179, 19, 19, 0.15);
}

.value-item h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.value-item h3::before {
    content: '💎';
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Company Stats Section */
.company-stats {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--primary-yellow) 100%);
    padding: 5rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.company-stats::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="stats-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
    opacity: 0.3;
}

.company-stats h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

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

.company-stats .stat-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.company-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.company-stats .stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--light-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-stats .stat-item p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    background: var(--white);
    padding: 5rem 0;
    position: relative;
}

.team-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="team-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23team-pattern)"/></svg>');
    opacity: 0.4;
}

.team-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

.team-section > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 19, 19, 0.1);
    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-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(179, 19, 19, 0.15);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(179, 19, 19, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
    border-color: rgba(179, 19, 19, 0.3);
}

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

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

.team-member p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Achievements Section */
.achievements-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.achievements-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="achievements-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.04)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23achievements-pattern)"/></svg>');
    opacity: 0.4;
}

.achievements-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.achievements-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

.achievements-section > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

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

.achievement-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 19, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.achievement-item:hover::before {
    transform: scaleX(1);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(179, 19, 19, 0.15);
}

.achievement-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.achievement-item:hover img {
    transform: scale(1.1);
}

.achievement-item h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.achievement-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Commitment Section */
.commitment-section {
    background: var(--white);
    padding: 5rem 0;
    position: relative;
}

.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="commitment-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23commitment-pattern)"/></svg>');
    opacity: 0.4;
}

.commitment-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.commitment-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

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

.commitment-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 19, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.commitment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.commitment-item:hover::before {
    transform: scaleX(1);
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(179, 19, 19, 0.15);
}

.commitment-item h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.commitment-item h3::before {
    content: '🛡️';
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.commitment-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Future Section */
.future-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.future-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="future-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.04)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23future-pattern)"/></svg>');
    opacity: 0.4;
}

.future-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.future-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

.future-section > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

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

.future-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 19, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.future-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.future-item:hover::before {
    transform: scaleX(1);
}

.future-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(179, 19, 19, 0.15);
}

.future-item h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.future-item h3::before {
    content: '🚀';
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.future-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
}

/* Responsive Design for About Us Page */
@media (max-width: 1200px) {
    .page-header h1 {
        font-size: 3.5rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .mission-vision-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .about-hero,
    .mission-vision,
    .values-section,
    .company-stats,
    .team-section,
    .achievements-section,
    .commitment-section,
    .future-section {
        padding: 3rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
    
    .about-text p {
        text-align: center;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .company-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .future-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-section h2,
    .company-stats h2,
    .team-section h2,
    .achievements-section h2,
    .commitment-section h2,
    .future-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .company-stats .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .company-stats .stat-item h3 {
        font-size: 3rem;
    }
    
    .values-section h2,
    .company-stats h2,
    .team-section h2,
    .achievements-section h2,
    .commitment-section h2,
    .future-section h2 {
        font-size: 2rem;
    }
    
    .mission-card,
    .vision-card,
    .value-item,
    .team-member,
    .achievement-item,
    .commitment-item,
    .future-item {
        padding: 2rem;
    }
} 

/* ========================================
   CONTACT US PAGE STYLING
   ======================================== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::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="contact-hero-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.04)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-hero-pattern)"/></svg>');
    opacity: 0.5;
}

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

.contact-text h2 {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-weight: 800;
    position: relative;
}

.contact-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

.contact-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-image {
    text-align: center;
    position: relative;
}

.contact-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.contact-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Contact Methods Section */
.contact-methods {
    background: var(--white);
    padding: 5rem 0;
    position: relative;
}

.contact-methods::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="contact-methods-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-methods-pattern)"/></svg>');
    opacity: 0.4;
}

.contact-methods h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.contact-methods h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

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

.contact-method {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 19, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method:hover::before {
    transform: scaleX(1);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(179, 19, 19, 0.15);
}

.contact-method img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-method:hover img {
    transform: scale(1.1);
}

.contact-method h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-method p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.contact-details {
    text-align: left;
    background: rgba(179, 19, 19, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.contact-details strong {
    color: var(--primary-red);
}

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

.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="contact-form-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.04)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-form-pattern)"/></svg>');
    opacity: 0.4;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

.contact-form-section > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(179, 19, 19, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(179, 19, 19, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

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

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

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkbox-label a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Form Submit */
.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(179, 19, 19, 0.3);
}

.form-submit .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(179, 19, 19, 0.4);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

/* Error Messages */
.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 1.2rem;
}

/* Support Topics Section */
.support-topics {
    background: var(--white);
    padding: 5rem 0;
    position: relative;
}

.support-topics::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="support-topics-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23support-topics-pattern)"/></svg>');
    opacity: 0.4;
}

.support-topics h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.support-topics h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

.support-topics > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

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

.topic-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 19, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.topic-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.topic-item:hover::before {
    transform: scaleX(1);
}

.topic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(179, 19, 19, 0.15);
}

.topic-item h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.topic-item h3::before {
    content: '📋';
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.topic-item ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.topic-item li {
    margin-bottom: 0.5rem;
    color: var(--gray);
    line-height: 1.5;
}

.topic-link {
    display: inline-block;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-red);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.topic-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 19, 19, 0.3);
}

/* Response Times Section */
.response-times {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--primary-yellow) 100%);
    padding: 5rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.response-times::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="response-times-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23response-times-pattern)"/></svg>');
    opacity: 0.3;
}

.response-times h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.response-times h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--white);
    border-radius: 2px;
}

.response-times > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

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

.response-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.response-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.response-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.response-time {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--light-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.response-item p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Business Hours Section */
.business-hours {
    background: var(--white);
    padding: 5rem 0;
    position: relative;
}

.business-hours::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="business-hours-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23business-hours-pattern)"/></svg>');
    opacity: 0.4;
}

.business-hours h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.business-hours h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.hours-info h3 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.hours-info h3::before {
    content: '🕐';
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.hours-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.hours-info ul {
    margin-left: 1.5rem;
}

.hours-info li {
    margin-bottom: 0.8rem;
    color: var(--gray);
    line-height: 1.5;
}

.hours-info strong {
    color: var(--primary-red);
}

.hours-image {
    text-align: center;
    position: relative;
}

.hours-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.hours-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hours-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Contact Us Page */
@media (max-width: 1200px) {
    .contact-content,
    .hours-content {
        gap: 3rem;
    }
    
    .contact-methods-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero,
    .contact-methods,
    .contact-form-section,
    .support-topics,
    .response-times,
    .business-hours {
        padding: 3rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-text h2 {
        font-size: 2.5rem;
    }
    
    .contact-text p {
        text-align: center;
    }
    
    .contact-methods h2,
    .contact-form-section h2,
    .support-topics h2,
    .response-times h2,
    .business-hours h2 {
        font-size: 2.5rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .response-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hours-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-text h2 {
        font-size: 2rem;
    }
    
    .contact-methods h2,
    .contact-form-section h2,
    .support-topics h2,
    .response-times h2,
    .business-hours h2 {
        font-size: 2rem;
    }
    
    .response-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method,
    .topic-item,
    .response-item {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
    }
} 

/* ========================================
   FAQ PAGE STYLING
   ======================================== */

/* FAQ Search Section */
.faq-search {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.faq-search::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="faq-search-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.04)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-search-pattern)"/></svg>');
    opacity: 0.4;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.search-box input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(179, 19, 19, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(179, 19, 19, 0.1), 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.search-box input::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(179, 19, 19, 0.3);
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 25px rgba(179, 19, 19, 0.4);
}

/* FAQ Categories Section */
.faq-categories {
    background: var(--white);
    padding: 3rem 0;
    position: relative;
}

.faq-categories::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="faq-categories-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-categories-pattern)"/></svg>');
    opacity: 0.4;
}

.faq-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

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

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.category-tab {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(179, 19, 19, 0.2);
    color: var(--gray);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

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

.category-tab:hover::before,
.category-tab.active::before {
    opacity: 1;
}

.category-tab:hover,
.category-tab.active {
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(179, 19, 19, 0.3);
}

/* FAQ Content Section */
.faq-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.faq-content::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="faq-content-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-content-pattern)"/></svg>');
    opacity: 0.3;
}

.faq-category {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-category.active {
    display: block;
}

.faq-category h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    position: relative;
}

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

/* FAQ Items */
.faq-item {
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 19, 19, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(179, 19, 19, 0.15);
}

.faq-question {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    margin: 0;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-red);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '❓';
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.faq-question::after {
    content: '➕';
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
    font-weight: 400;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    content: '➖';
}

.faq-question:hover {
    background: rgba(179, 19, 19, 0.05);
    color: var(--primary-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.8);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    line-height: 1.7;
    color: var(--gray);
}

.faq-answer p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.faq-answer strong {
    color: var(--primary-red);
    font-weight: 700;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-answer ul li {
    list-style-type: disc;
}

.faq-answer ol li {
    list-style-type: decimal;
}

/* FAQ Help Section */
.faq-help {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--primary-yellow) 100%);
    padding: 4rem 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-help::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="faq-help-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-help-pattern)"/></svg>');
    opacity: 0.3;
}

.faq-help h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.faq-help h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--white);
    border-radius: 2px;
}

.faq-help p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.help-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.help-options .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.help-options .btn-primary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--white);
}

.help-options .btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.help-options .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* FAQ Animation Classes */
.faq-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for FAQ Page */
@media (max-width: 1200px) {
    .category-tabs {
        gap: 0.8rem;
    }
    
    .category-tab {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .faq-search,
    .faq-categories,
    .faq-content,
    .faq-help {
        padding: 2rem 0;
    }
    
    .faq-categories h2,
    .faq-category h2,
    .faq-help h2 {
        font-size: 2rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .category-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .search-box input {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    .search-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .help-options {
        flex-direction: column;
        align-items: center;
    }
    
    .help-options .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .faq-categories h2,
    .faq-category h2,
    .faq-help h2 {
        font-size: 1.8rem;
    }
    
    .search-box input {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.2rem 1.2rem;
    }
    
    .faq-answer p,
    .faq-answer li {
        font-size: 0.9rem;
    }
    
    .help-options .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
} 

/* ========================================
   PRIVACY POLICY PAGE STYLING
   ======================================== */

/* Privacy Policy Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--primary-yellow) 100%);
    padding: 4rem 0;
    color: var(--white);
    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="page-header-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23page-header-pattern)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.page-header h1::after {
    content: '🔒';
    display: block;
    font-size: 3rem;
    margin-top: 1rem;
    opacity: 0.8;
}

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

/* Privacy Policy Content Section */
.privacy-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.privacy-content::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="privacy-content-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(179,19,19,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,144,0,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(253,218,22,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23privacy-content-pattern)"/></svg>');
    opacity: 0.4;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(179, 19, 19, 0.1);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

.content-wrapper h2 {
    color: var(--primary-red);
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem 0;
    font-weight: 800;
    position: relative;
    padding-bottom: 0.5rem;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
    border-radius: 2px;
}

.content-wrapper h3 {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
    position: relative;
}

.content-wrapper h3::before {
    content: '📋';
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.content-wrapper p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-wrapper strong {
    color: var(--primary-red);
    font-weight: 700;
}

.content-wrapper a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.content-wrapper a:hover {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

/* List Styling */
.content-wrapper ul,
.content-wrapper ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-wrapper li {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    position: relative;
}

.content-wrapper ul li {
    list-style-type: none;
    padding-left: 1.5rem;
}

.content-wrapper ul li::before {
    content: '🔹';
    position: absolute;
    left: -1.5rem;
    color: var(--primary-orange);
    font-size: 0.8rem;
}

.content-wrapper ol li {
    list-style-type: decimal;
    padding-left: 0.5rem;
}

.content-wrapper ol li::marker {
    color: var(--primary-red);
    font-weight: 700;
}

/* Special Content Sections */
.content-wrapper .policy-footer {
    background: linear-gradient(135deg, rgba(179, 19, 19, 0.05) 0%, rgba(255, 144, 0, 0.05) 50%, rgba(253, 218, 22, 0.05) 100%);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary-red);
    margin-top: 3rem;
    text-align: center;
}

.policy-footer p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.policy-footer p:last-child {
    margin-bottom: 0;
}

.policy-footer strong {
    color: var(--primary-red);
    font-size: 1.2rem;
}

/* Content Highlights */
.content-wrapper h2:nth-child(odd) {
    border-left: 4px solid var(--primary-orange);
    padding-left: 1rem;
}

.content-wrapper h2:nth-child(even) {
    border-left: 4px solid var(--primary-yellow);
    padding-left: 1rem;
}

/* Section Dividers */
.content-wrapper h2:not(:first-child) {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(179, 19, 19, 0.1);
}

/* Important Information Boxes */
.content-wrapper h2 + p:first-of-type {
    background: rgba(179, 19, 19, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Contact Information Styling */
.content-wrapper h2:contains("Contact Information") + p,
.content-wrapper h2:contains("Contact Information") + ul {
    background: rgba(255, 144, 0, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-orange);
}

/* Legal Basis Section */
.content-wrapper h2:contains("Compliance and Legal Basis") + p,
.content-wrapper h2:contains("Compliance and Legal Basis") + ul {
    background: rgba(253, 218, 22, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-yellow);
}

/* Data Breach Section */
.content-wrapper h2:contains("Data Breach Procedures") + p,
.content-wrapper h2:contains("Data Breach Procedures") + ul {
    background: rgba(179, 19, 19, 0.08);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
    border: 1px solid rgba(179, 19, 19, 0.2);
}

/* Responsive Design for Privacy Policy Page */
@media (max-width: 1200px) {
    .content-wrapper {
        padding: 2.5rem;
        max-width: 800px;
    }
    
    .content-wrapper h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1::after {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .privacy-content {
        padding: 2rem 0;
    }
    
    .content-wrapper {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.8rem;
        margin: 2.5rem 0 1.2rem 0;
    }
    
    .content-wrapper h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .content-wrapper p {
        font-size: 1rem;
    }
    
    .content-wrapper li {
        font-size: 1rem;
    }
    
    .content-wrapper ul,
    .content-wrapper ol {
        padding-left: 1.5rem;
    }
    
    .content-wrapper ul li {
        padding-left: 1.2rem;
    }
    
    .content-wrapper h2:nth-child(odd),
    .content-wrapper h2:nth-child(even) {
        padding-left: 0.8rem;
    }
    
    .policy-footer {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header h1::after {
        font-size: 1.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .content-wrapper {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }
    
    .content-wrapper h3 {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.6rem 0;
    }
    
    .content-wrapper p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .content-wrapper li {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .content-wrapper ul,
    .content-wrapper ol {
        padding-left: 1.2rem;
    }
    
    .content-wrapper ul li {
        padding-left: 1rem;
    }
    
    .content-wrapper h2:nth-child(odd),
    .content-wrapper h2:nth-child(even) {
        padding-left: 0.6rem;
    }
    
    .policy-footer {
        padding: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .policy-footer p {
        font-size: 1rem;
    }
    
    .policy-footer strong {
        font-size: 1.1rem;
    }
}

/* Print Styles for Privacy Policy */
@media print {
    .page-header {
        background: var(--white) !important;
        color: var(--primary-red) !important;
        border-bottom: 3px solid var(--primary-red);
    }
    
    .page-header::before {
        display: none;
    }
    
    .privacy-content {
        background: var(--white) !important;
    }
    
    .privacy-content::before {
        display: none;
    }
    
    .content-wrapper {
        background: var(--white) !important;
        box-shadow: none !important;
        border: 1px solid var(--gray) !important;
    }
    
    .content-wrapper h2 {
        color: var(--primary-red) !important;
        page-break-after: avoid;
    }
    
    .content-wrapper h3 {
        color: var(--primary-orange) !important;
        page-break-after: avoid;
    }
    
    .content-wrapper p,
    .content-wrapper li {
        color: var(--dark-gray) !important;
    }
    
    .policy-footer {
        background: var(--light-gray) !important;
        border: 1px solid var(--gray) !important;
    }
}

/* ========================================
   REGISTER SECTION STYLING
   ======================================== */

/* Register Section - Enhanced Styling */
.register-section {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 40%, var(--primary-red) 80%, var(--light-yellow) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.register-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="register-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.12)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.12)"/><circle cx="60" cy="10" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="10" cy="60" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="90" r="1" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23register-pattern)"/></svg>');
    opacity: 0.25;
}

.register-section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.register-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: var(--white);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.register-section p {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    opacity: 0.95;
    font-weight: 400;
}

/* Register Content Layout */
.register-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Register Steps Section */
.register-steps {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.register-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.register-steps:hover::before {
    transform: scaleX(1);
}

.register-steps:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.register-steps h3 {
    color: var(--primary-red);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 800;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.register-steps h3::before {
    content: '📝';
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.register-steps ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.register-steps li {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
    position: relative;
}

.register-steps li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.95);
    border-left-color: var(--primary-red);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.register-steps li::before {
    content: counter(list-item);
    counter-increment: list-item;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(179, 19, 19, 0.3);
}

/* Register Action Section */
.register-action {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.register-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-register-large {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    color: var(--white);
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    margin-bottom: 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

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

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

.btn-register-large:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange), var(--primary-red));
    border-color: rgba(255, 255, 255, 0.3);
}

.register-note {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border-left: 3px solid var(--primary-yellow);
}

.register-note a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.register-note a:hover {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

/* Register Image Section */
.register-image {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 0;
    position: relative;
}

.register-image::-webkit-scrollbar {
    display: none;
}

.register-image {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.register-step {
    flex: 0 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.register-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.register-step:hover::before {
    transform: scaleX(1);
}

.register-step:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 5px 15px rgba(179, 19, 19, 0.3);
}

.register-step img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.register-step:hover img {
    transform: scale(1.05);
}

.step-description {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Mobile Screen Styling */
.mobile-screen {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0.5rem;
    background: transparent;
    transition: all 0.3s ease;
}

.mobile-screen:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.02);
}

/* Responsive Design for Register Section */
@media (max-width: 1200px) {
    .register-content {
        max-width: 1000px;
        margin: 0 2rem;
    }
    
    .register-image {
        gap: 0.4rem;
    }
}

@media (max-width: 768px) {
    .register-section {
        padding: 4rem 0;
    }
    
    .register-section h2 {
        font-size: 2.8rem;
    }
    
    .register-section p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .register-content {
        margin: 0 1rem;
        gap: 2.5rem;
    }
    
    .register-steps {
        padding: 2.5rem;
    }
    
    .register-steps h3 {
        font-size: 1.8rem;
    }
    
    .register-steps li {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .btn-register-large {
        font-size: 1.2rem;
        padding: 1.3rem 2.5rem;
    }
    
    .register-image {
        flex-direction: column;
        gap: 1rem;
        overflow-x: visible;
    }
    
    .register-step {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .register-section {
        padding: 3rem 0;
    }
    
    .register-section h2 {
        font-size: 2.2rem;
    }
    
    .register-section p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .register-content {
        margin: 0 0.5rem;
        gap: 2rem;
    }
    
    .register-steps {
        padding: 2rem;
    }
    
    .register-steps h3 {
        font-size: 1.6rem;
    }
    
    .register-steps li {
        font-size: 0.95rem;
        padding: 1rem;
    }
    
    .btn-register-large {
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        padding: 1.2rem 2rem;
    }
    
    .register-step {
        padding: 1.2rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    /* Show close button on mobile when menu is active */
    .mobile-menu-close.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    /* Mobile overlay menu */
    .nav-menu.mobile-active {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-orange) 50%, var(--primary-yellow) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
        z-index: 999;
        padding: 2rem;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.mobile-active {
        left: 0;
    }
    
    /* Ensure close button is visible when menu is active */
    .nav-menu.mobile-active ~ .mobile-menu-close,
    .mobile-menu-close.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: scale(1) !important;
        pointer-events: auto !important;
    }
    
    /* Alternative selector for close button visibility */
    .nav-menu.mobile-active + .mobile-menu-close {
        opacity: 1 !important;
        visibility: visible !important;
        transform: scale(1) !important;
        pointer-events: auto !important;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.mobile-active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.mobile-active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.mobile-active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.mobile-active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.mobile-active li:nth-child(4) { transition-delay: 0.4s; }
    
    /* Show mobile menu header and footer when menu is active */
    .nav-menu.mobile-active .mobile-menu-header {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.1s;
    }
    
    .nav-menu.mobile-active .mobile-menu-footer {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.5s;
    }
    
    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--white);
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 25px;
        transition: all 0.3s ease;
        display: block;
        text-align: center;
        min-width: 200px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    /* Hamburger Animation and Visibility */
    .hamburger.active {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        display: none !important;
    }
    
    /* Ensure only one button is visible at a time */
    .nav-menu.mobile-active ~ .hamburger,
    .nav-menu.mobile-active + .hamburger,
    body.menu-open .hamburger {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Menu Overlay */
    .nav-menu::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="mobile-menu-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.06)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="10" r="1" fill="rgba(255,255,255,0.04)"/><circle cx="10" cy="60" r="1.5" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23mobile-menu-pattern)"/></svg>');
        opacity: 0.3;
        z-index: -1;
    }
    
    /* Mobile Menu Close Button */
    .mobile-menu-close {
        position: fixed;
        top: 2rem;
        left: 2rem;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid var(--primary-red);
        color: var(--primary-red);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: none;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.5rem;
        font-weight: bold;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        z-index: 1001;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    

    
    .mobile-menu-close.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 1);
        border-color: var(--primary-red);
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
    
    /* Mobile Menu Header */
    .mobile-menu-header {
        position: absolute;
        top: 2rem;
        right: 2rem;
        text-align: center;
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-header h3 {
        color: var(--white);
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0;
        opacity: 0.9;
    }
    
    .mobile-menu-header p {
        color: var(--white);
        font-size: 0.9rem;
        margin: 0.5rem 0 0 0;
        opacity: 0.7;
    }
    
    /* Mobile Menu Footer */
    .mobile-menu-footer {
        position: absolute;
        bottom: 2rem;
        left: 0;
        right: 0;
        text-align: center;
        padding: 0 2rem;
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-footer .btn {
        margin: 0.5rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-footer .btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Show close button when menu is open */
    body.menu-open .mobile-menu-close {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    

    

    
    /* Mobile Menu Backdrop */
    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }
    
    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Enhanced Mobile Menu for Smaller Screens */
@media (max-width: 480px) {
    .nav-menu {
        padding: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
        min-width: 180px;
    }
    
    .mobile-menu-close {
        top: 1.5rem;
        left: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        z-index: 1002;
    }
    
    .mobile-menu-header {
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .mobile-menu-header h3 {
        font-size: 1.1rem;
    }
    
    .mobile-menu-header p {
        font-size: 0.8rem;
    }
    
    .mobile-menu-footer {
        bottom: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .mobile-menu-footer .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Landscape Mobile Menu */
@media (max-width: 768px) and (orientation: landscape) {
    .nav-menu {
        padding: 1rem 2rem;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        min-width: 160px;
    }
    
    .mobile-menu-header {
        top: 1rem;
        right: 1rem;
    }
    
    .mobile-menu-footer {
        bottom: 1rem;
    }
}