:root {
    --color-primary: #8B4513;
    --color-primary-dark: #6F3810;
    --color-secondary: #DEA76A;
    --color-tertiary: #6B8E23;
    --color-text: #333333;
    --color-background: #FDF5E6;
    --color-white: #FFFFFF;
    --font-primary: 'DM Serif Display', serif;
    --font-fallback: 'Inter', sans-serif;
    --transition-base: 0.3s ease-out;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-fallback);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

ul {
    list-style: none;
}

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

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

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-fallback);
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-background);
    border-color: transparent;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-background);
    z-index: 1000;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-soft);
}

.header.scrolled {
    padding: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: block;
}

.logo-svg {
    height: 50px;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.phone-icon {
    display: none;
}

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

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-primary);
}

.header-ctas {
    display: flex;
    gap: 12px;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-background);
    z-index: 999;
    transition: left var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-overlay.active {
    left: 0;
}

.mobile-nav-content {
    text-align: center;
    padding: 40px;
}

.mobile-nav-list {
    margin-bottom: 40px;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-primary);
    font-size: 32px;
    color: var(--color-text);
    padding: 15px 0;
    transition: color var(--transition-base);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-primary);
}

.mobile-nav-ctas {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-desktop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-bg.parallax {
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: var(--color-background);
}

.hero-content h1 {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 36px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.about-intro {
    padding: 100px 20px;
    background-color: var(--color-background);
    position: relative;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B4513' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.about-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-intro-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-primary);
    margin-bottom: 24px;
}

.about-intro-content p {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 32px;
    line-height: 1.8;
}

.featured-products {
    padding: 100px 20px;
    background-color: var(--color-white);
}

.featured-products h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-primary);
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--color-background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
    display: block;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.product-card-image {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
}

.product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-content {
    padding: 24px;
}

.product-card-content h3 {
    font-size: 22px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.product-card-content p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.6;
}

.how-it-works {
    padding: 100px 20px;
    background-color: var(--color-background);
}

.how-it-works h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-primary);
    margin-bottom: 60px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-background);
    transition: all var(--transition-base);
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.process-step h3 {
    font-size: 22px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.process-step p {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.7;
}

.testimonials {
    padding: 100px 20px;
    background-color: var(--color-white);
}

.testimonials h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-primary);
    margin-bottom: 50px;
}

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

.testimonial-track {
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 20px;
    animation: fadeIn 0.5s ease-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
    font-family: var(--font-primary);
    font-size: clamp(18px, 3vw, 26px);
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    font-family: var(--font-fallback);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    font-style: normal;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    opacity: 0.5;
}

.testimonial-dot.active,
.testimonial-dot:hover {
    opacity: 1;
    background-color: var(--color-primary);
    transform: scale(1.2);
}

.cta-section {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-desktop.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: -1;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-background);
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-desktop.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: -1;
}

.page-hero-content {
    max-width: 800px;
    text-align: center;
    color: var(--color-background);
}

.page-hero-content h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero-content p {
    font-size: clamp(16px, 2vw, 18px);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.mission-values {
    padding: 100px 20px;
    background-color: var(--color-background);
}

.mission-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.mission-content h2 {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--color-primary);
    margin-bottom: 24px;
}

.mission-statement {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-background);
}

.value-text h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.value-text p {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

.why-choose-us {
    padding: 100px 20px;
    background-color: var(--color-white);
}

.why-choose-us h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-primary);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-block {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--color-background);
    border-radius: 12px;
    transition: all var(--transition-base);
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-background);
    transition: all var(--transition-base);
}

.feature-block:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-block h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.feature-block p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
}

.team-section {
    padding: 100px 20px;
    background-color: var(--color-background);
}

.team-section h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-primary);
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.team-image {
    background-color: var(--color-secondary);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background-color: var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.team-content {
    padding: 30px;
    text-align: center;
}

.team-content h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.team-title {
    font-size: 14px;
    color: var(--color-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
}

.product-categories {
    padding: 100px 20px;
    background-color: var(--color-white);
}

.product-categories h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-primary);
    margin-bottom: 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
    display: block;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.category-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

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

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    color: var(--color-background);
}

.category-content h3 {
    font-size: 22px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.product-hero {
    padding: 140px 20px 80px;
    background-color: var(--color-background);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.breadcrumb {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--color-primary);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.gallery-main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
}

.thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    background: none;
    padding: 0;
}

.thumb.active,
.thumb:hover {
    border-color: var(--color-primary);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h1 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--color-primary);
    margin-bottom: 20px;
}

.product-description {
    font-size: 17px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-features {
    margin-bottom: 32px;
}

.product-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--color-text);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-tertiary);
    font-weight: bold;
}

.product-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.product-specs {
    padding: 100px 20px;
    background-color: var(--color-white);
}

.product-specs h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-primary);
    margin-bottom: 60px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.specs-section {
    background-color: var(--color-background);
    padding: 30px;
    border-radius: 12px;
}

.specs-section h3 {
    font-size: 22px;
    color: var(--color-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-secondary);
}

.specs-list {
    display: grid;
    gap: 12px;
}

.specs-list dt {
    font-weight: 600;
    color: var(--color-text);
    font-size: 14px;
}

.specs-list dd {
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 8px;
}

.kit-includes {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--color-background);
    border-radius: 12px;
}

.kit-includes h3 {
    font-size: 22px;
    color: var(--color-primary);
    margin-bottom: 24px;
    text-align: center;
}

.includes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.includes-list li {
    position: relative;
    padding-left: 32px;
    font-size: 16px;
    color: var(--color-text);
}

.includes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-tertiary);
    font-weight: bold;
    font-size: 18px;
}

.customization-options {
    padding: 100px 20px;
    background-color: var(--color-background);
}

.customization-options h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--color-primary);
    margin-bottom: 60px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.option-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.option-card h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-secondary);
}

.option-card ul {
    display: grid;
    gap: 12px;
}

.option-card li {
    font-size: 15px;
    color: var(--color-text);
    position: relative;
    padding-left: 20px;
}

.option-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-size: 20px;
    line-height: 1;
}

.contact-section {
    padding: 100px 20px;
    background-color: var(--color-background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--color-primary);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-fallback);
    font-size: 16px;
    transition: all var(--transition-base);
    background-color: var(--color-white);
}

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

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

.form-success {
    display: none;
    padding: 16px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    color: #155724;
    font-size: 14px;
    text-align: center;
}

.form-success.show {
    display: block;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

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

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-background);
}

.contact-text h3 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact-text a,
.contact-text p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.6;
}

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

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.map-placeholder {
    background-color: var(--color-secondary);
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.map-placeholder p {
    margin-top: 12px;
    font-weight: 500;
}

.footer {
    background-color: var(--color-text);
    color: var(--color-background);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.footer-logo svg {
    height: 50px;
    width: auto;
}

.footer-tagline {
    font-size: 15px;
    margin-top: 16px;
    opacity: 0.9;
    font-style: italic;
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity var(--transition-base);
}

.footer-contact-item:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.footer-col h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-background);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
    opacity: 0.9;
    transition: all var(--transition-base);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--color-secondary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-icons a:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 20px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

@media (max-width: 1024px) {
    .mission-values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .phone-icon {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .hero {
        min-height: 80vh;
        padding: 100px 20px 60px;
    }
    
    .hero-bg.parallax {
        background-attachment: scroll;
    }
    
    .about-intro,
    .featured-products,
    .how-it-works,
    .testimonials,
    .cta-section,
    .mission-values,
    .why-choose-us,
    .team-section,
    .product-categories,
    .product-hero,
    .product-specs,
    .customization-options,
    .contact-section {
        padding: 60px 20px;
    }
    
    .page-hero {
        min-height: 40vh;
        padding: 100px 20px 60px;
    }
    
    .product-grid,
    .process-timeline,
    .features-grid,
    .team-grid,
    .categories-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .product-cta {
        flex-direction: column;
    }
    
    .product-cta .btn-primary,
    .product-cta .btn-secondary {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .trust-badges {
        align-items: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gallery-thumbs {
        justify-content: center;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .kit-includes {
        padding: 30px 20px;
    }
    
    .includes-list {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .hero-bg.parallax {
        background-attachment: scroll;
    }
}
