/* Base Styles & Variables */
:root {
    --color-malachite: #1F8A70;
    --color-coral: #FF6F61;
    --color-indigo: #3F51B5;
    --color-saffron: #F4C542;
    --color-dark: #2C2C2C;
    --color-white: #FFFFFF;
    --color-light-gray: #F5F5F5;
    --color-medium-gray: #E0E0E0;
    
    --font-main: 'Poppins', Arial, sans-serif;
    --shadow-neon: 0 0 15px rgba(244, 197, 66, 0.6);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-xl: 20px;
}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-indigo);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-coral);
}

ul {
    list-style: none;
}

section {
    padding: 60px 0;
}

/* Alternating backgrounds */
.hero-section {
    background: linear-gradient(135deg, var(--color-malachite), var(--color-coral));
    background-attachment: fixed;
}

.about-section, 
.testimonials-section, 
.faq-section {
    background: linear-gradient(135deg, var(--color-coral), var(--color-indigo));
    background-attachment: fixed;
}

.services-section, 
.benefits-section, 
.contact-section {
    background: linear-gradient(135deg, var(--color-indigo), var(--color-malachite));
    background-attachment: fixed;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-indigo);
    color: var(--color-white);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn:hover {
    background-color: var(--color-saffron);
    color: var(--color-dark);
    box-shadow: var(--shadow-neon);
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: var(--color-white);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-saffron);
    margin: 15px auto;
    border-radius: 2px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: rgba(44, 44, 44, 0.95);
    color: var(--color-white);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: bottom 0.5s ease;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner p {
    margin: 0 20px 0 0;
    font-size: 0.9rem;
}

.cookie-banner a {
    color: var(--color-saffron);
    text-decoration: underline;
}

.cookie-banner button {
    background-color: var(--color-saffron);
    color: var(--color-dark);
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-banner button:hover {
    background-color: var(--color-coral);
    color: var(--color-white);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    margin-left: 25px;
}

.nav-list a {
    color: var(--color-dark);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-coral);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a.btn-contact {
    background-color: var(--color-indigo);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--border-radius);
}

.nav-list a.btn-contact:hover {
    background-color: var(--color-coral);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

.nav-list a.btn-contact::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    text-decoration: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 0 20px;
}

.hero-section .container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-content {
    color: var(--color-white);
    max-width: 700px;
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    padding: 0;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s both;
    width: 100%;
}

.hero-cta {
    animation: fadeInUp 1s ease 0.6s both;
    display: flex;
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-xl);
    margin: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.service-card-content {
    padding: 30px;
}

.service-icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    background-color: var(--color-indigo);
    color: var(--color-white);
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-dark);
}

/* Benefits Section */
.benefits-section {
    background-color: rgba(63, 81, 181, 0.9);
    color: var(--color-white);
    border-radius: var(--border-radius-xl);
    margin: 20px;
    padding: 30px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
    border-radius: var(--border-radius);
    border: 2px solid var(--color-saffron);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-saffron);
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-xl);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.testimonial-text {
    font-style: italic;
    position: relative;
    padding: 0 20px;
    margin-bottom: 20px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--color-coral);
    position: absolute;
}

.testimonial-text::before {
    top: -10px;
    left: 0;
}

.testimonial-text::after {
    bottom: -10px;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background-color: var(--color-medium-gray);
    position: relative;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial-author-position {
    font-size: 0.9rem;
    color: var(--color-coral);
}

/* Contact Form Section */
.contact-section {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-xl);
    margin: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    flex: 0 0 48%;
    min-width: 300px;
    border: 1px solid var(--color-medium-gray);
    border-radius: var(--border-radius);
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    flex: 0 0 42%;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--color-indigo);
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.contact-info li {
    margin-bottom: 12px;
}

.contact-image {
    margin-top: auto;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 2px solid var(--color-medium-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background-color: var(--color-white);
    color: var(--color-dark);
}

.form-control:focus {
    border-color: var(--color-indigo);
    outline: none;
    box-shadow: var(--shadow-neon);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-checkbox input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-checkbox label {
    color: black;
}

.form-checkbox a {
    color: var(--color-indigo);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-indigo);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0 20px;
}

.faq-answer-content {
    padding: 20px 0;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Footer */
.site-footer {
    background: linear-gradient(to right, var(--color-malachite), var(--color-indigo));
    color: var(--color-white);
    padding-top: 60px;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-contact ul,
.footer-links ul {
    padding: 0;
}

.footer-contact li,
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-saffron);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Policy Pages */
.policy-page {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: var(--border-radius-xl);
    margin: 40px 20px;
}

.policy-page h1 {
    margin-bottom: 30px;
    color: var(--color-indigo);
}

.policy-page h2 {
    color: var(--color-coral);
    margin-top: 30px;
}

.policy-page p {
    margin-bottom: 20px;
}

.policy-page ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Thank You Page */
.thank-you-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-xl);
    margin: 40px 20px;
    padding: 40px;
}

.thank-you-page h1 {
    color: var(--color-indigo);
    margin-bottom: 20px;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--color-saffron);
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
        opacity: 0;
        z-index: -1;
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        z-index: 1000;
    }

    .nav-list li {
        margin: 10px 0;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner p {
        margin: 0 0 15px 0;
    }
    
    .benefits-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-flex-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form,
    .contact-info {
        flex: 0 0 90%;
        margin-top: 30px;
    }
    
    .contact-image {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 60vh;
    }

    .about-section,
    .contact-section,
    .policy-page,
    .thank-you-page {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .benefits-section {
        margin: 10px;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .contact-image img {
        max-height: 150px;
        object-fit: cover;
    }
} 