/* CSS Custom Properties for Dark Neon Theme */
:root {
    --primary-orange: #f29500;
    --primary-red: #f20c00;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --dark-text: #ffffff;
    --gray-text: #cccccc;
    --accent-glow: rgba(242, 149, 0, 0.3);
    --red-glow: rgba(242, 12, 0, 0.3);
    --transition: all 0.3s ease;
}

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

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

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--accent-glow);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px var(--accent-glow);
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-text);
}

/* Buttons */
.btn-cta, .btn-primary, .btn-secondary, .btn-submit {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-cta, .btn-primary, .btn-submit {
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-red));
    color: white;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-cta:hover, .btn-primary:hover, .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px var(--accent-glow);
}

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

.btn-secondary:hover {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(242, 149, 0, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo img {
    height: 40px;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

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

.nav-link {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange);
    text-shadow: 0 0 10px var(--accent-glow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    margin: 3px 0;
    transition: var(--transition);
    box-shadow: 0 0 5px var(--accent-glow);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-card);
    padding: 20px;
    z-index: 1001;
    border-top: 2px solid var(--primary-orange);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-banner.hidden {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 100px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--gray-text);
}

@keyframes glow {
    from { text-shadow: 0 0 20px var(--accent-glow); }
    to { text-shadow: 0 0 30px var(--accent-glow), 0 0 40px var(--accent-glow); }
}

/* Sections */
section {
    padding: 100px 0;
}

.about {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(26, 26, 26, 0.8) 100%);
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--dark-card);
    border-radius: 15px;
    border: 1px solid rgba(242, 149, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-shadow: 0 0 15px var(--accent-glow);
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits {
    background: var(--dark-card);
}

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

.benefit-card {
    background: var(--dark-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(242, 149, 0, 0.2);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 30px rgba(242, 149, 0, 0.2);
}

.benefit-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--dark-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(242, 149, 0, 0.2);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(242, 149, 0, 0.2);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 2rem;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 0 20px var(--accent-glow);
}

.role {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(26, 26, 26, 0.8) 100%);
}

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

.service-card {
    background: var(--dark-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(242, 149, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    transition: var(--transition);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(242, 149, 0, 0.3);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 1.5rem 0;
    text-shadow: 0 0 10px var(--accent-glow);
}

.service-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.stars {
    color: var(--primary-orange);
    font-size: 1.2rem;
    text-shadow: 0 0 5px var(--accent-glow);
}

.rating-text {
    color: var(--gray-text);
    font-weight: 600;
}

/* Reviews Section */
.reviews {
    background: var(--dark-card);
}

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

.review-card {
    background: var(--dark-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(242, 149, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.3;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(242, 149, 0, 0.2);
}

.review-stars {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px var(--accent-glow);
}

.reviewer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(242, 149, 0, 0.2);
}

.reviewer strong {
    color: var(--primary-orange);
    display: block;
    margin-bottom: 0.5rem;
}

.reviewer span {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(242, 149, 0, 0.2);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    color: var(--primary-orange);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(242, 149, 0, 0.2);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(242, 149, 0, 0.3);
    border-radius: 10px;
    background: var(--dark-bg);
    color: var(--dark-text);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Footer */
.footer {
    background: var(--dark-card);
    border-top: 1px solid rgba(242, 149, 0, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.footer-links h4,
.footer-contact h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: var(--gray-text);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(242, 149, 0, 0.1);
    color: var(--gray-text);
}

/* Legal Pages */
.legal-page, .thanks-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(242, 149, 0, 0.2);
}

.legal-content h2 {
    text-align: left;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-orange);
}

.legal-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--primary-red);
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-orange);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--dark-card);
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(242, 149, 0, 0.2);
}

.thanks-info {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0 3rem;
    border: 1px solid rgba(242, 149, 0, 0.1);
}

.thanks-info h3 {
    text-align: left;
    margin-bottom: 1rem;
}

.thanks-info ul {
    text-align: left;
    margin-left: 2rem;
}

.thanks-info li {
    color: var(--gray-text);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(242, 149, 0, 0.2);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .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(-10px) rotate(-45deg);
    }

    h1 {
        font-size: 2.5rem;
    }

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

    h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .legal-content,
    .thanks-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

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

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 60px 0;
    }

    .benefit-card,
    .team-member,
    .service-card,
    .review-card {
        padding: 2rem 1.5rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .legal-content,
    .thanks-content {
        padding: 1.5rem;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
}
