:root {
    --electric-blue: #0066FF;
    --lime-green: #32CD32;
    --deep-blue: #003399;
    --bright-lime: #7FFF00;
    --dark-bg: #0a0a0a;
    --light-text: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-neon: 0 0 20px rgba(50, 205, 50, 0.5);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

strong, p {
    color: inherit;
}

a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--lime-green);
}


.navbar {
    background: linear-gradient(135deg, var(--electric-blue), var(--deep-blue));
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-neon);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--lime-green), var(--bright-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-menu {
    background: transparent;
}

.navbar-item {
    color: var(--light-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-item:hover {
    background: rgba(50, 205, 50, 0.2);
    color: var(--lime-green);
    border-radius: 8px;
}

.navbar-burger {
    color: var(--light-text);
    height: 4rem;
    width: 4rem;
}


.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--deep-blue) 50%, var(--lime-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


.btn-primary {
    background: linear-gradient(135deg, var(--lime-green), var(--bright-lime));
    color: var(--dark-bg);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(50, 205, 50, 0.8);
    color: var(--dark-bg);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: 3px solid var(--lime-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    background: var(--lime-green);
    color: var(--dark-bg);
    box-shadow: var(--shadow-neon);
}


.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

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


.neo-section {
    padding: 100px 0;
    position: relative;
}

.neo-section:nth-child(odd) {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 100%);
}

.neo-section:nth-child(even) {
    background: linear-gradient(135deg, #1a1a2e 0%, var(--dark-bg) 100%);
}


.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--electric-blue), var(--lime-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.service-card {
    background: linear-gradient(145deg, #1e1e2f, #252535);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--electric-blue), var(--lime-green));
}

.service-card:hover {
    border-color: var(--lime-green);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--lime-green);
}

.service-price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}


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

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--glass-bg);
    border-radius: 16px;
    border-left: 4px solid var(--lime-green);
}

.advantage-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.advantage-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.advantage-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}


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

.review-card {
    background: linear-gradient(145deg, #1e1e2f, #252535);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--lime-green);
}

.review-author {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light-text);
}

.review-position {
    color: var(--electric-blue);
    font-size: 0.95rem;
}

.review-stars {
    color: var(--lime-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.8;
}


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

.team-card {
    background: linear-gradient(145deg, #1e1e2f, #252535);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--lime-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}


.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--glass-border);
}

.field label {
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.input, .textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--light-text);
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

.input:focus, .textarea:focus {
    border-color: var(--lime-green);
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.3);
    outline: none;
}

.input::placeholder, .textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}


.footer-section {
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-bg));
    padding: 80px 0 40px;
    border-top: 3px solid var(--lime-green);
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--lime-green), var(--bright-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--lime-green);
    padding-left: 10px;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}


.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 500px;
    background: linear-gradient(145deg, #1e1e2f, #252535);
    border-radius: 20px;
    padding: 2rem;
    z-index: 9999;
    border: 2px solid var(--lime-green);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.4);
}

.cookie-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.cookie-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--lime-green), var(--bright-lime));
    color: var(--dark-bg);
    border: none;
}

.cookie-btn-accept:hover {
    box-shadow: var(--shadow-neon);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--light-text);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    border-color: var(--electric-blue);
}


.faq-item {
    background: var(--glass-bg);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--light-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(50, 205, 50, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--lime-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}


.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--glass-bg);
    border-radius: 20px;
    border-left: 5px solid var(--lime-green);
}

.process-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--lime-green);
    line-height: 1;
}

.process-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.8rem;
}

.process-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}


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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-text);
}


@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .neo-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cookie-consent-banner {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar-menu {
        background: linear-gradient(135deg, var(--deep-blue), var(--dark-bg));
    }
}


.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--lime-green);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}


.contact-info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--lime-green);
}

.contact-info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-info-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.8rem;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-text a {
    color: var(--lime-green);
}


.is-hidden {
    display: none !important;
}


.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--electric-blue), var(--deep-blue));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 50px 50px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--light-text);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--lime-green);
}


.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--electric-blue), var(--deep-blue));
    padding: 120px 20px 80px;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
}

.success-icon {
    font-size: 6rem;
    margin-bottom: 2rem;
    display: block;
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}


.legal-content {
    padding: 120px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lime-green);
    margin-bottom: 1rem;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.legal-section ul {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 1.5rem;
    line-height: 1.8;
}


.image-container {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}


.cta-section {
    background: linear-gradient(135deg, var(--lime-green), var(--electric-blue));
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    border-radius: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--lime-green);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}