@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6B61;
    --primary-dark: #6B4F47;
    --secondary: #D4A574;
    --accent: #E8D5C4;
    --bg-light: #FAF7F5;
    --bg-dark: #2C2421;
    --text-dark: #3D3330;
    --text-light: #6B5B54;
    --white: #FFFFFF;
    --shadow: 0 2px 12px rgba(139, 107, 97, 0.15);
    --shadow-lg: 0 8px 32px rgba(139, 107, 97, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section {
    padding: 50px 0;
}

.section-title {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto 30px;
}

.text-center {
    text-align: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-wrapper {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    color: var(--bg-dark);
    font-size: 16px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 30px 30px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 15px;
    color: var(--accent);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--secondary);
    color: var(--bg-dark);
    padding: 14px 18px;
    border-radius: 6px;
    text-align: center;
    box-shadow: var(--shadow);
}

.hero-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    display: block;
}

.hero-badge .label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-light);
    padding: 28px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-icon i {
    font-size: 22px;
    color: var(--white);
}

.service-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-section {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-overlay {
    position: absolute;
    top: 20px;
    right: -6px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.about-overlay i {
    font-size: 20px;
    margin-bottom: 6px;
}

.about-overlay span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--primary);
    font-size: 14px;
}

.about-feature span {
    font-size: 13px;
    font-weight: 500;
}

.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 36, 33, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 14px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.testimonials-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .section-subtitle {
    color: var(--accent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-stars {
    color: var(--secondary);
    margin-bottom: 12px;
}

.testimonial-stars i {
    font-size: 12px;
}

.testimonial-text {
    font-size: 13px;
    color: var(--accent);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 14px;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 11px;
}

.cta-section {
    background: var(--accent);
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    background: var(--bg-dark);
    color: var(--accent);
    padding: 30px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 24px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 12px;
    line-height: 1.6;
    max-width: 260px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 12px;
    color: var(--accent);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--secondary);
    font-size: 12px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 11px;
}

.footer-bottom .policy-links {
    display: flex;
    gap: 16px;
}

.footer-bottom .policy-links a {
    font-size: 11px;
    color: var(--accent);
}

.footer-bottom .policy-links a:hover {
    color: var(--white);
}

.page-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    padding: 100px 0 50px;
    text-align: center;
}

.page-hero h1 {
    font-size: 34px;
    color: var(--white);
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 14px;
    color: var(--accent);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.breadcrumb a,
.breadcrumb span {
    font-size: 12px;
    color: var(--accent);
}

.breadcrumb a:hover {
    color: var(--white);
}

.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 180px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image i {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.5;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 18px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.price-note {
    font-size: 10px;
    color: var(--text-light);
}

.contact-section {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    padding: 30px;
    border-radius: 8px;
    color: var(--white);
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-info > p {
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    gap: 14px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    color: var(--secondary);
    font-size: 14px;
}

.contact-item-text h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item-text p {
    font-size: 12px;
    color: var(--accent);
    line-height: 1.5;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.contact-form-wrapper > p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 107, 97, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.map-section {
    height: 300px;
    background: var(--accent);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.policy-section {
    background: var(--white);
    padding: 50px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.policy-content h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.policy-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-content ul {
    margin-bottom: 14px;
    padding-left: 20px;
}

.policy-content li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.6;
    list-style: disc;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--accent) 100%);
    padding-top: 60px;
}

.error-content {
    text-align: center;
    max-width: 420px;
    padding: 30px;
}

.error-icon {
    font-size: 80px;
    color: var(--primary);
    margin-bottom: 20px;
}

.error-content h1 {
    font-size: 72px;
    color: var(--primary);
    margin-bottom: 10px;
}

.error-content h2 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.error-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--accent) 100%);
    padding-top: 60px;
}

.thankyou-content {
    text-align: center;
    max-width: 480px;
    padding: 30px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.thankyou-icon i {
    font-size: 36px;
    color: var(--white);
}

.thankyou-content h1 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.thankyou-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 16px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--bg-dark);
}

.cookie-decline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.process-section {
    background: var(--bg-light);
}

.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: 28px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--accent);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.process-step h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
}

.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.team-avatar i {
    font-size: 32px;
    color: var(--white);
}

.team-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.values-section {
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: var(--shadow);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 20px;
    color: var(--white);
}

.value-content h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.value-content p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--accent);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
}

.faq-question i {
    color: var(--primary);
    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-bottom: 16px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.intro-section {
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.intro-text h2 {
    font-size: 26px;
    margin-bottom: 14px;
}

.intro-text p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.intro-sidebar {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

.intro-sidebar h3 {
    font-size: 16px;
    margin-bottom: 14px;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark);
    padding: 10px 14px;
    background: var(--white);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.quick-links i {
    font-size: 12px;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 34px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid,
    .testimonials-grid,
    .products-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .contact-wrapper,
    .intro-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: right 0.3s ease;
        padding: 20px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 15px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .services-grid,
    .testimonials-grid,
    .products-grid,
    .team-grid,
    .process-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .page-hero {
        padding: 80px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .error-content h1 {
        font-size: 56px;
    }
    
    .thankyou-content h1 {
        font-size: 26px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-text p {
        font-size: 13px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .section {
        padding: 32px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .error-content h1 {
        font-size: 48px;
    }
    
    .thankyou-content h1 {
        font-size: 22px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .hero-text h1 {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 11px;
    }
}
