/* Global styles */
:root {
    --midnight-navy: #0A1A2B;
    --neon-teal: #0FF5C0;
    --sunset-coral: #FF6B6B;
    --canary-yellow: #FFE66D;
    --slate-gray: #5C6B73;
    --white-smoke: #F5F7FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--slate-gray);
    background-color: var(--white-smoke);
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--neon-teal);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--sunset-coral);
}

button, .btn {
    background-color: var(--neon-teal);
    color: var(--midnight-navy);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover, .btn:hover {
    background-color: var(--sunset-coral);
    color: var(--white-smoke);
}

.cta-button {
    background-color: var(--sunset-coral);
    color: var(--white-smoke);
}

.cta-button:hover {
    background-color: var(--neon-teal);
    color: var(--midnight-navy);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--midnight-navy);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 80px 0;
}

section[id] {
    scroll-margin-top: 100px;
}

/* Header styles */
header {
    background-color: var(--midnight-navy);
    color: var(--white-smoke);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white-smoke);
}

.logo span {
    color: var(--neon-teal);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
}

.menu-toggle-label {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--white-smoke);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--neon-teal);
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, var(--neon-teal) 0%, var(--sunset-coral) 100%);
    padding: 150px 0;
    color: var(--white-smoke);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: hue-shift 15s infinite alternate;
}

@keyframes hue-shift {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(30deg);
    }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white-smoke);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* About section */
.about {
    background-color: var(--white-smoke);
}

/* Advantages section */
.advantages {
    background-color: var(--midnight-navy);
    color: var(--white-smoke);
}

.advantages h2 {
    color: var(--white-smoke);
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    color: var(--sunset-coral);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Services section */
.services {
    background-color: var(--white-smoke);
}

.services h2 {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 20px;
    object-fit: cover;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    color: var(--midnight-navy);
    margin-bottom: 15px;
}

/* Process section */
.process {
    background-color: var(--midnight-navy);
    color: var(--white-smoke);
}

.process h2 {
    color: var(--white-smoke);
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.process-steps::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--neon-teal);
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 16%;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--neon-teal);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--midnight-navy);
    margin-bottom: 15px;
}

.step-text {
    text-align: center;
    font-weight: 500;
}

/* Success cases section */
.success-cases {
    background-color: var(--white-smoke);
}

.success-cases h2 {
    text-align: center;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 30px 0;
    -webkit-overflow-scrolling: touch;
}

.success-case {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.success-case h3 {
    margin-bottom: 15px;
}

/* Pricing section */
.pricing {
    background-color: var(--midnight-navy);
    color: var(--white-smoke);
}

.pricing h2 {
    color: var(--white-smoke);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.price-box {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    color: var(--midnight-navy);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.price-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--sunset-coral);
    margin: 20px 0;
}

.price-box ul {
    list-style: none;
    margin-bottom: 30px;
}

.price-box ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Form section */
.contact {
    background-color: var(--white-smoke);
}

.contact h2 {
    text-align: center;
}

.form-container {
    max-width: 800px;
    margin: 50px auto 0;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--neon-teal);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--midnight-navy);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input {
    margin-right: 10px;
}

.submit-btn {
    width: 100%;
    background-color: var(--sunset-coral);
    color: var(--white-smoke);
    font-size: 1.1rem;
    padding: 15px;
}

/* FAQ section */
.faq {
    background-color: var(--midnight-navy);
    color: var(--white-smoke);
}

.faq h2 {
    color: var(--white-smoke);
    text-align: center;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    position: relative;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.faq-toggle {
    display: none;
}

.faq-label {
    display: block;
    position: relative;
    cursor: pointer;
}

.faq-label::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-toggle:checked + .faq-label::after {
    content: '-';
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 4px 4px;
}

.faq-toggle:checked ~ .faq-content {
    max-height: 500px;
}

.faq-answer {
    padding: 20px;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

/* Footer styles */
footer {
    background-color: var(--midnight-navy);
    color: var(--white-smoke);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--neon-teal);
}

.footer-description {
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-links h4 {
    color: var(--white-smoke);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white-smoke);
}

.footer-links ul li a:hover {
    color: var(--neon-teal);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Policy pages */
.policy-container {
    background-color: var(--white-smoke);
    border: 4px solid var(--neon-teal);
    padding: 32px;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 1000px;
}

.policy-container h1 {
    color: var(--midnight-navy);
    margin-bottom: 30px;
}

.policy-container h2 {
    color: var(--midnight-navy);
    margin: 30px 0 15px;
}

.policy-container p, .policy-container ul {
    margin-bottom: 15px;
}

.policy-container ul {
    padding-left: 20px;
}

/* Cookie popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--midnight-navy);
    color: var(--white-smoke);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-popup p {
    margin: 0;
    padding-right: 20px;
}

/* Thank you page */
.thank-you {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-smoke);
    z-index: 2000;
}

.thank-you h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--neon-teal);
}

.thank-you-container {
    background-color: white;
    border: 4px solid var(--neon-teal);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive styles */
@media (max-width: 1280px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
    
    .advantages-grid, .services-grid, .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        width: 33%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .menu-toggle-label {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--midnight-navy);
        padding: 20px;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .menu-toggle:checked ~ ul {
        display: flex;
    }
    
    .advantages-grid, .services-grid, .pricing-grid, .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 20px;
    }
}