/* 
=================
Base Styles
=================
*/
:root {
    /* Color Palette */
    --primary-color: #f9f871; /* Lazurno-yellow */
    --primary-alt-color: #33ffc1; /* Electric mint */
    --secondary-color: #1f1f1f; /* Coal grey */
    --bg-color: #e0e0e0; /* Silver grey */
    --accent-color: #4b0082; /* Deep indigo */
    --white: #ffffff;
    --light-grey: #f5f5f5;
    --dark-grey: #333333;
    --shadow: rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --body-font: 'Arial', 'Helvetica', sans-serif;
    --heading-font: 'Arial', 'Helvetica', sans-serif;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px; /* Add padding for anchor links to account for fixed header */
}

body {
    font-family: var(--body-font);
    color: var(--secondary-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-alt-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.cta-button, .pricing-button, .submit-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-alt-color));
    color: var(--secondary-color);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow);
}

.cta-button:hover, .pricing-button:hover, .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 10px var(--shadow);
    color: var(--secondary-color);
}

/* 
=================
Cookie Banner
=================
*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px var(--shadow);
    z-index: 1000;
    padding: 1rem;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-button {
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cookie-button.accept {
    background-color: var(--primary-alt-color);
    color: var(--secondary-color);
    border: none;
}

.cookie-button.more {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.cookie-button.accept:hover {
    background-color: var(--primary-color);
}

.cookie-button.more:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* 
=================
Header & Navigation
=================
*/
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 5px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 80px; /* Fixed height for header */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 100%;
}

.logo svg {
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 1.5rem;
}

.nav-list a {
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: var(--primary-alt-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-alt-color);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-cta:hover {
    background-color: var(--primary-alt-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 2rem;
    height: 1.5rem;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle span:first-child {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:last-child {
    bottom: 0;
}

.menu-toggle.active span:first-child {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

/* 
=================
Hero Section
=================
*/
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-alt-color) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    color: var(--secondary-color);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-content .cta-button {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-image {
    flex: 1;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 20px var(--shadow);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 
=================
About Section
=================
*/
.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 20px var(--shadow);
}

/* 
=================
Services Section
=================
*/
.services-section {
    padding: 5rem 0;
    background-color: var(--light-grey);
}

.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;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.service-image {
    margin-top: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* 
=================
Pricing Section
=================
*/
.pricing-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: var(--light-grey);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-alt-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--primary-alt-color);
    position: absolute;
    left: 0;
}

.pricing-button {
    display: block;
    margin: 0 2rem 2rem;
    text-align: center;
}

/* 
=================
Testimonials Section
=================
*/
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--light-grey);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    left: -1rem;
    top: -1rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-alt-color);
}

.author-details h4 {
    margin-bottom: 0.25rem;
}

.author-details p {
    margin: 0;
    color: var(--dark-grey);
    font-size: 0.9rem;
}

/* 
=================
Order Form Section
=================
*/
.order-form-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.order-form-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--light-grey);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-with-icon, .select-with-icon {
    position: relative;
}

.input-with-icon svg, .select-with-icon svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    width: 24px;
    height: 24px;
}

.input-with-icon input, .select-with-icon select {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border-radius: 5px;
    border: 2px solid var(--primary-alt-color);
    background-color: var(--white);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-with-icon input:focus, .select-with-icon select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(75, 0, 130, 0.2);
}

.checkbox-group {
    margin-top: 2rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-alt-color);
}

.checkbox-container label {
    margin-bottom: 0;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* 
=================
FAQ Section
=================
*/
.faq-section {
    padding: 5rem 0;
    background-color: var(--light-grey);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 5px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(51, 255, 193, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* 
=================
Policy Pages
=================
*/
.policy-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.policy-section h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-last-updated {
    color: var(--dark-grey);
    margin-bottom: 2rem;
    text-align: center;
}

.policy-section h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.contact-details {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.contact-details li {
    margin-bottom: 0.5rem;
}

/* 
=================
Thank You Page
=================
*/
.thank-you-section {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    color: var(--primary-alt-color);
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    margin-bottom: 2rem;
}

/* 
=================
Why Choose Us Section
=================
*/
.why-choose-us-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.why-choose-us-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.why-choose-us-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.why-choose-us-image {
    flex: 1;
}

.why-choose-us-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.why-choose-us-image img:hover {
    transform: scale(1.02);
}

.why-choose-us-text {
    flex: 1;
}

.why-choose-us-text h3 {
    color: var(--accent-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.why-choose-us-text h3:first-child {
    margin-top: 0;
}

.why-choose-us-text p {
    margin-bottom: 1.5rem;
}

.why-choose-us-text .cta-button {
    margin-top: 1rem;
    display: inline-block;
}

/* 
=================
Responsive Design
=================
*/
@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        box-shadow: 0 5px 10px var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .hero-section .container,
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content, .about-text, .hero-image, .about-image {
        flex: none;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .why-choose-us-content {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-us-image, .why-choose-us-text {
        flex: none;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .pricing-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
        border: 2px solid var(--primary-alt-color);
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* Animation Classes */
.animate-fadeIn {
    animation: fadeIn 1s ease forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animation Delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

/* 
=================
Footer
=================
*/
.site-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: var(--primary-alt-color);
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-list svg {
    color: var(--primary-alt-color);
    flex-shrink: 0;
}

.legal-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.legal-links li {
    margin-bottom: 0.75rem;
}

.legal-links a {
    color: var(--white);
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-alt-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
} 