/* Base Styles */
:root {
    /* Color Palette */
    --color-background: #1C1C1E;
    --color-turquoise: #00F7E9;
    --color-lime: #EFFF5E;
    --color-raspberry: #FF2E63;
    --color-dark-purple: #2C003E;
    --color-indigo: #3A0CA3;
    --color-white: #FFFFFF;
    --color-grey: #A0AEC0;
    
    /* Fonts */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--space-lg);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-sm);
}

a {
    color: var(--color-turquoise);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-lime);
}

.accent-text {
    color: var(--color-turquoise);
}

.neon-text {
    color: var(--color-turquoise);
    text-shadow: 0 0 5px rgba(0, 247, 233, 0.5), 0 0 10px rgba(0, 247, 233, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--color-turquoise), var(--color-lime));
    color: var(--color-background);
    box-shadow: 0 0 15px rgba(0, 247, 233, 0.5);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 247, 233, 0.8);
    color: var(--color-background);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-turquoise);
    color: var(--color-turquoise);
}

.btn-secondary:hover {
    background-color: var(--color-turquoise);
    color: var(--color-background);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header and Navigation */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(28, 28, 30, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-sm) 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-turquoise);
    text-shadow: 0 0 10px rgba(0, 247, 233, 0.5);
    letter-spacing: 1px;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 3px;
    background-color: var(--color-turquoise);
    border-radius: 3px;
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 12px;
}

nav ul li a:hover:not(.btn) {
    color: var(--color-turquoise);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(28, 28, 30, 0.8), rgba(28, 28, 30, 0.8)), url('img/VKo3b.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero .container {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--color-grey);
}

/* About Section */
.about {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--color-dark-purple), var(--color-indigo));
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    padding: var(--space-xl) 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: linear-gradient(145deg, rgba(44, 44, 46, 1), rgba(28, 28, 30, 1));
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: var(--space-md);
}

/* Advantages Section */
.advantages {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--color-dark-purple), var(--color-indigo));
}

.advantage-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--space-md);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    margin-bottom: var(--space-sm);
}

.advantage-icon .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--color-turquoise), var(--color-lime));
    color: var(--color-background);
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-xl) 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--space-md);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    margin-bottom: var(--space-sm);
    font-style: italic;
}

.testimonial-author .author-name {
    font-weight: bold;
    color: var(--color-turquoise);
    margin-bottom: 0;
}

.testimonial-author .author-title {
    font-size: 0.9rem;
    color: var(--color-grey);
}

/* Process Section */
.process {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--color-dark-purple), var(--color-indigo));
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.process-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--space-md);
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--color-turquoise), var(--color-lime));
    color: var(--color-background);
    border-radius: 50%;
    font-weight: bold;
    margin: 0 auto var(--space-sm);
}

/* Contact Form Section */
.contact {
    padding: var(--space-xl) 0;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--color-white);
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-turquoise);
    box-shadow: 0 0 10px rgba(0, 247, 233, 0.3);
}

.form-group select option {
    background-color: white;
    color: var(--color-background);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
}

/* Map Section */
.map-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--color-dark-purple), var(--color-indigo));
}

.map-contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-md);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.info-icon {
    font-size: 1.5rem;
    color: var(--color-turquoise);
}

/* Footer */
.footer {
    background-color: rgba(28, 28, 30, 0.95);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-turquoise);
    text-shadow: 0 0 10px rgba(0, 247, 233, 0.5);
    margin-bottom: var(--space-sm);
}

.footer-links h3,
.footer-contact h3 {
    position: relative;
    padding-bottom: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--color-turquoise), var(--color-lime));
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: var(--space-xs);
}

.footer-links ul li a {
    color: var(--color-grey);
}

.footer-links ul li a:hover {
    color: var(--color-turquoise);
}

.footer-contact p {
    color: var(--color-grey);
}

.footer-bottom {
    text-align: center;
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-grey);
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(28, 28, 30, 0.95);
    padding: var(--space-md);
    z-index: 1001;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-consent.active {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
}

/* Policy Pages */
.policy-container {
    max-width: 800px;
    margin: 8rem auto 5rem;
    padding: var(--space-lg);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.policy-container h1 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.policy-container h2 {
    text-align: left;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: 1.8rem;
}

.policy-container p,
.policy-container ul,
.policy-container ol {
    margin-bottom: var(--space-md);
}

.policy-container ul,
.policy-container ol {
    padding-left: var(--space-md);
}

.policy-container li {
    margin-bottom: var(--space-xs);
}

/* Thank You Page */
.thank-you {
    text-align: center;
    margin: 8rem auto 5rem;
    padding: var(--space-lg);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    max-width: 800px;
}

.thank-you h1 {
    margin-bottom: var(--space-md);
}

.thank-you p {
    margin-bottom: var(--space-lg);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.hero-subtitle,
.hero .btn {
    animation: fadeIn 1s ease forwards;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero .btn {
    animation-delay: 0.4s;
}

/* FAQ Section */
.faq {
    padding: var(--space-xl) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-sm);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--space-sm) var(--space-md);
    cursor: pointer;
    display: block;
    font-weight: bold;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-answer-content {
    padding: var(--space-md);
}

.faq-toggle {
    display: none;
}

.faq-toggle:checked + .faq-question {
    background-color: rgba(0, 247, 233, 0.1);
}

.faq-toggle:checked + .faq-question::after {
    content: '−';
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 1000px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .menu-icon {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(28, 28, 30, 0.95);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .menu-toggle:checked ~ .nav {
        max-height: 500px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav ul {
        flex-direction: column;
        padding: var(--space-md);
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: var(--space-xs) 0;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-content button {
        width: 100%;
    }
    
    .map-contact-wrapper {
        flex-direction: column;
    }
    
    .footer-content {
        gap: var(--space-md);
    }
}
