/* Global Styles */
:root {
    --primary: #FF6B6B;      /* Neon Coral */
    --secondary: #2E294E;    /* Midnight Indigo */
    --accent: #00F5D4;       /* Electric Teal */
    --background: #F3E8FF;   /* Soft Lilac */
    --text: #333333;         /* Charcoal */
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, .btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

button:hover, .btn-primary:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 1rem auto;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary);
    color: var(--white);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

#cookie-banner p {
    margin: 0 15px 0 0;
}

#cookie-banner button {
    background-color: var(--accent);
    color: var(--secondary);
    white-space: nowrap;
}

/* Header Styles */
.site-header {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: lowercase;
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.logo a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
}

.menu-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-button .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.menu-button.close .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.menu-button.close .bar:nth-child(2) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary), var(--secondary) 60%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero .btn-primary {
    animation: fadeInUp 1s ease 0.4s both;
    font-size: 1.1rem;
    padding: 15px 30px;
    background-color: var(--accent);
    color: var(--secondary);
}

.hero .btn-primary:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.intro-section .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.intro-section .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 1rem auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-image {
    align-self: flex-end;
}

.intro-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    max-width: 90%;
    margin-top: 1rem;
}

.intro-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services-section {
    background-color: var(--background);
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--primary);
    margin: 1rem 0;
    position: relative;
    z-index: 2;
}

.service-card p {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 100%;
    height: 120px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-icon img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(0, 245, 212, 0.2), rgba(255, 255, 255, 0));
    z-index: 1;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--secondary);
    color: var(--white);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    width: 300%;
    animation: testimonials-slide 20s infinite;
}

.testimonial {
    width: 33.333%;
    padding: 0 20px;
    text-align: center;
}

.testimonial-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-content::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.1) transparent transparent;
}

.testimonial-author {
    font-weight: 600;
    font-style: italic;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background-color: var(--background);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-plan {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan-popular {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    transform: rotate(45deg) translate(25%, -50%);
    transform-origin: top right;
}

.plan-price {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin: 1rem 0;
}

.plan-price span {
    font-size: 1rem;
    color: var(--dark-gray);
}

.plan-features {
    margin: 1.5rem 0;
}

.plan-features li {
    margin: 0.5rem 0;
    color: var(--text);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background-color: var(--light-gray);
    padding: 1rem;
    display: block;
    width: 100%;
    text-align: left;
    font-weight: 600;
    position: relative;
    cursor: pointer;
    color: var(--secondary);
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.faq-answer-content {
    padding: 1rem;
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-item.active .faq-answer {
    padding: 1rem;
    max-height: 500px;
}

/* Contact Form Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--background);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    transition: border 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
}

.form-check input {
    margin-top: 5px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Footer Styles */
.site-footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.site-footer a {
    color: var(--accent);
}

.site-footer a:hover {
    color: var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-info .logo {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.footer-contact ul, .footer-links ul {
    list-style: none;
}

.footer-contact li, .footer-links li {
    margin-bottom: 0.5rem;
}

.footer-contact h3, .footer-links h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Policy Pages */
.policy-page {
    padding: 3rem 0;
}

.policy-content {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.policy-content h3 {
    margin: 1.5rem 0 0.75rem;
}

.policy-content p, .policy-content ul {
    margin-bottom: 1rem;
}

.policy-content ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes testimonials-slide {
    0%, 26.66% {
        transform: translateX(0);
    }
    33.33%, 60% {
        transform: translateX(-33.333%);
    }
    66.66%, 93.33% {
        transform: translateX(-66.666%);
    }
    100% {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        width: 300%;
        animation: none;
    }
    
    .testimonial {
        width: 100%;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-image {
        order: -1;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 0;
        width: 100%;
    }
    
    .main-nav.show {
        max-height: 300px;
        opacity: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        padding: 0 15px;
    }
    
    .main-nav ul li {
        width: 100%;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 10px 15px;
    }
    
    .services-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card, .pricing-plan {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    
    .policy-content {
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
