@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-purple: #6A2C70;
    --primary-purple-dark: #4a1f50;
    --accent-green: #8FBC8F;
    --accent-green-dark: #6fa86f;
    --light-beige: #F5F5DC;
    --dark-text: #333333;
    --white: #FFFFFF;
    --gray-light: #f7f7f7;
    --gray-medium: #e0e0e0;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* ===== HEADER STYLES ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    transition: all var(--transition-medium);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-top {
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

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

.header-top address {
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top .phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.header-top a {
    transition: opacity var(--transition-fast);
}

.header-top a:hover {
    opacity: 0.8;
}

.header-main {
    padding: 15px 0;
    transition: padding var(--transition-medium);
}

.header.scrolled .header-main {
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-purple);
    letter-spacing: 0.5px;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-desktop a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-text);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-purple);
    transition: width var(--transition-fast);
}

.nav-desktop a:hover {
    color: var(--primary-purple);
}

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

.nav-desktop .dropdown {
    position: relative;
}

.nav-desktop .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    margin-top: 15px;
}

.nav-desktop .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    margin-top: 0;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 25px;
    font-size: 0.9rem;
    color: var(--dark-text);
}

.dropdown-menu a:hover {
    background-color: var(--light-beige);
    color: var(--primary-purple);
}

.dropdown-menu a::after {
    display: none;
}

/* ===== BUTTON STYLES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background-color: var(--primary-purple-dark);
    border-color: var(--primary-purple-dark);
    transform: scale(1.05);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-green);
    border-color: var(--accent-green);
}

.btn-secondary:hover {
    background-color: var(--accent-green);
    color: var(--white);
    transform: scale(1.05);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.btn-outline:hover {
    background-color: var(--primary-purple);
    color: var(--white);
    transform: scale(1.05);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    margin: 5px 0;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--white);
    z-index: 2000;
    padding: 80px 30px 30px;
    transition: right var(--transition-medium);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark-text);
}

.mobile-nav {
    list-style: none;
}

.mobile-nav > li {
    border-bottom: 1px solid var(--gray-medium);
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-text);
}

.mobile-nav .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav .dropdown-toggle::after {
    content: '+';
    font-size: 1.3rem;
    transition: transform var(--transition-fast);
}

.mobile-nav .dropdown-toggle.active::after {
    content: '-';
}

.mobile-nav .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
    list-style: none;
    padding-left: 20px;
}

.mobile-nav .dropdown-menu.open {
    max-height: 300px;
}

.mobile-nav .dropdown-menu a {
    padding: 12px 0;
    font-size: 1rem;
    color: var(--primary-purple);
}

.mobile-menu .btn-primary {
    width: 100%;
    margin-top: 20px;
}

.mobile-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-medium);
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-beige);
    color: var(--primary-purple);
    transition: all var(--transition-fast);
}

.mobile-social a:hover {
    background-color: var(--primary-purple);
    color: var(--white);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 44, 112, 0.7) 0%, rgba(143, 188, 143, 0.4) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.5s ease 0.3s forwards;
}

.hero-content .phone-number {
    font-size: 1.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.5s ease 0.5s forwards;
}

.hero-content .phone-number:hover {
    text-decoration: underline;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.5s ease 0.7s forwards;
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.5s ease 0.9s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PAGE HERO (Non-Home) ===== */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s ease 0.2s forwards;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s ease 0.4s forwards;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SECTION STYLES ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-green));
    margin: 20px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.8s ease;
}

.section-divider.animate {
    transform: scaleX(1);
}

/* ===== ABOUT / WELCOME SECTION ===== */
.welcome-section {
    background-color: var(--light-beige);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.welcome-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-medium);
}

.welcome-image:hover img {
    transform: scale(1.05);
}

.welcome-content h2 {
    font-size: 2.2rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.welcome-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.welcome-content .btn {
    margin-top: 10px;
}

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

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

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
    cursor: pointer;
}

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

.service-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 25px;
}

.service-card-content h3 {
    font-size: 1.4rem;
    color: var(--primary-purple);
    margin-bottom: 12px;
}

.service-card-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-card-content .cta-secondary {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap var(--transition-fast);
}

.service-card-content .cta-secondary:hover {
    gap: 10px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.testimonials-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.testimonials-content {
    position: relative;
    z-index: 1;
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: 0 20px;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--primary-purple);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-purple);
    font-size: 1.1rem;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
    background-color: transparent;
    color: var(--primary-purple);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: var(--primary-purple);
    color: var(--white);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--gray-medium);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background-color: var(--primary-purple);
    transform: scale(1.2);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    background-color: var(--light-beige);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-choose-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-choose-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.why-choose-content h3 {
    font-size: 1.3rem;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.why-choose-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.why-choose-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
}

.cta-section .btn:hover {
    background-color: var(--accent-green-dark);
    border-color: var(--accent-green-dark);
}

/* ===== SERVICE CATEGORIES (Services Page) ===== */
.service-categories {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.category-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
    border: 1px solid var(--gray-light);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-green);
}

.category-card h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-card h3 span {
    font-size: 1.8rem;
}

.category-card ul {
    list-style: none;
}

.category-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

.category-card li:last-child {
    border-bottom: none;
}

.category-card a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-text);
    transition: color var(--transition-fast);
}

.category-card a:hover {
    color: var(--primary-purple);
}

.category-card a::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
    color: var(--accent-green);
}

.category-card a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ===== FEATURED SERVICES (Services Page) ===== */
.featured-services {
    background-color: var(--light-beige);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
}

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

.featured-card-image {
    height: 220px;
    overflow: hidden;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.featured-card:hover .featured-card-image img {
    transform: scale(1.1);
}

.featured-card-content {
    padding: 25px;
}

.featured-card-content h3 {
    font-size: 1.4rem;
    color: var(--primary-purple);
    margin-bottom: 12px;
}

.featured-card-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: var(--white);
    padding: 60px 0;
}

.service-detail-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-detail-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.7;
}

.service-detail-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

/* Process Timeline */
.process-section {
    background-color: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: var(--accent-green);
}

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

.process-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--primary-purple);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--light-beige);
}

.benefits-list {
    max-width: 700px;
    margin: 0 auto;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 1.05rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list .check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    font-family: 'Playfair Display', serif;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-purple);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-answer p {
    padding-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s ease 0.2s forwards;
}

.about-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s ease 0.4s forwards;
}

/* Bio Section */
.bio-section {
    background-color: var(--white);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.bio-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.bio-content h2 {
    font-size: 2.2rem;
    color: var(--primary-purple);
    margin-bottom: 25px;
}

.bio-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Values Section */
.values-section {
    background-color: var(--light-beige);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.value-item h3 {
    font-size: 1.2rem;
    color: var(--primary-purple);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s ease 0.2s forwards;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s ease 0.4s forwards;
}

/* Contact Info Section */
.contact-info-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details {
    padding: 40px;
    background-color: var(--light-beige);
    border-radius: 15px;
}

.contact-details h2 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.contact-item p, .contact-item a {
    font-size: 0.95rem;
    color: #666;
}

.contact-item a:hover {
    color: var(--primary-purple);
}

.hours-list {
    list-style: none;
    margin-top: 15px;
}

.hours-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #666;
    display: flex;
    justify-content: space-between;
}

.hours-list li span {
    font-weight: 600;
    color: var(--dark-text);
}

/* Contact Form */
.contact-form-section {
    background-color: var(--white);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-light);
}

.contact-form-container h2 {
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.form-group label span {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-medium);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all var(--transition-fast);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(106, 44, 112, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group .error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #e74c3c;
}

.form-group.error .error-message {
    display: block;
}

.contact-form-container .btn {
    width: 100%;
    margin-top: 10px;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    background-color: var(--gray-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1a1a2e;
    color: var(--white);
    padding: 60px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.3rem;
}

.footer-brand p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact-info a {
    color: #ccc;
    transition: color var(--transition-fast);
}

.footer-contact-info a:hover {
    color: var(--accent-green);
}

.footer-column h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ccc;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.footer-column a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 25px;
}

.footer-bottom .footer-links a {
    color: #888;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-bottom .footer-links a:hover {
    color: var(--white);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-top .address {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-hero .container {
        grid-template-columns: 1fr;
    }
    
    .service-detail-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-detail-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .phone-number {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
    
    .welcome-content h2,
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
}
