/* Base Styles */
:root {
    --color-primary-dark: #004D40;
    --color-primary-purple: #311B92;
    --color-accent-coral: #FF6F61;
    --color-accent-lavender: #B39DDB;
    --color-text-dark: #212121;
    --color-text-light: #FFFFFF;
    --color-silver: #C0C0C0;
    --font-heading: 'Roboto Slab', serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text-dark);
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-purple) 100%);
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--color-accent-coral);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent-lavender);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    background: linear-gradient(90deg, var(--color-accent-coral) 0%, var(--color-accent-lavender) 100%);
    color: var(--color-text-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: var(--color-text-light);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Header Styles */
.site-header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    animation: fadeIn 1s ease-out;
}

.logo svg {
    width: 50px;
    height: 50px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 25px;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: calc(0.1s * var(--animation-order, 0));
    opacity: 0;
}

.main-nav li:nth-child(1) { --animation-order: 1; }
.main-nav li:nth-child(2) { --animation-order: 2; }
.main-nav li:nth-child(3) { --animation-order: 3; }
.main-nav li:nth-child(4) { --animation-order: 4; }

.main-nav a {
    color: var(--color-text-light);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-coral);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--color-text-light);
    margin: 3px 0;
    border-radius: 3px;
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 77, 64, 0.7), rgba(49, 27, 146, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    color: var(--color-text-light);
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--color-text-light);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: var(--color-primary-dark);
}

.about-text p {
    color: var(--color-text-dark);
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: rgba(179, 157, 219, 0.1);
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

.service-price {
    font-weight: bold;
    color: var(--color-accent-coral);
    font-size: 1.2rem;
    margin-top: 15px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--color-text-light);
}

.features h2 {
    text-align: center;
    color: var(--color-primary-dark);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--color-accent-coral);
}

.feature h3 {
    color: var(--color-primary-dark);
    margin-bottom: 15px;
}

.feature p {
    color: var(--color-text-dark);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: rgba(0, 77, 64, 0.05);
}

.testimonials h2 {
    text-align: center;
    color: var(--color-primary-dark);
    margin-bottom: 40px;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-slider {
    display: flex;
    width: 300%;
    animation: slideTestimonials 30s infinite;
}

@keyframes slideTestimonials {
    0%, 33% { transform: translateX(0); }
    33.01%, 66% { transform: translateX(-33.33%); }
    66.01%, 100% { transform: translateX(-66.66%); }
}

.testimonial {
    width: 33.33%;
    padding: 20px;
}

.testimonial-content {
    background-color: var(--color-text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: var(--color-accent-lavender);
    opacity: 0.3;
    font-family: var(--font-heading);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--color-primary-dark);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--color-text-light);
}

.contact-form-section h2 {
    text-align: center;
    color: var(--color-primary-dark);
    margin-bottom: 40px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 77, 64, 0.05) 0%, rgba(49, 27, 146, 0.05) 100%);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-silver);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent-coral);
    box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.3);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23212121' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    cursor: pointer;
}

.checkbox-label input {
    margin-right: 10px;
    margin-top: 3px;
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: rgba(179, 157, 219, 0.1);
}

.contact h2 {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: var(--color-text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-card h3 {
    color: var(--color-primary-dark);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--color-accent-coral);
}

.map {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer Styles */
.site-footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--color-text-light);
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--color-accent-coral);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--color-accent-coral);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--color-text-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1100;
    display: block;
    animation: slideInUp 0.5s ease-out;
}

.cookie-popup.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-content form {
    min-width: 120px;
}

/* Thank You Page */
.thank-you {
    padding: 150px 0 80px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thank-you h1 {
    margin-bottom: 30px;
    font-size: 3rem;
}

.thank-you p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

/* Legal Pages */
.legal-page {
    padding: 150px 0 80px;
    background-color: var(--color-text-light);
    min-height: 100vh;
}

.legal-page h1 {
    color: var(--color-primary-dark);
    margin-bottom: 30px;
}

.legal-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    color: var(--color-primary-dark);
    margin-top: 40px;
}

.legal-content p, .legal-content ul {
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.legal-content ul {
    margin-left: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-content form {
        width: 100%;
    }
    
    /* Make header fixed on mobile */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 20px;
    }
}





@media (max-width: 768px) {
    .contact-content .container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        flex: 0 0 100%;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }
    
    .team-member {
        flex: 0 0 100%;
    }
} 