/* Base styles */
:root {
    --dark-blue: #0A2540;
    --neon-blue: #00a1ff;
    --coral-pink: #FF6F61;
    --light-gray: #EAEAEA;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.08);
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--light-gray);
    background-color: var(--dark-blue);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--coral-pink);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, .btn {
    display: inline-block;
    background-color: var(--neon-blue);
    color: var(--dark-blue);
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

button:hover, .btn:hover {
    background-color: var(--coral-pink);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

section {
    padding: 5rem 0;
}

/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-blue);
    text-transform: lowercase;
    letter-spacing: -1px;
}

/* Navigation */
nav ul.menu {
    display: flex;
    list-style: none;
}

nav ul.menu li {
    margin-left: 1.5rem;
}

nav ul.menu li a {
    color: var(--light-gray);
    position: relative;
}

nav ul.menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--neon-blue);
    transition: width 0.3s ease;
}

nav ul.menu li a:hover {
    color: var(--neon-blue);
}

nav ul.menu li a:hover::after {
    width: 100%;
}

#menu-toggle, .menu-icon {
    display: none;
}

/* Hero section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: var(--header-height);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 37, 64, 0.7), rgba(10, 37, 64, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Grid layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

/* Card styles */
.card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--dark-blue);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    flex: 1;
}

.card h3 {
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 0.8rem;
}

.card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background-color: var(--neon-blue);
}

/* Section styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 70px;
    background-color: var(--neon-blue);
}

/* About section */
.about {
    position: relative;
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Services section */
.service-card {
    text-align: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--neon-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: var(--dark-blue);
    font-size: 2rem;
}

/* Advantages section */
.advantage-card {
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    border-bottom: 4px solid var(--neon-blue);
}

/* Steps section */
.steps {
    position: relative;
}

.step-card {
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--neon-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Testimonials section */
.testimonial-card {
    position: relative;
    padding: 2rem;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(198, 255, 0, 0.2);
}

.testimonial-author {
    font-weight: bold;
    margin-top: 1rem;
    color: var(--neon-blue);
}

/* Contact form */
.form-section {
    position: relative;
}

.form-container {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--dark-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 1rem;
}

.form-group select option {
    background-color: var(--white);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-group button {
    width: 100%;
}

/* FAQ section */
.faq {
    background-color: rgba(255, 255, 255, 0.03);
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-item label {
    display: block;
    padding: 1rem;
    background-color: rgba(198, 255, 0, 0.1);
    color: var(--white);
    cursor: pointer;
    position: relative;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-item label::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item input[type="checkbox"]:checked + label {
    background-color: var(--neon-blue);
    color: var(--dark-blue);
}

.faq-item input[type="checkbox"]:checked + label::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}

.faq-item input[type="checkbox"]:checked ~ .faq-content {
    max-height: 500px;
    padding: 1rem;
}

/* Contact section */
.contact-map {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    margin-bottom: 0.5rem;
}

/* Footer styles */
footer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.footer-col h3 {
    position: relative;
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 40px;
    background-color: var(--neon-blue);
}

.contact-info, .legal-links {
    list-style: none;
}

.contact-info li, .legal-links li {
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease;
    padding: 1rem 0;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    margin-right: 20px;
}

/* Policy pages */
.policy-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    margin: 8rem auto 5rem;
    max-width: 800px;
    border: 1px solid rgba(198, 255, 0, 0.3);
}

.policy-container h1 {
    margin-bottom: 2rem;
    text-align: center;
}

.policy-container h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-container p, .policy-container ul {
    margin-bottom: 1rem;
}

.policy-container ul {
    padding-left: 1.5rem;
}

/* Thank you page */
.thank-you {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 3rem;
    margin: 8rem auto 5rem;
    max-width: 600px;
    text-align: center;
    border: 1px solid rgba(198, 255, 0, 0.3);
}

.thank-you h1 {
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    #menu-toggle {
        display: none;
    }
    
    .menu-icon {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 200;
        position: relative;
    }
    
    .menu-icon span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neon-blue);
        transition: all 0.3s ease;
    }
    
    #menu-toggle:checked + .menu-icon span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    #menu-toggle:checked + .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    #menu-toggle:checked + .menu-icon span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    nav ul.menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--dark-blue);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 2rem;
    }
    
    #menu-toggle:checked ~ ul.menu {
        right: 0;
    }
    
    nav ul.menu li {
        margin: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .policy-container, .thank-you {
        padding: 1.5rem;
        margin: 7rem auto 3rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
}
