/* 4rabet India - Luxury Gaming Platform Styles */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Luxury Color Palette */
    --primary-red: #dc143c;
    --dark-red: #b71c1c;
    --deep-red: #8b0000;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --charcoal: #2c2c2c;
    --silver: #c0c0c0;
    --light-silver: #e8e8e8;
    --white: #ffffff;
    --gold-accent: #ffd700;
    --neon-red: #ff0040;
    
    /* Typography */
    --font-primary: 'Arial', 'Helvetica', sans-serif;
    --font-heading: 'Georgia', serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --element-spacing: 2rem;
    
    /* Shadows and Effects */
    --shadow-soft: 0 4px 20px rgba(220, 20, 60, 0.1);
    --shadow-medium: 0 8px 30px rgba(220, 20, 60, 0.2);
    --shadow-strong: 0 12px 40px rgba(220, 20, 60, 0.3);
    --glow-red: 0 0 20px rgba(220, 20, 60, 0.5);
    --glow-silver: 0 0 15px rgba(192, 192, 192, 0.3);
}

/* Base Typography */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--light-silver);
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--charcoal) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, var(--primary-red), var(--gold-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-red);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    text-shadow: var(--glow-red);
}

h3 {
    font-size: 1.8rem;
    color: var(--silver);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-accent);
    text-shadow: var(--glow-silver);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(26,26,26,0.9) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-red);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo .logo {
    height: 20px;
    width: auto;
    filter: drop-shadow(var(--glow-red));
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--light-silver);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    box-shadow: var(--glow-red);
    transform: translateY(-2px);
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    box-shadow: var(--glow-red);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--dark-red), var(--deep-red));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-accent);
    border: 2px solid var(--gold-accent);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, var(--gold-accent), #ffed4e);
    color: var(--black);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-3px);
}

.btn-login {
    background: transparent;
    color: var(--silver);
    border: 1px solid var(--silver);
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-login:hover {
    background: var(--silver);
    color: var(--black);
    box-shadow: var(--glow-silver);
}

.btn-register {
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.9rem;
    box-shadow: var(--glow-red);
}

.btn-register:hover {
    background: linear-gradient(45deg, var(--dark-red), var(--deep-red));
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--charcoal);
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid var(--primary-red);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--silver);
    font-size: 0.9rem;
}

.breadcrumb-item a:hover {
    color: var(--primary-red);
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    color: var(--silver);
    margin-left: 0.5rem;
}

/* Main Content */
.main {
    margin-top: 0;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--light-silver);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    border: 2px solid var(--primary-red);
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-red), var(--gold-accent));
    border-radius: 2px;
}

/* Brand Introduction */
.brand-intro {
    background: var(--charcoal);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--light-silver);
}

.intro-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Features Section */
.features {
    background: var(--dark-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-gray) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--gold-accent);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(var(--glow-red));
    transition: all 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.8));
}

.feature-title {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-description {
    color: var(--light-silver);
    line-height: 1.6;
}

/* Registration Process */
.registration-process {
    background: var(--charcoal);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-accent);
}

.step-number {
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: var(--glow-red);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-icon {
    margin-bottom: 1rem;
}

.step-icon svg {
    filter: drop-shadow(var(--glow-red));
    transition: all 0.3s ease;
}

.step-icon svg:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.8));
}

.step-title {
    color: var(--primary-red);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-description {
    color: var(--light-silver);
    line-height: 1.6;
    font-size: 1rem;
}

.step-connector {
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary-red), var(--gold-accent));
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    box-shadow: var(--glow-red);
}

.step-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--gold-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Advantages Section */
.advantages {
    background: var(--dark-gray);
}

.advantages-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.advantages-list {
    display: grid;
    gap: 2rem;
}

.advantage-item {
    background: var(--charcoal);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.advantage-item h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: var(--light-silver);
}

.security-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* FAQ Section */
.faq {
    background: var(--charcoal);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-gray);
    margin-bottom: 1rem;
    border-radius: 15px;
    border: 1px solid var(--primary-red);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--light-silver);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--dark-gray);
    padding: var(--section-padding);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-gray) 100%);
    border: 2px solid var(--primary-red);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(220, 20, 60, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--gold-accent);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.quote-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-icon svg {
    filter: drop-shadow(var(--glow-red));
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.8));
}

.testimonial-text {
    color: var(--light-silver);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-red);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-red);
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--primary-red);
    padding-top: 1.5rem;
}

.author-info {
    flex: 1;
}

.author-name {
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author-location {
    color: var(--silver);
    font-size: 0.9rem;
    margin: 0;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: var(--gold-accent);
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.testimonial-card:hover .star {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--light-silver);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 2px solid var(--primary-red);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(var(--glow-red));
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--light-silver);
    line-height: 1.6;
}

.footer-title {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-silver);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.contact-info p {
    color: var(--light-silver);
    margin-bottom: 0.5rem;
}

/* Footer contact-info styling */
.footer-section .contact-info {
    background: transparent;
    padding: 0;
}

.footer-section .contact-info p {
    color: var(--light-silver);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid var(--charcoal);
    padding-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--silver);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--silver);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-red);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        border-top: 2px solid var(--primary-red);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: 0;
        border-bottom: 1px solid var(--charcoal);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .intro-content,
    .advantages-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        align-self: center;
    }
    
    .process-cta {
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-red: #ff0000;
        --black: #000000;
        --white: #ffffff;
        --light-silver: #ffffff;
        --charcoal: #000000;
        --dark-gray: #000000;
    }
    
    .section-title,
    .step-title {
        color: var(--white) !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    }
    
    .intro-text p,
    .step-description,
    .faq-answer p {
        color: var(--white) !important;
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid var(--primary-red);
    }
}

/* Additional Page Styles */
.about-story,
.mission,
.values,
.why-choose,
.privacy-content,
.terms-content,
.disclaimer-content,
.contact-methods,
.support-faq,
.support-categories,
.contact-info {
    padding: var(--section-padding);
}

.about-story {
    background: var(--charcoal);
}

.mission {
    background: var(--dark-gray);
}

.values {
    background: var(--charcoal);
}

.why-choose {
    background: var(--dark-gray);
}

.privacy-content,
.terms-content,
.disclaimer-content {
    background: var(--charcoal);
}

.contact-methods {
    background: var(--dark-gray);
}

.support-faq {
    background: var(--charcoal);
}

.support-categories {
    background: var(--dark-gray);
}

.contact-info {
    background: var(--charcoal);
}

.contact-info-content {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--primary-red);
}

.contact-info-content p {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info-content p:last-child {
    margin-bottom: 0;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    color: var(--silver);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.content-wrapper p {
    color: var(--light-silver);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-wrapper li {
    color: var(--light-silver);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--silver);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Story Content */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Mission Cards */
.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: var(--charcoal);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-red);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-accent);
}

.mission-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--light-silver);
    line-height: 1.6;
}

/* Values Content */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--charcoal) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--gold-accent);
}

.value-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-icon svg {
    filter: drop-shadow(var(--glow-red));
    transition: all 0.3s ease;
}

.value-card:hover .value-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.8));
}

.value-title {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-description {
    color: var(--light-silver);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Choose Grid */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.choose-item {
    background: var(--charcoal);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
}

.choose-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-accent);
}

.choose-icon {
    margin-bottom: 1.5rem;
}

.choose-img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(var(--glow-red));
    transition: all 0.3s ease;
}

.choose-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.8));
}

.choose-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.choose-item p {
    color: var(--light-silver);
    line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--charcoal);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-accent);
}

.contact-icon {
    margin-bottom: 1.5rem;
}

.contact-img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(var(--glow-red));
    transition: all 0.3s ease;
}

.contact-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.8));
}

.contact-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--light-silver);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--charcoal);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-accent);
}

.category-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.category-card ul {
    list-style: none;
    padding: 0;
}

.category-card li {
    color: var(--light-silver);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.category-card li::before {
    content: '•';
    color: var(--primary-red);
    position: absolute;
    left: 0;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-accent);
}

.info-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--light-silver);
    margin-bottom: 0.5rem;
}

.info-card strong {
    color: var(--white);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Mobile Contrast Improvements */
    .section-title {
        color: var(--white) !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        background: linear-gradient(45deg, var(--primary-red), var(--gold-accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .step-title {
        color: var(--white) !important;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        font-weight: 700;
    }
    
    .brand-intro .intro-text p,
    .registration-process .step-description,
    .faq .faq-answer p {
        color: var(--white) !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }
    
    .intro-text p,
    .step-description,
    .faq-answer p {
        background: rgba(0, 0, 0, 0.3);
        padding: 1rem;
        border-radius: 8px;
        border-left: 3px solid var(--primary-red);
    }
}
    
    .mission-content,
    .choose-grid,
    .contact-grid,
    .categories-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .back-to-top,
    .nav-toggle {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: white;
    }
}
