/* 
Yura Official Store - Gaming Recharge Landing Page
*/

/* Reset and Base Styles */
:root {
    --primary-color: #c00000; /* Darker Red */
    --secondary-color: #a30000; /* Even Darker Red */
    --accent-color: #600000; /* Very Dark Red */
    --bg-dark: #000000; /* Black */
    --bg-darker: #0a0a0a; /* Slightly lighter black */
    --text-light: #ffffff;
    --text-dim: #bbbbbb;
    --card-bg: rgba(15, 15, 15, 0.8);
    --neon-shadow: 0 0 10px rgba(192, 0, 0, 0.6), 0 0 20px rgba(192, 0, 0, 0.3);
    --gradient-bg: linear-gradient(45deg, #c00000, #8e0000, #600000);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.section-header p {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--bg-darker);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.7);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 51, 51, 0.1);
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
    transform: translateY(-3px);
}

/* Particles Background */
.hero-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    background-color: transparent;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

.logo span {
    color: var(--text-light);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-darker);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.imgur.com/JnZXDQX.png');
    background-size: cover;
    opacity: 0.15;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(192, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.9) 70%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(192, 0, 0, 0.3);
    transform: translateY(0);
    animation: pulse 3s infinite;
}

.hero-badge span {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    position: relative;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.hero-content h1 .highlight {
    position: relative;
    color: var(--primary-color);
    display: block;
}

.hero-content h1 .highlight::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: 5px;
    left: 0;
    background-color: rgba(192, 0, 0, 0.3);
    z-index: -1;
}

.hero-text-animated {
    margin-bottom: 25px;
}

.text-slider {
    height: 50px;
    overflow: hidden;
    margin-bottom: 5px;
    position: relative;
}

.text-slider span {
    display: block;
    height: 100%;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    animation: slide 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
    padding: 5px 0;
    position: absolute;
    width: 100%;
}

.text-slider span:nth-child(1) {
    top: 0;
}

.text-slider span:nth-child(2) {
    top: 50px;
}

.text-slider span:nth-child(3) {
    top: 100px;
}

@keyframes slide {
    0%, 33.33% {
        transform: translateY(0);
    }
    33.34%, 66.66% {
        transform: translateY(-50px);
    }
    66.67%, 100% {
        transform: translateY(-100px);
    }
}

.hero-text-animated p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-top: 10px;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(192, 0, 0, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 0, 0, 0.2);
}

.feature:hover {
    transform: translateY(-3px);
    background: rgba(192, 0, 0, 0.2);
}

.feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

.feature span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image img {
    border-radius: 15px;
    width: 100%;
    height: auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    border: 2px solid rgba(192, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-badges {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.game-badge {
    position: absolute;
    padding: 8px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    animation: float2 5s ease-in-out infinite;
}

.game-badge.bgmi {
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, #c00000, #600000);
    animation-delay: 0.5s;
}

.game-badge.mlbb {
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, #600000, #c00000);
    animation-delay: 1s;
}

.game-badge span {
    color: var(--text-light);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

@keyframes float2 {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-10px) translateX(5px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(192, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(192, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(192, 0, 0, 0);
    }
}

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

/* Services Section */
.services {
    background: var(--bg-dark);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(192, 0, 0, 0.05), rgba(163, 0, 0, 0.05));
    z-index: -1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(192, 0, 0, 0.3);
    border-color: rgba(192, 0, 0, 0.4);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: var(--neon-shadow);
}

.card-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.card p {
    color: var(--text-dim);
    margin-bottom: 25px;
}

.card-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background: var(--secondary-color);
    color: var(--bg-dark);
}

/* Games Section */
.game-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.game-card {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
}

.game-card.reversed {
    flex-direction: row-reverse;
}

.game-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.game-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.game-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-image::before {
    opacity: 1;
}

.game-info {
    flex: 1;
}

.game-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.game-info p {
    color: var(--text-dim);
    margin-bottom: 25px;
}

.game-features {
    margin-bottom: 30px;
}

.game-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.game-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.game-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(192, 0, 0, 0.4);
}

.game-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 0, 0, 0.6);
}

/* How It Works Section */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.step {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 0, 0, 0.2);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(192, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-bg);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: var(--neon-shadow);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(192, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    transform: rotate(360deg);
    background: var(--gradient-bg);
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.step:hover .step-icon i {
    color: var(--text-light);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-dim);
}

/* Testimonials Section */
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(192, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(192, 0, 0, 0.3);
}

.testimonial-text {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(192, 0, 0, 0.2);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 0, 0, 0.3);
}

.info-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-item p, .info-item a {
    color: var(--text-dim);
}

.info-item a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.social-links a i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--gradient-bg);
}

.social-links a:hover i {
    color: var(--text-light);
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(192, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(192, 0, 0, 0.2);
}

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

/* Footer */
footer {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
    padding: 40px 0 20px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.simple-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(192, 0, 0, 0.3);
}

.footer-logo span {
    color: var(--text-light);
    font-weight: 400;
}

.footer-logo p {
    color: var(--text-dim);
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact p {
    color: var(--text-dim);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 0, 0, 0.2);
}

.footer-social a i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.footer-social a:hover {
    transform: translateY(-5px);
    background: var(--gradient-bg);
}

.footer-social a:hover i {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 15px;
    color: var(--text-dim);
}

.payment-methods i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .simple-footer {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container,
    .game-card,
    .game-card.reversed,
    .contact-container,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        width: 100%;
        max-width: 400px;
    }

    .game-card, 
    .game-card.reversed {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .game-features {
        display: inline-block;
        text-align: left;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-darker);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: all 0.5s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu {
        display: block;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .service-cards,
    .steps,
    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* End of CSS */ 