/* Base Styles */
:root {
    --cream-blush: #F6E9D7;
    --ink-blue: #3B3B58;
    --pumpkin-orange: #ED7D3A;
    --moss-green: #A4B787;
    --light-base: #F2F2F2;
    --transition-speed: 0.3s;
    --header-height: 70px;
}

/* Scroll Padding for Anchor Links */
html {
    scroll-padding-top: calc(var(--header-height) + 20px);
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--ink-blue);
    background-color: var(--cream-blush);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--ink-blue);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--pumpkin-orange);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 4rem 0;
    position: relative;
}

section[id] {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--moss-green);
    margin: 1rem auto 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--pumpkin-orange);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-speed);
}

.btn:hover {
    background-color: #d96a2c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

nav {
    display: flex;
    align-items: center;
}

.desktop-menu {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
}

.desktop-menu li {
    margin: 0 15px;
}

.desktop-menu a {
    color: var(--ink-blue);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.desktop-menu a:hover {
    color: var(--pumpkin-orange);
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--pumpkin-orange);
    transition: width 0.3s;
}

.desktop-menu a:hover::after {
    width: 100%;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink-blue);
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 1.5rem;
}

.main-nav ul li a {
    font-weight: 500;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: var(--moss-green);
    transition: width var(--transition-speed);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--pumpkin-orange);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: all var(--transition-speed);
}

.cta-button:hover {
    background-color: #d96a2c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-button::after {
    display: none !important;
}

.menu-checkbox {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 2100;
}

.mobile-menu-toggle .bar {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--ink-blue);
    transition: transform var(--transition-speed);
}

.mobile-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: var(--ink-blue);
    z-index: 2000;
    transition: top 0.3s ease;
    padding: 2rem;
    opacity: 0;
}

#menu-toggle:checked ~ .mobile-menu {
    top: var(--header-height);
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu ul li {
    margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
    color: white;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.mobile-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--pumpkin-orange);
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
}

.mobile-menu ul li a:hover {
    color: var(--pumpkin-orange);
}

.mobile-menu ul li a:hover::after {
    width: 100%;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(59, 59, 88, 0.7), rgba(59, 59, 88, 0.7)), url('./img/Y8qdgj.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
    animation: hero-bg 20s infinite alternate;
}

@keyframes hero-bg {
    0% { background-position: center; }
    100% { background-position: bottom; }
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeIn 1.5s ease-out;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intro Section */
.intro {
    background-color: white;
    padding: 6rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.intro-image:hover img {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits {
    background-color: var(--light-base);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform var(--transition-speed);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: var(--ink-blue);
    margin-bottom: 1rem;
}

.benefit-icon {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--moss-green);
}

/* Services Section */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.5rem;
}

.service-content .price {
    color: var(--pumpkin-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-base);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    opacity: 0.1;
    color: var(--moss-green);
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-name {
    font-weight: 600;
}

.author-title {
    font-size: 0.9rem;
    color: #777;
}

/* FAQ Section */
.faq {
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: var(--light-base);
    padding: 0;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-question a {
    padding: 1.5rem;
    display: block;
    width: 100%;
    color: var(--ink-blue);
    text-decoration: none;
    position: relative;
}

.faq-question a::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--moss-green);
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.faq-question.active a::after {
    content: '-';
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all var(--transition-speed);
    visibility: hidden;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    border-top: 1px solid #e0e0e0;
}

/* Contact Form Section */
.contact {
    background-color: var(--light-base);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.form-input:focus {
    outline: none;
    border-color: var(--moss-green);
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%233B3B58' 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 15px center;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.custom-checkbox {
    position: relative;
    margin-right: 10px;
    margin-top: 3px;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    display: block;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all var(--transition-speed);
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--moss-green);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--moss-green);
    border-color: var(--moss-green);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-size: 0.9rem;
}

.checkbox-label a {
    color: var(--pumpkin-orange);
    text-decoration: underline;
}

.btn-form {
    width: 100%;
    padding: 15px;
}

/* Team Section */
.team {
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-member {
    background-color: var(--light-base);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-speed);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.team-info h3 {
    margin-bottom: 0.5rem;
    color: var(--ink-blue);
    font-size: 1.5rem;
}

.team-title {
    color: var(--moss-green);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--ink-blue);
    color: white;
    padding: 4rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-about h3,
.footer-contact h3,
.footer-links h3 {
    color: white;
    position: relative;
    margin-bottom: 1.5rem;
}

.footer-about h3::after,
.footer-contact h3::after,
.footer-links h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--pumpkin-orange);
    margin-top: 0.8rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.7rem;
}

.footer-links ul li a,
.footer-contact a {
    color: #ccc;
    transition: color var(--transition-speed);
}

.footer-links ul li a:hover,
.footer-contact a:hover {
    color: var(--pumpkin-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #ccc;
}

/* Cookie Consent Popup */
.cookie-notice {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--ink-blue);
    color: white;
    padding: 1.5rem 0;
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-notice.active {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    margin: 0;
    margin-right: 1rem;
    flex: 1;
    min-width: 200px;
}

.cookie-content a {
    color: var(--moss-green);
    text-decoration: underline;
}

#accept-cookies {
    background-color: var(--pumpkin-orange);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

#accept-cookies:hover {
    background-color: #d96a2c;
}

/* Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.policy-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.policy-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--moss-green);
    margin: 1rem auto 0;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h2 {
    color: var(--ink-blue);
    margin-bottom: 1rem;
}

/* Thank You Page */
.thank-you {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--cream-blush);
    padding: 2rem;
}

.thank-you-content {
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--moss-green);
    margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .benefits-grid,
    .services-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .intro-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .benefits-grid,
    .services-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .policy-content {
        padding: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-content p {
        margin-bottom: 1rem;
    }
    
    .cookie-link {
        margin-bottom: 1rem;
    }
}
