/* Variables */
:root {
    --deep-purple: #3A0CA3;
    --lemon-yellow: #FFCE00;
    --smoke-white: #F9F9F9;
    --ivory: #FFFFF0;
    --graphite-grey: #2E2E2E;
    --border-radius: 1rem;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: var(--graphite-grey);
    background-color: var(--ivory);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--deep-purple);
    transition: var(--transition);
}

a:hover {
    color: var(--lemon-yellow);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--deep-purple);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--lemon-yellow);
    color: var(--graphite-grey);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--deep-purple);
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--lemon-yellow);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Header */
.header {
    background-color: var(--smoke-white);
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-info p {
    font-size: 0.9rem;
    margin: 0;
}

/* Hero Section */
.hero {
    padding-top: 7rem;
    background: linear-gradient(to right, var(--deep-purple), #5330c5);
    color: white;
    height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Services Section */
.services {
    background-color: var(--smoke-white);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: var(--deep-purple);
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    background-color: var(--ivory);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-item h3 {
    margin: 1rem 0;
    color: var(--deep-purple);
}

/* About Section */
.about {
    background-color: var(--smoke-white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
    }
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Testimonials */
.testimonials {
    background-color: var(--ivory);
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.client-info {
    margin-left: 1rem;
}

.client-name {
    font-weight: bold;
    color: var(--deep-purple);
}

.testimonial-text {
    font-style: italic;
}

/* Contact Form */
.contact {
    background: linear-gradient(to right, var(--deep-purple), #5330c5);
    color: white;
}

.contact h2 {
    color: white;
}

.contact .section-title::after {
    background: var(--lemon-yellow);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--graphite-grey);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-check input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check label {
    color: var(--graphite-grey);
    font-size: 0.9rem;
}

.form-check a {
    color: var(--deep-purple);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--graphite-grey);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h3 {
    color: var(--lemon-yellow);
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--lemon-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--graphite-grey);
    color: white;
    padding: 1rem;
    z-index: 1000;
    opacity: 0;
    transition: all 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
    opacity: 1;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
    padding-right: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .hero {
        height: auto;
        padding: 9rem 0 5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .contact-info {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .service-card, .testimonial-card {
        padding: 1.5rem;
    }
} 