

:root {
    /* Color Palette */
    --primary: #F9F7F3;      /* Light cream */
    --secondary: #E6E0D4;    /* Soft beige */
    --accent: #F6C16E;       /* Golden yellow */
    --highlight: #9DBF9E;    /* Sage green */
    --text: #2C2C2C;         /* Charcoal */
    --text-light: #6F6F6F;   /* Lighter text */
    --white: #FFFFFF;
    
    /* Shadows and Effects */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.12);
    --glass-effect: rgba(255, 255, 255, 0.25);
    --overlay: rgba(0, 0, 0, 0.6);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 2rem;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Libre Baskerville', serif;
    --line-height: 1.6;
}

/* ---- BASE STYLES ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    background-color: var(--primary);
    line-height: var(--line-height);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--highlight);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

ul, ol {
    list-style-position: inside;
}

section {
    padding: var(--space-xl) 0;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-size: 0.95rem;
}

.primary-btn {
    background-color: var(--accent);
    color: var(--text);
    box-shadow: var(--shadow-md);
}

.primary-btn:hover {
    background-color: #E5B05D;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text);
}

.secondary-btn {
    background-color: var(--highlight);
    color: var(--white);
}

.secondary-btn:hover {
    background-color: #8CAF8D;
    transform: translateY(-2px);
    color: var(--white);
}

.outline {
    background: transparent;
    border: 1px solid currentColor;
}

/* ---- HEADER ---- */
.site-header {
    position: absolute;
    width: 100%;
    z-index: 100;
    padding: var(--space-md) 0;
    transition: all var(--transition-medium);
    background-color: rgba(249, 247, 243, 0.8);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    color: var(--text);
    font-weight: 600;
    margin: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: var(--text);
    border-radius: 10px;
    transition: all var(--transition-medium);
}

.main-navigation {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: baseline;
}

.nav-list a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition-medium);
}

.nav-list a:hover {
    color: var(--accent);
}

.nav-list a:hover::after {
    width: 100%;
}

/* Header becomes compact on scroll */
.header-scrolled {
    background-color: rgba(249, 247, 243, 0.95);
    box-shadow: var(--shadow-md);
    padding: var(--space-sm) 0;
}

/* ---- HERO SECTION ---- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 6rem 0;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    color: var(--text);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image img {
    max-width: 90%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition-medium);
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* ---- SECTION HEADERS ---- */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.section-header h2 {
    color: var(--text);
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-md);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: var(--radius-full);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ---- BENEFITS SECTION ---- */
.benefits {
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.benefit-card {
    background-color: var(--primary);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: var(--space-lg);
}

.benefit-card h3 {
    margin-bottom: var(--space-md);
}

/* ---- SERVICES SECTION ---- */
.services {
    background-color: var(--primary);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.service-content {
    padding: var(--space-lg);
}

.price {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

/* ---- PROCESS SECTION ---- */
.process {
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--highlight);
    opacity: 0.1;
    border-radius: 0 0 0 100%;
    z-index: 1;
}

.process-timeline {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: var(--space-xl);
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 25px;
    width: 2px;
    height: calc(100% - 30px);
    background-color: var(--accent);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.step-content {
    padding-left: var(--space-lg);
    flex-grow: 1;
}

.step-content h3 {
    margin-bottom: var(--space-sm);
}

/* ---- TESTIMONIALS SECTION ---- */
.testimonials {
    background-color: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.testimonial {
    background-color: var(--primary);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: var(--space-lg);
    font-family: var(--font-secondary);
    font-style: italic;
}

.testimonial-content p {
    position: relative;
    padding: 0 var(--space-md);
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--accent);
    position: absolute;
}

.testimonial-content p::before {
    left: 0;
    top: 0;
}

.testimonial-content p::after {
    right: 0;
    bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    margin-right: var(--space-md);
}

.author-info h4 {
    margin-bottom: 0.25rem;
}

.author-info p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ---- CONTACT SECTION ---- */
.contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--highlight);
    opacity: 0.1;
    border-radius: 0 100% 0 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-form-container {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--secondary);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
}

.form-group.checkbox input {
    width: auto;
    margin-right: var(--space-sm);
    margin-top: 0.25rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.info-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.info-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.info-card h3 {
    margin-bottom: var(--space-md);
}

.map-container {
    margin-top: var(--space-md);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    margin-bottom: var(--space-sm);
    display: flex;
    justify-content: space-between;
}

.hours-list li:last-child {
    margin-bottom: 0;
}

/* ---- FOOTER ---- */
.site-footer {
    background-color: var(--text);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo h3 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-legal h4,
.footer-social h4 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-xs);
}

.footer-links h4::after,
.footer-legal h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: var(--space-sm);
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: var(--space-md);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--accent);
    color: var(--text);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ---- COOKIE CONSENT ---- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: var(--space-md);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    opacity: 0;
    transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.cookie-consent.active {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
}

.cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* ---- RESPONSIVE STYLES ---- */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: var(--space-xl);
        max-width: 100%;
    }

    .hero-image {
        justify-content: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
    .nav-list{
        gap: 10px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .menu-toggle {
        display: flex;
        z-index: 101;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;  /* Position off-screen to the left initially */
        width: 80%;
        height: 100vh;
        background-color: var(--secondary);  /* Corrected variable name */
        box-shadow: var(--shadow-lg);
        padding: 80px var(--space-md) var(--space-md);
        transition: left var(--transition-medium);  /* Corrected transition variable */
        z-index: 100;
    }

    .main-navigation.active {
        left: 0;  /* Slide in from left when active */
    }
    .nav-list {
        flex-direction: column;
        gap: var(--space-lg);
    }

   
 

    .nav-list a {
        display: block;
        font-size: 1.2rem;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer-links h4::after,
    .footer-legal h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .process-step {
        flex-direction: column;
    }

    .step-number {
        margin-bottom: var(--space-md);
    }

    .step-content {
        padding-left: 0;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 420px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.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; }