/* General Resets & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6a0572; /* Deep Plum */
    --secondary-color: #e0b0ff; /* Light Lavender */
    --accent-color: #ffc107; /* Amber/Gold for highlights */
    --text-dark: #333333;
    --text-light: #f4f4f4;
    --bg-light: #ffffff;
    --bg-dark: #f0f2f5;
    --border-light: #e0e0e0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-speed: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 0.8em;
    line-height: 1.2;
}

.section-title {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
    font-weight: 400;
}

.section-content {
    font-size: 1.1em;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #5a0462; /* Slightly darker primary */
    transform: translateY(-3px);
}

/* Header Navigation */
.header-nav {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.header-nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-nav-menu {
    display: block; /* Visible on desktop */
}

.header-nav-list {
    display: flex;
    gap: 30px;
}

.header-nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05em;
    padding: 5px 0;
    position: relative;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

.header-nav-link:hover::after,
.header-nav-link.active::after {
    width: 100%;
}

.header-nav-toggle {
    display: none; /* Hidden on desktop */
    font-size: 1.8em;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

/* Hero Section */
.section-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('hero_background.jpg') no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    padding: 150px 0;
    display: flex;
    align-items: center;
    min-height: 80vh;
    margin-top: 70px; /* Offset for fixed header */
}

.hero-content {
    max-width: 800px;
}

.hero-headline {
    font-size: 4em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subheadline {
    font-size: 1.6em;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.hero-cta-button {
    font-size: 1.1em;
    padding: 18px 35px;
    border-radius: 8px;
}

/* Section Styling */
section {
    padding: 80px 0;
    overflow: hidden; /* For any potential animations */
}

.section-about {
    background-color: var(--bg-light);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image-wrapper {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: url('about_image.jpg') no-repeat center center/cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content {
    flex: 2;
    min-width: 300px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-content .section-content:not(:last-child) {
    margin-bottom: 15px;
}

.section-services {
    background-color: var(--bg-dark);
}

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

.service-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.service-card .service-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-card .service-description {
    font-size: 1em;
    color: #666;
}

.section-testimonials {
    background: linear-gradient(rgba(106, 5, 114, 0.7), rgba(106, 5, 114, 0.7)), url('testimonial_background.jpg') no-repeat center center/cover;
    color: var(--text-light);
    padding: 100px 0;
}

.section-testimonials .section-title {
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--text-dark);
    position: relative;
    text-align: center;
}

.testimonial-card::before {
    content: "\201C"; /* Left double quotation mark */
    font-family: serif;
    font-size: 5em;
    color: var(--secondary-color);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.7;
    line-height: 0.5;
}

.testimonial-quote {
    font-size: 1.15em;
    font-style: italic;
    margin-bottom: 20px;
    position: relative; /* To bring text above pseudo-element */
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1em;
}

.section-faq {
    background-color: var(--bg-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: var(--bg-dark);
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.15em;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-speed);
}

.faq-question:hover {
    background-color: #e6e8eb;
}

.faq-question::after {
    content: '\002B'; /* Plus sign */
    font-size: 1.5em;
    transition: transform var(--transition-speed);
}

.faq-question.active::after {
    content: '\2212'; /* Minus sign */
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: var(--bg-light);
}

.faq-answer p {
    padding: 15px 0 20px;
    font-size: 1.05em;
    color: #555;
}

.section-contact {
    background-color: var(--bg-dark);
}

.contact-container {
    text-align: center;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.contact-info-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-icon {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-info-text {
    font-size: 1.1em;
    color: #555;
}

.contact-info-text a {
    color: #555;
    font-weight: 500;
}

.contact-info-text a:hover {
    color: var(--primary-color);
}

.contact-social-links {
    margin-top: 40px;
}

.social-icon {
    font-size: 1.8em;
    color: var(--primary-color);
    margin: 0 15px;
    transition: color var(--transition-speed), transform var(--transition-speed);
}

.social-icon:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
}

/* Footer Section */
.section-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center; /* Default for mobile */
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.8em;
    color: var(--text-light);
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.95em;
    color: var(--secondary-color);
}

.footer-nav {
    flex: 1;
    min-width: 150px;
}

.footer-nav-list {
    display: flex;
    justify-content: center; /* Center links on smaller screens */
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav-link {
    color: var(--text-light);
    font-weight: 400;
    font-size: 1em;
    opacity: 0.8;
}

.footer-nav-link:hover {
    color: var(--accent-color);
    opacity: 1;
}

.footer-copyright {
    flex: 1;
    min-width: 200px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}


/* Responsive Design */
@media (max-width: 992px) {
    .section-hero {
        padding: 120px 0;
        min-height: 70vh;
    }
    .hero-headline {
        font-size: 3.2em;
    }
    .hero-subheadline {
        font-size: 1.4em;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-image-wrapper {
        width: 80%;
        max-width: 500px;
        height: 350px;
    }
    .about-content .section-title {
        text-align: center;
    }

    .services-grid,
    .testimonials-grid,
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand, .footer-nav, .footer-copyright {
        margin-bottom: 20px;
    }
    .footer-nav-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-nav-menu {
        display: none; /* Hide menu on smaller screens */
        position: absolute;
        top: 70px; /* Below header */
        left: 0;
        width: 100%;
        background-color: var(--bg-light);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
        flex-direction: column;
        transform: translateY(-100%);
        transition: transform var(--transition-speed) ease-out;
    }

    .header-nav-menu.active {
        display: flex;
        transform: translateY(0);
    }

    .header-nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .header-nav-link {
        font-size: 1.2em;
        padding: 10px 0;
        width: fit-content;
    }

    .header-nav-toggle {
        display: block; /* Show hamburger icon */
    }

    .section-hero {
        padding: 100px 0 80px;
        min-height: 60vh;
        margin-top: 60px;
    }
    .hero-headline {
        font-size: 2.5em;
    }
    .hero-subheadline {
        font-size: 1.2em;
    }
    .hero-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .section-title {
        font-size: 2.2em;
    }
    .section-subtitle {
        font-size: 1.1em;
    }

    .about-image-wrapper {
        height: 300px;
        width: 100%;
    }

    .testimonial-card::before {
        font-size: 4em;
        top: 5px;
        left: 15px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-nav-logo {
        font-size: 1.5em;
    }
    .section-hero {
        padding: 80px 0 60px;
        min-height: 50vh;
    }
    .hero-headline {
        font-size: 2em;
    }
    .hero-subheadline {
        font-size: 1em;
    }

    .section-title {
        font-size: 1.8em;
    }
    .section-subtitle {
        font-size: 1em;
    }
    section {
        padding: 60px 0;
    }
}

/* Animations */
.scroll-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animation.animate {
    opacity: 1;
    transform: translateY(0);
}

.header-nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}