@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blush-pink: #e8b4b8;
    --soft-rose: #d4a5a5;
    --warm-cream: #faf3e0;
    --golden-glow: #d4a574;
    --deep-mauve: #8b6b6b;
    --charcoal: #3d3d3d;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --overlay-dark: rgba(61, 61, 61, 0.85);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--warm-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    position: fixed;
    background: var(--overlay-dark);
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.logo span {
    color: var(--blush-pink);
}

nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-list a {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blush-pink);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--overlay-dark) 0%, rgba(139, 107, 107, 0.8) 100%), url('../pictures/bg.webp') center/cover no-repeat;
    text-align: center;
    padding: 80px 15px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 1rem;
    color: var(--warm-cream);
    margin-bottom: 25px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--soft-rose) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 180, 184, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 180, 184, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--blush-pink);
    border: 2px solid var(--blush-pink);
}

.btn-secondary:hover {
    background: var(--blush-pink);
    color: var(--white);
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--deep-mauve);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--charcoal);
    max-width: 550px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--blush-pink), var(--golden-glow));
    margin: 15px auto;
    border-radius: 2px;
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid var(--blush-pink);
    border-radius: 10px;
    z-index: -1;
}

.about-content h3 {
    font-size: 1.6rem;
    color: var(--deep-mauve);
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.features-list i {
    color: var(--blush-pink);
    font-size: 0.9rem;
}

.services-section {
    background: linear-gradient(180deg, var(--warm-cream) 0%, var(--light-gray) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blush-pink), var(--golden-glow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--soft-rose) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--deep-mauve);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--charcoal);
}

.gallery-section {
    background: var(--white);
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139, 107, 107, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

.testimonials-section {
    background: linear-gradient(135deg, var(--deep-mauve) 0%, var(--charcoal) 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-text {
    font-style: italic;
    color: var(--warm-cream);
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--golden-glow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.author-info span {
    color: var(--blush-pink);
    font-size: 0.75rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--soft-rose) 100%);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-section p {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.cta-section .btn {
    background: var(--white);
    color: var(--deep-mauve);
}

.cta-section .btn:hover {
    background: var(--charcoal);
    color: var(--white);
}

footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--blush-pink);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-col a:hover {
    color: var(--blush-pink);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.policy-links a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.policy-links a:hover {
    color: var(--blush-pink);
}

.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--overlay-dark) 0%, rgba(139, 107, 107, 0.85) 100%), url('../pictures/bg2.webp') center/cover no-repeat;
    text-align: center;
    padding: 100px 15px 40px;
}

.page-hero h1 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--warm-cream);
    font-size: 0.95rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: var(--blush-pink);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

.content-section {
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--golden-glow);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 1.1rem;
    color: var(--deep-mauve);
    margin-bottom: 8px;
}

.product-content p {
    font-size: 0.8rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blush-pink);
    font-family: 'Cormorant Garamond', serif;
}

.product-price span {
    font-size: 0.8rem;
    color: var(--charcoal);
    font-weight: 400;
}

.contact-section {
    background: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-info {
    background: linear-gradient(135deg, var(--deep-mauve) 0%, var(--charcoal) 100%);
    padding: 35px;
    color: var(--white);
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.contact-info > * {
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-info > p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--blush-pink);
    flex-shrink: 0;
}

.contact-item div h4 {
    font-size: 0.85rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-item div p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.contact-form-wrapper {
    padding: 35px;
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    color: var(--deep-mauve);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blush-pink);
    box-shadow: 0 0 0 3px rgba(232, 180, 184, 0.2);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--blush-pink);
}

.checkbox-group label {
    font-size: 0.75rem;
    color: var(--charcoal);
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--blush-pink);
    text-decoration: underline;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 350px;
    border-radius: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.error-page,
.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--light-gray) 100%);
    padding: 40px 15px;
}

.error-content,
.thankyou-content {
    max-width: 500px;
}

.error-icon,
.thankyou-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--soft-rose) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.error-icon i,
.thankyou-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.error-content h1,
.thankyou-content h1 {
    font-size: 2.5rem;
    color: var(--deep-mauve);
    margin-bottom: 10px;
}

.error-content p,
.thankyou-content p {
    color: var(--charcoal);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.policy-section {
    background: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.4rem;
    color: var(--deep-mauve);
    margin: 25px 0 12px;
}

.policy-content h3 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin: 20px 0 10px;
}

.policy-content p {
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-content ul {
    margin: 12px 0 12px 20px;
}

.policy-content li {
    font-size: 0.85rem;
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
}

.policy-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--blush-pink);
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.4s ease;
}

.privacy-popup.show {
    transform: translateY(0);
}

.privacy-popup h4 {
    font-size: 1rem;
    color: var(--deep-mauve);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-popup h4 i {
    color: var(--blush-pink);
}

.privacy-popup p {
    font-size: 0.8rem;
    color: var(--charcoal);
    margin-bottom: 15px;
    line-height: 1.6;
}

.privacy-popup a {
    color: var(--blush-pink);
    text-decoration: underline;
}

.popup-buttons {
    display: flex;
    gap: 10px;
}

.popup-buttons button {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--soft-rose) 100%);
    color: var(--white);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 180, 184, 0.4);
}

.btn-decline {
    background: var(--light-gray);
    color: var(--charcoal);
}

.btn-decline:hover {
    background: var(--charcoal);
    color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
    background: var(--white);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--golden-glow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.team-avatar i {
    font-size: 2rem;
    color: var(--white);
}

.team-card h3 {
    font-size: 1.1rem;
    color: var(--deep-mauve);
    margin-bottom: 5px;
}

.team-card span {
    font-size: 0.8rem;
    color: var(--blush-pink);
    font-weight: 500;
}

.team-card p {
    font-size: 0.8rem;
    color: var(--charcoal);
    margin-top: 10px;
}

.stats-section {
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--soft-rose) 100%);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
}

.process-section {
    background: var(--light-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--blush-pink);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--soft-rose) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.process-step h3 {
    font-size: 1rem;
    color: var(--deep-mauve);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.8rem;
    color: var(--charcoal);
}

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 18px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--deep-mauve);
    font-size: 0.95rem;
}

.faq-question i {
    color: var(--blush-pink);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-top: 12px;
    font-size: 0.85rem;
    color: var(--charcoal);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .products-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--overlay-dark);
        flex-direction: column;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-list a {
        font-size: 1.1rem;
    }
    
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .about-grid,
    .content-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .about-image::before {
        display: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-links {
        justify-content: center;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .products-grid,
    .team-grid,
    .gallery-grid,
    .stats-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .page-hero h1 {
        font-size: 1.6rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .privacy-popup {
        left: 10px;
        right: 10px;
        padding: 15px;
    }
    
    .popup-buttons {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 380px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 60px 10px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
}
