/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-graphite: #1E1E2F;
    --neon-turquoise: #00FFE7;
    --lime: #CCFF00;
    --light-text: #EDEDED;
    --dark-shadow: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-graphite);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(120deg, var(--neon-turquoise), var(--lime));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-turquoise), var(--lime));
}

/* Center alignment for specific sections */
.contact h2 {
    text-align: center;
}

.contact h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
    color: var(--neon-turquoise);
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 80px 0;
}

/* Header & Navigation */
header {
    background-color: rgba(30, 30, 47, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 255, 231, 0.15);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-svg {
    height: 50px;
    width: 200px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem;
}

nav ul li a:hover {
    color: var(--neon-turquoise);
}

.btn-contact {
    background: linear-gradient(90deg, var(--neon-turquoise), var(--lime));
    color: var(--dark-graphite) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    font-weight: bold !important;
    transition: transform 0.3s !important;
    box-shadow: 0 0 10px rgba(0, 255, 231, 0.5);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 255, 231, 0.7);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 30, 47, 0.9), rgba(30, 30, 47, 0.7)), url('../img/k61qCf.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 231, 0.1), rgba(204, 255, 0, 0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--neon-turquoise), var(--lime));
    color: var(--dark-graphite);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 255, 231, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 255, 231, 0.5);
}

/* About Section */
.about {
    background: linear-gradient(to right, rgba(30, 30, 47, 0.9), rgba(30, 30, 47, 0.8));
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 231, 0.2);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, rgba(30, 30, 47, 0.9), rgba(30, 30, 47, 0.8)), url('../img/0HQavS.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(145deg, rgba(40, 40, 60, 0.8), rgba(25, 25, 40, 0.8));
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 231, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-turquoise), var(--lime));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-price {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 1.5rem 0;
    color: var(--neon-turquoise);
}

/* Benefits Section */
.benefits {
    background: linear-gradient(to right, rgba(30, 30, 47, 0.9), rgba(30, 30, 47, 0.8)), url('../img/idp5ZD.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(145deg, rgba(40, 40, 60, 0.8), rgba(25, 25, 40, 0.8));
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid rgba(0, 255, 231, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--lime);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(to bottom, rgba(30, 30, 47, 0.9), rgba(30, 30, 47, 0.8));
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(40, 40, 60, 0.8), rgba(25, 25, 40, 0.8));
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(0, 255, 231, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -15px;
    color: rgba(0, 255, 231, 0.2);
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--neon-turquoise);
}

.client-name {
    font-weight: bold;
}

.client-position {
    font-size: 0.9rem;
    color: rgba(237, 237, 237, 0.7);
}

/* Contact Form Section */
.contact {
    background: linear-gradient(to right, rgba(30, 30, 47, 0.9), rgba(30, 30, 47, 0.8));
    padding: 100px 0;
}

.contact-form {
    background: linear-gradient(145deg, rgba(40, 40, 60, 0.8), rgba(25, 25, 40, 0.8));
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(0, 255, 231, 0.1);
}

.form-error {
    background: rgba(255, 50, 50, 0.2);
    border-left: 4px solid #ff3232;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    color: #ffcccc;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0, 255, 231, 0.3);
    border-radius: 5px;
    background-color: rgba(40, 40, 60, 0.5);
    color: var(--light-text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-turquoise);
    box-shadow: 0 0 10px rgba(0, 255, 231, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.checkbox-group input {
    margin-right: 0.5rem;
}

.form-button {
    background: linear-gradient(90deg, var(--neon-turquoise), var(--lime));
    color: var(--dark-graphite);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    width: 100%;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 255, 231, 0.3);
}

.form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 231, 0.5);
}

/* FAQ Section */
.faq {
    background: linear-gradient(to bottom, rgba(30, 30, 47, 0.9), rgba(30, 30, 47, 0.8));
    padding: 100px 0;
}

.faq-container {
    display: flex;
    gap: 40px;
    margin-top: 2rem;
}

.faq-questions {
    flex: 1.5;
}

.faq-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 231, 0.2);
    align-self: flex-start;
    position: sticky;
    top: 100px;
}

.faq-img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-item {
    background: linear-gradient(145deg, rgba(40, 40, 60, 0.8), rgba(25, 25, 40, 0.8));
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 231, 0.1);
}

.faq-question {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--neon-turquoise);
    margin-bottom: 0.8rem;
}

@media (max-width: 992px) {
    .faq-container {
        flex-direction: column;
    }
    
    .faq-image {
        position: static;
        margin-bottom: 30px;
        order: -1;
    }
}

/* Footer */
footer {
    background: linear-gradient(to top, rgba(20, 20, 30, 0.95), rgba(30, 30, 47, 0.95));
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.footer-about, .footer-contact, .footer-links, .footer-legal {
    margin-bottom: 1.5rem;
}

footer h3 {
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: var(--neon-turquoise);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(237, 237, 237, 0.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(30, 30, 47, 0.95), rgba(40, 40, 60, 0.95));
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie-content p {
    margin: 0;
    padding-right: 2rem;
}

.cookie-content a {
    color: var(--neon-turquoise);
    text-decoration: none;
}

#accept-cookies {
    background: linear-gradient(90deg, var(--neon-turquoise), var(--lime));
    color: var(--dark-graphite);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

#accept-cookies:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 255, 231, 0.3);
}

/* Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 120px auto 50px;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(40, 40, 60, 0.8), rgba(25, 25, 40, 0.8));
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 231, 0.1);
}

.policy-content h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
}

.policy-content ul {
    margin: 1rem 0 1rem 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you {
    text-align: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--lime);
    margin-bottom: 2rem;
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav {
        margin-top: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .hero {
        padding-top: 150px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-content p {
        margin-bottom: 1rem;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .service-card, .testimonial-card, .benefit-card, .faq-item {
        padding: 1.5rem;
    }
} 