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

:root {
--primary: #8B4513;
--secondary: #D2691E;
--dark: #2C1810;
--light: #F5F5DC;
--white: #FFFFFF;
--text: #333333;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text);
background: var(--white);
}

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

.header-unique {
background: var(--dark);
padding: 10px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.15);
position: sticky;
top: 0;
z-index: 1000;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 18px;
font-weight: 700;
color: var(--white);
letter-spacing: 0.5px;
}

.nav-menu {
display: flex;
gap: 18px;
}

.nav-menu a {
color: var(--white);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: color 0.3s;
padding: 6px 10px;
border-radius: 4px;
}

.nav-menu a:hover {
color: var(--secondary);
}

.menu-toggle {
display: none;
background: none;
border: none;
color: var(--white);
font-size: 22px;
cursor: pointer;
}

.hero-mega {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
overflow: hidden;
background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}

.hero-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L50 50L0 100" stroke="rgba(255,255,255,0.03)" stroke-width="1"/><path d="M50 0L100 50L50 100" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
0% { transform: translateX(0); }
100% { transform: translateX(100px); }
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 30% 50%, rgba(210,105,30,0.2) 0%, transparent 50%);
}

.hero-content {
position: relative;
z-index: 2;
padding: 60px 0;
}

.hero-text {
max-width: 700px;
}

.hero-label {
display: inline-block;
background: rgba(255,255,255,0.15);
color: var(--white);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 20px;
backdrop-filter: blur(10px);
}

.hero-mega h1 {
font-size: 48px;
color: var(--white);
margin-bottom: 20px;
font-weight: 800;
line-height: 1.2;
}

.hero-mega p {
font-size: 17px;
color: rgba(255,255,255,0.9);
margin-bottom: 30px;
line-height: 1.7;
}

.hero-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
margin-bottom: 50px;
}

.btn-primary {
display: inline-block;
background: var(--secondary);
color: var(--white);
padding: 14px 32px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
transition: all 0.3s;
box-shadow: 0 4px 15px rgba(210,105,30,0.3);
}

.btn-primary:hover {
background: var(--primary);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(210,105,30,0.4);
}

.btn-secondary {
display: inline-block;
background: transparent;
color: var(--white);
padding: 14px 32px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
border: 2px solid var(--white);
transition: all 0.3s;
}

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

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 600px;
}

.stat-item {
text-align: center;
padding: 20px;
background: rgba(255,255,255,0.1);
border-radius: 8px;
backdrop-filter: blur(10px);
}

.stat-number {
display: block;
font-size: 32px;
font-weight: 800;
color: var(--white);
margin-bottom: 5px;
}

.stat-label {
display: block;
font-size: 12px;
color: rgba(255,255,255,0.8);
text-transform: uppercase;
letter-spacing: 1px;
}

section {
padding: 70px 0;
}

.section-header {
text-align: center;
margin-bottom: 50px;
}

.section-label {
display: inline-block;
background: var(--light);
color: var(--primary);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 15px;
}

h2 {
font-size: 36px;
color: var(--dark);
font-weight: 700;
line-height: 1.3;
}

h3 {
font-size: 20px;
margin-bottom: 12px;
color: var(--dark);
font-weight: 600;
}

p {
margin-bottom: 15px;
font-size: 15px;
line-height: 1.7;
color: var(--text);
}

.about {
background: var(--white);
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: start;
}

.about-text p {
margin-bottom: 20px;
}

.about-features {
display: flex;
flex-direction: column;
gap: 20px;
}

.feature-box {
background: var(--light);
padding: 25px;
border-radius: 8px;
border-left: 4px solid var(--primary);
}

.feature-box h3 {
color: var(--primary);
margin-bottom: 10px;
}

.feature-box p {
margin: 0;
font-size: 14px;
}

.services {
background: var(--light);
}

.service-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.service-card {
background: var(--white);
padding: 30px;
border-radius: 8px;
transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card h3 {
color: var(--primary);
margin-bottom: 15px;
}

.showcase {
background: var(--white);
}

.showcase-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.showcase-item {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
transition: transform 0.3s;
}

.showcase-item:hover {
transform: translateY(-5px);
}

.showcase-item img {
width: 100%;
height: auto;
display: block;
}

.showcase-info {
padding: 25px;
background: var(--white);
}

.showcase-info h3 {
color: var(--primary);
margin-bottom: 10px;
}

.showcase-info p {
margin: 0;
font-size: 14px;
color: #666;
}

.process-preview {
background: var(--light);
}

.process-timeline {
max-width: 900px;
margin: 0 auto 40px;
}

.timeline-item {
display: grid;
grid-template-columns: 60px 1fr;
gap: 25px;
margin-bottom: 40px;
}

.timeline-marker {
width: 60px;
height: 60px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 700;
box-shadow: 0 4px 15px rgba(139,69,19,0.3);
}

.timeline-content h3 {
color: var(--primary);
margin-bottom: 10px;
}

.timeline-content p {
margin: 0;
}

.materials {
background: var(--white);
}

.materials-content p {
text-align: center;
max-width: 800px;
margin: 0 auto 40px;
font-size: 16px;
}

.materials-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}

.material-card {
background: var(--light);
padding: 25px;
border-radius: 8px;
text-align: center;
transition: transform 0.3s;
}

.material-card:hover {
transform: translateY(-5px);
}

.material-card h3 {
color: var(--primary);
margin-bottom: 12px;
}

.material-card p {
margin: 0;
font-size: 14px;
}

.testimonials {
background: var(--light);
}

.testimonial-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.testimonial {
background: var(--white);
padding: 30px;
border-radius: 8px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial p {
font-style: italic;
margin-bottom: 20px;
font-size: 15px;
line-height: 1.7;
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 3px;
}

.testimonial-author strong {
color: var(--primary);
font-size: 15px;
}

.testimonial-author span {
font-size: 13px;
color: #666;
}

.why-choose {
background: var(--white);
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.benefit-item {
text-align: center;
padding: 30px;
background: var(--light);
border-radius: 8px;
}

.benefit-item h3 {
color: var(--primary);
margin-bottom: 12px;
}

.benefit-item p {
margin: 0;
font-size: 14px;
}

.faq {
background: var(--light);
}

.faq-list {
max-width: 900px;
margin: 0 auto;
}

.faq-item {
background: var(--white);
padding: 30px;
border-radius: 8px;
margin-bottom: 20px;
}

.faq-item h3 {
color: var(--primary);
margin-bottom: 12px;
font-size: 18px;
}

.faq-item p {
margin: 0;
}

.final-cta {
background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
color: var(--white);
text-align: center;
padding: 80px 0;
}

.cta-content h2 {
color: var(--white);
font-size: 40px;
margin-bottom: 20px;
}

.cta-content p {
color: rgba(255,255,255,0.9);
font-size: 18px;
margin-bottom: 30px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.page-hero {
background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
color: var(--white);
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
font-size: 40px;
margin-bottom: 15px;
font-weight: 700;
}

.page-hero p {
font-size: 17px;
color: rgba(255,255,255,0.9);
}

.process-detailed {
background: var(--white);
}

.process-item {
margin-bottom: 50px;
display: grid;
grid-template-columns: 80px 1fr;
gap: 30px;
}

.process-num {
width: 80px;
height: 80px;
background: var(--primary);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
font-weight: 700;
box-shadow: 0 4px 15px rgba(139,69,19,0.3);
}

.process-content h2 {
text-align: left;
font-size: 28px;
margin-bottom: 15px;
}

.timeline {
background: var(--light);
}

.timeline-list {
list-style: none;
max-width: 800px;
margin: 30px auto;
}

.timeline-list li {
padding: 12px 0 12px 30px;
position: relative;
font-size: 15px;
}

.timeline-list li:before {
content: "";
position: absolute;
left: 0;
top: 18px;
width: 12px;
height: 12px;
background: var(--primary);
border-radius: 50%;
}

.products-main {
background: var(--white);
}

.product-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin: 40px 0;
}

.product-card {
background: var(--light);
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: transform 0.3s;
}

.product-card:hover {
transform: translateY(-5px);
}

.product-card img {
width: 100%;
height: auto;
display: block;
}

.product-card h3 {
padding: 20px 20px 10px;
font-size: 20px;
color: var(--primary);
}

.product-card p {
padding: 0 20px;
font-size: 14px;
color: #666;
}

.price {
display: block;
padding: 15px 20px 20px;
font-size: 22px;
font-weight: 700;
color: var(--primary);
}

.btn-small {
display: inline-block;
background: var(--primary);
color: var(--white);
padding: 10px 24px;
text-decoration: none;
border-radius: 6px;
font-weight: 500;
font-size: 14px;
transition: all 0.3s;
margin: 0 20px 20px;
}

.btn-small:hover {
background: var(--dark);
}

.customization {
background: var(--light);
}

.custom-list {
list-style: none;
max-width: 800px;
margin: 30px auto;
}

.custom-list li {
padding: 12px 0 12px 30px;
position: relative;
font-size: 15px;
}

.custom-list li:before {
content: "";
position: absolute;
left: 0;
top: 18px;
width: 12px;
height: 12px;
background: var(--secondary);
border-radius: 50%;
}

.contact-section {
background: var(--white);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-top: 40px;
}

.contact-info {
background: var(--light);
padding: 35px;
border-radius: 8px;
}

.info-item {
margin-bottom: 25px;
}

.info-item h3 {
font-size: 17px;
margin-bottom: 10px;
color: var(--primary);
}

.info-item p {
font-size: 15px;
margin-bottom: 5px;
}

.contact-form-wrapper {
background: var(--light);
padding: 35px;
border-radius: 8px;
}

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

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

.form-group label {
margin-bottom: 6px;
font-weight: 600;
font-size: 14px;
color: var(--dark);
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 2px solid #ddd;
border-radius: 6px;
font-size: 15px;
font-family: inherit;
transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
}

.checkbox-group label {
display: flex;
align-items: flex-start;
gap: 10px;
font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
margin-top: 4px;
}

.checkbox-group span {
font-size: 14px;
}

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

.map-section {
background: var(--light);
}

.map-wrapper {
margin-top: 40px;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.policy-page {
background: var(--white);
}

.policy-page .container {
max-width: 900px;
}

.policy-page h1 {
font-size: 38px;
margin-bottom: 12px;
color: var(--dark);
}

.update-date {
color: #666;
font-size: 14px;
margin-bottom: 40px;
}

.policy-page h2 {
font-size: 26px;
margin-top: 40px;
margin-bottom: 18px;
text-align: left;
color: var(--primary);
}

.policy-page h3 {
font-size: 20px;
margin-top: 30px;
margin-bottom: 15px;
color: var(--dark);
}

.policy-page ul {
margin-left: 30px;
margin-bottom: 20px;
}

.policy-page li {
margin-bottom: 10px;
font-size: 15px;
}

.thankyou-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
color: var(--white);
text-align: center;
padding: 20px;
}

.thankyou-content,
.error-content {
max-width: 600px;
}

.thankyou-content h1 {
font-size: 48px;
margin-bottom: 25px;
font-weight: 700;
}

.error-content h1 {
font-size: 100px;
margin-bottom: 20px;
font-weight: 800;
}

.error-content h2 {
font-size: 32px;
margin-bottom: 20px;
color: var(--white);
}

.thankyou-content p,
.error-content p {
font-size: 18px;
margin-bottom: 18px;
color: rgba(255,255,255,0.9);
}

footer {
background: var(--dark);
color: var(--white);
padding: 50px 0 25px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-bottom: 35px;
}

.footer-col h4 {
font-size: 17px;
margin-bottom: 18px;
color: var(--white);
}

.footer-col p {
font-size: 14px;
margin-bottom: 10px;
color: rgba(255,255,255,0.8);
}

.footer-col a {
display: block;
color: rgba(255,255,255,0.8);
text-decoration: none;
font-size: 14px;
margin-bottom: 10px;
transition: color 0.3s;
}

.footer-col a:hover {
color: var(--secondary);
}

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 25px;
text-align: center;
}

.footer-bottom p {
font-size: 14px;
color: rgba(255,255,255,0.7);
margin-bottom: 12px;
}

.footer-links {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

.footer-links a {
color: rgba(255,255,255,0.7);
text-decoration: none;
font-size: 13px;
transition: color 0.3s;
}

.footer-links a:hover {
color: var(--secondary);
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: var(--white);
padding: 18px;
z-index: 1000;
display: none;
box-shadow: 0 -2px 15px rgba(0,0,0,0.2);
}

.privacy-popup.show {
display: block;
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}

.privacy-content p {
margin: 0;
font-size: 14px;
}

.privacy-content button {
background: var(--secondary);
color: var(--white);
border: none;
padding: 10px 24px;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
font-weight: 600;
white-space: nowrap;
transition: background 0.3s;
}

.privacy-content button:hover {
background: var(--primary);
}

@media (max-width: 1024px) {
.about-content {
grid-template-columns: 1fr;
gap: 40px;
}

.service-grid {
grid-template-columns: repeat(2, 1fr);
}

.showcase-grid {
grid-template-columns: repeat(2, 1fr);
}

.materials-grid {
grid-template-columns: repeat(2, 1fr);
}

.benefits-grid {
grid-template-columns: repeat(2, 1fr);
}

.product-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.nav-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--dark);
flex-direction: column;
padding: 15px;
gap: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.nav-menu.active {
display: flex;
}

.menu-toggle {
display: block;
}

.hero-mega {
min-height: 70vh;
}

.hero-mega h1 {
font-size: 32px;
}

.hero-mega p {
font-size: 15px;
}

.hero-buttons {
flex-direction: column;
}

.hero-stats {
grid-template-columns: repeat(3, 1fr);
gap: 15px;
}

.stat-item {
padding: 15px;
}

.stat-number {
font-size: 24px;
}

.stat-label {
font-size: 11px;
}

h2 {
font-size: 28px;
}

.service-grid,
.showcase-grid,
.testimonial-grid,
.benefits-grid,
.materials-grid,
.product-grid {
grid-template-columns: 1fr;
}

.contact-wrapper {
grid-template-columns: 1fr;
}

.process-item {
grid-template-columns: 60px 1fr;
gap: 20px;
}

.process-num {
width: 60px;
height: 60px;
font-size: 22px;
}

.timeline-item {
grid-template-columns: 50px 1fr;
gap: 20px;
}

.timeline-marker {
width: 50px;
height: 50px;
font-size: 20px;
}

.footer-content {
grid-template-columns: 1fr;
gap: 30px;
}

.privacy-content {
flex-direction: column;
text-align: center;
}
}

@media (max-width: 480px) {
.logo {
font-size: 15px;
}

.hero-mega {
min-height: 60vh;
}

.hero-content {
padding: 40px 0;
}

.hero-mega h1 {
font-size: 26px;
}

.hero-mega p {
font-size: 14px;
}

.hero-stats {
grid-template-columns: 1fr;
gap: 12px;
}

.btn-primary,
.btn-secondary {
padding: 12px 28px;
font-size: 13px;
width: 100%;
text-align: center;
}

section {
padding: 50px 0;
}

h2 {
font-size: 24px;
}

h3 {
font-size: 18px;
}

p {
font-size: 14px;
}

.service-card,
.testimonial,
.benefit-item {
padding: 25px;
}

.showcase-info {
padding: 20px;
}

.process-item {
grid-template-columns: 50px 1fr;
gap: 15px;
}

.process-num {
width: 50px;
height: 50px;
font-size: 20px;
}

.process-content h2 {
font-size: 22px;
}

.timeline-item {
grid-template-columns: 45px 1fr;
gap: 15px;
}

.timeline-marker {
width: 45px;
height: 45px;
font-size: 18px;
}

.contact-info,
.contact-form-wrapper {
padding: 25px;
}

.page-hero h1 {
font-size: 28px;
}

.policy-page h1 {
font-size: 23px;
}

.policy-page h2 {
font-size: 18px;
}

.cta-content h2 {
font-size: 28px;
}

.cta-content p {
font-size: 16px;
}

.thankyou-content h1 {
font-size: 36px;
}

.error-content h1 {
font-size: 70px;
}

.error-content h2 {
font-size: 24px;
}

footer {
padding: 40px 0 20px;
}
}

@media (max-width: 320px) {
.container {
padding: 0 12px;
}

.logo {
font-size: 14px;
}

.hero-mega h1 {
font-size: 22px;
}

h2 {
font-size: 20px;
}

.btn-primary,
.btn-secondary {
padding: 10px 24px;
font-size: 12px;
}

.service-card,
.testimonial,
.benefit-item {
padding: 20px;
}

.contact-info,
.contact-form-wrapper {
padding: 20px;
}

.stat-number {
font-size: 20px;
}
}
