@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sage: #9CAF88;
    --sage-light: #B8C9A9;
    --sage-dark: #7A8F6A;
    --cream: #F5F1EB;
    --cream-light: #FDFCFA;
    --cream-dark: #E8E2D9;
    --terracotta: #C4785A;
    --terracotta-light: #D4917A;
    --terracotta-dark: #A65F42;
    --text-dark: #3D3D3D;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --shadow: rgba(61, 61, 61, 0.08);
    --shadow-strong: rgba(61, 61, 61, 0.15);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    min-width: 320px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    max-width: 550px;
    margin: 0 auto 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--terracotta);
    border: 1.5px solid var(--terracotta);
}

.btn-secondary:hover {
    background: var(--terracotta);
    color: var(--white);
}

.btn-sage {
    background: var(--sage);
    color: var(--white);
}

.btn-sage:hover {
    background: var(--sage-dark);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-inner {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: 0 2px 15px var(--shadow);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    max-width: 1140px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-desktop a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--terracotta);
}

.header-cta {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream-light);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--terracotta);
}

.mobile-nav .btn {
    margin-top: 25px;
}

.hero {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, var(--sage-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
    opacity: 0.3;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 15px;
    box-shadow: 0 2px 10px var(--shadow);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-title span {
    color: var(--terracotta);
}

.hero-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--shadow-strong);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--sage);
    border-radius: 20px;
    z-index: -1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--cream-dark);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--terracotta);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow);
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: 15px;
    background: var(--terracotta);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow-strong);
}

.about-badge-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.about-badge-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--cream);
    border-radius: 8px;
}

.about-feature i {
    width: 32px;
    height: 32px;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.85rem;
    font-weight: 500;
}

.services-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--terracotta));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.3rem;
}

.service-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-card .btn {
    padding: 8px 18px;
    font-size: 0.75rem;
}

.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card {
    background: var(--cream-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.product-image {
    position: relative;
    height: 180px;
    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-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--terracotta);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.product-content {
    padding: 18px;
}

.product-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-content p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--terracotta);
}

.product-price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
}

.product-btn {
    width: 36px;
    height: 36px;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: var(--sage-dark);
    transform: scale(1.1);
}

.gallery-section {
    background: var(--cream);
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.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(61, 61, 61, 0.7) 0%, transparent 50%);
    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(--sage-light) 0%, var(--sage) 100%);
    position: relative;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: var(--white);
}

.testimonials-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 280px;
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    scroll-snap-align: start;
    box-shadow: 0 10px 30px var(--shadow-strong);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--sage);
}

.testimonial-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.testimonial-stars {
    color: var(--terracotta);
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.cta-section {
    background: var(--white);
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--terracotta) 100%);
    border-radius: 20px;
    padding: 40px 25px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-box h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
}

.cta-box p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-box .btn {
    background: var(--white);
    color: var(--terracotta);
    position: relative;
}

.cta-box .btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

footer {
    background: var(--text-dark);
    color: var(--cream);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--cream-dark);
    margin-bottom: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--cream-dark);
    margin-bottom: 6px;
}

.footer-contact-item i {
    color: var(--sage-light);
    width: 18px;
}

.footer-links h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--cream-dark);
}

.footer-links a:hover {
    color: var(--sage-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--cream-dark);
}

.footer-copyright span {
    color: var(--terracotta-light);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.footer-legal a {
    font-size: 0.7rem;
    color: var(--cream-dark);
}

.footer-legal a:hover {
    color: var(--sage-light);
}

.page-header {
    padding-top: 100px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sage-light) 100%);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--terracotta);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--cream-dark);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--terracotta);
}

.faq-question i {
    font-size: 0.8rem;
    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-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 18px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-section {
    background: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    border-radius: 20px;
    padding: 30px 20px;
    color: var(--white);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-info-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: 0.9rem;
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-info-item p {
    font-size: 0.8rem;
    opacity: 0.85;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--sage);
    background: var(--white);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--sage);
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox label {
    font-size: 0.75rem;
    color: var(--text-light);
    cursor: pointer;
}

.form-checkbox a {
    color: var(--terracotta);
    text-decoration: underline;
}

.contact-form .btn {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
}

.map-section {
    background: var(--white);
    padding-bottom: 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.thank-you-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sage-light) 100%);
    text-align: center;
    padding: 100px 15px 60px;
}

.thank-you-content {
    max-width: 450px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.thank-you-content h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.thank-you-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.error-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--terracotta-light) 100%);
    text-align: center;
    padding: 100px 15px 60px;
}

.error-content {
    max-width: 450px;
    margin: 0 auto;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 10px;
}

.error-content h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.error-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.policy-section {
    background: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.policy-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-content li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    list-style: disc;
}

.policy-date {
    font-size: 0.8rem;
    color: var(--sage);
    margin-bottom: 20px;
}

.blinds-intro {
    background: var(--white);
}

.blinds-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.blinds-intro-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.blinds-intro-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blinds-types {
    background: var(--cream);
}

.blinds-types-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.blind-type-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.blind-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.blind-type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--terracotta) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.4rem;
}

.blind-type-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.blind-type-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.blinds-benefits {
    background: var(--white);
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--cream);
    border-radius: 10px;
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.privacy-popup {
    position: fixed;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 40px var(--shadow-strong);
    z-index: 9999;
    display: none;
}

.privacy-popup.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.privacy-popup-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.privacy-popup-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.privacy-popup-text p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.privacy-popup-text a {
    color: var(--terracotta);
    text-decoration: underline;
}

.privacy-popup-buttons {
    display: flex;
    gap: 10px;
}

.privacy-popup-buttons .btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 0.8rem;
}

.features-section {
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    background: var(--white);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--sage);
    margin-bottom: 10px;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.75rem;
    color: var(--text-light);
}

@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blinds-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .nav-desktop {
        display: block;
    }
    
    .header-cta {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-stats {
        justify-content: flex-start;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .privacy-popup {
        left: auto;
        max-width: 400px;
    }
    
    .privacy-popup-content {
        flex-direction: column;
    }
    
    .blinds-intro-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .blinds-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .testimonial-card {
        min-width: 320px;
    }
    
    .map-container iframe {
        height: 400px;
    }
}

@media (max-width: 359px) {
    html {
        font-size: 13px;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
