@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4a574;
    --primary-dark: #b8956a;
    --secondary: #8b7355;
    --accent: #e8d5c4;
    --dark: #2c2416;
    --light: #faf8f5;
    --cream: #f5f0e8;
    --text: #4a4035;
    --text-light: #6b5d4d;
    --white: #ffffff;
    --shadow: rgba(44, 36, 22, 0.1);
    --shadow-strong: rgba(44, 36, 22, 0.15);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Quicksand', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-strong);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    max-width: 500px;
    margin: 0 auto 30px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%);
    padding: 15px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    position: fixed;
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 10px 0;
}

header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--primary);
    font-size: 18px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 50%, var(--accent) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, var(--accent) 0%, transparent 70%);
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--shadow-strong);
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge i {
    font-size: 24px;
    color: var(--primary);
}

.hero-badge-text span {
    display: block;
    font-size: 11px;
    color: var(--text-light);
}

.hero-badge-text strong {
    font-size: 16px;
    color: var(--dark);
}

.features {
    padding: 60px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 25px 15px;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.feature-icon i {
    font-size: 20px;
    color: var(--primary-dark);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 12px;
    color: var(--text-light);
}

.about-section {
    padding: 60px 0;
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow);
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 15px;
}

.about-text p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.about-list {
    margin: 20px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 8px;
}

.about-list i {
    color: var(--primary);
    font-size: 14px;
}

.products-section {
    padding: 60px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--accent), var(--cream));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image i {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.6;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 15px;
    text-transform: uppercase;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
}

.price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
}

.testimonials {
    padding: 60px 0;
    background: var(--dark);
    color: var(--white);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .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.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-stars {
    color: var(--primary);
    font-size: 12px;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 13px;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
}

.author-info span {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.author-info small {
    font-size: 11px;
    color: var(--text-light);
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary-dark);
}

.cta-section .btn:hover {
    background: var(--dark);
    color: var(--white);
}

.page-header {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--accent) 100%);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--primary);
}

.content-section {
    padding: 50px 0;
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--dark);
    margin: 25px 0 12px;
}

.content-section h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--dark);
    margin: 20px 0 10px;
}

.content-section p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 12px;
}

.content-section ul {
    margin: 12px 0;
    padding-left: 20px;
}

.content-section ul li {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.contact-section {
    padding: 60px 0;
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 35px;
    color: var(--white);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item-text span {
    display: block;
    font-size: 11px;
    opacity: 0.8;
    margin-bottom: 2px;
}

.contact-item-text p {
    font-size: 13px;
    font-weight: 500;
}

.contact-hours h4 {
    font-size: 14px;
    margin-bottom: 10px;
}

.hours-list {
    font-size: 12px;
}

.hours-list p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    opacity: 0.9;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 13px;
    border: 1px solid var(--accent);
    border-radius: 10px;
    background: var(--light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
}

.form-checkbox input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-checkbox label {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.4;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.map-section {
    padding: 0 0 60px;
    background: var(--light);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo i {
    color: var(--primary);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    color: var(--accent);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 15px;
}

.copyright {
    font-size: 11px;
    color: var(--text-light);
}

.policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.policy-links a {
    font-size: 11px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.policy-links a:hover {
    color: var(--primary);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 30px var(--shadow-strong);
    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-text {
    flex: 1;
}

.cookie-text h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 5px;
}

.cookie-text p {
    font-size: 12px;
    color: var(--text-light);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 12px;
}

.error-page,
.thank-you-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    height: 100vh;
}

.error-content,
.thank-you-content {
    max-width: 450px;
    margin: 0 auto;
}

.error-icon,
.thank-you-icon {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 20px;
}

.error-content h1,
.thank-you-content h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 10px;
}

.error-content h2,
.thank-you-content h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
}

.error-content p,
.thank-you-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-intro {
    padding: 50px 0;
    background: var(--white);
}

.service-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-intro-text h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-intro-text p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-intro-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow);
}

.process-section {
    padding: 50px 0;
    background: var(--cream);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: 12px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin: 0 auto 12px;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 11px;
    color: var(--text-light);
}

.gallery-section {
    padding: 50px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 150px;
    background: linear-gradient(135deg, var(--accent), var(--cream));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item i {
    font-size: 36px;
    color: var(--primary);
    opacity: 0.5;
}

.pricing-section {
    padding: 50px 0;
    background: var(--light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.pricing-card.featured {
    background: var(--dark);
    color: var(--white);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
    color: var(--white);
}

.pricing-card.featured .price span {
    color: var(--accent);
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 10px;
}

.pricing-card .price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 20px;
}

.pricing-features li {
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255,255,255,0.1);
}

.pricing-features i {
    color: var(--primary);
    font-size: 10px;
}

.team-section {
    padding: 50px 0;
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px var(--shadow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 3px;
}

.team-card .role {
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 12px;
    color: var(--text-light);
}

.values-section {
    padding: 50px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    padding: 25px;
    background: var(--light);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: var(--cream);
}

.value-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-light);
}

.stats-section {
    padding: 40px 0;
    background: var(--primary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 12px;
    opacity: 0.9;
}

.faq-section {
    padding: 50px 0;
    background: var(--light);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
}

.faq-question {
    padding: 18px 20px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--cream);
}

.faq-question i {
    font-size: 12px;
    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: 0 20px 18px;
    font-size: 13px;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 34px;
    }
    
    .hero-text p {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .service-intro-content {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .service-intro-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .products-grid,
    .testimonials-grid,
    .pricing-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 260px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 30px var(--shadow-strong);
        padding: 70px 25px 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    nav.active {
        transform: translateX(0);
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    
    nav li {
        width: 100%;
    }
    
    nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--accent);
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .features-grid,
    .products-grid,
    .testimonials-grid,
    .pricing-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    body {
        font-size: 13px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .error-content h1,
    .thank-you-content h1 {
        font-size: 36px;
    }
    
    .stat-item h3 {
        font-size: 24px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 22px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .feature-card,
    .product-info,
    .contact-info,
    .contact-form-wrapper {
        padding: 20px;
    }
}
