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

:root {
  --primary: #2d5016;
  --secondary: #6b8e23;
  --accent: #d4a574;
  --dark: #1a1a1a;
  --light: #fafafa;
  --white: #ffffff;
  --gray: #666666;
  --border: #e5e5e5;
}

body {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.2rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 15px 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px 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;
  flex-wrap: wrap;
}

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

.privacy-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.privacy-actions a {
  color: var(--accent);
  font-size: 14px;
}

.privacy-actions button {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.header {
  background: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 999;
}

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

.logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

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

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

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.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-modern {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0.05;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 3.2rem;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-hero {
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
}

.btn-hero:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45,80,22,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary);
  display: inline-block;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 1.8rem;
  color: var(--primary);
  font-family: 'Sora', sans-serif;
}

.stat span {
  font-size: 13px;
  color: var(--gray);
}

.hero-visual {
  position: relative;
}

.hero-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transform: rotate(2deg);
}

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

.expertise {
  padding: 80px 0;
}

.section-head {
  margin-bottom: 50px;
}

.section-head.center {
  text-align: center;
}

.label {
  display: inline-block;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-head h2 {
  color: var(--dark);
  max-width: 600px;
}

.section-head.center h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-head p {
  color: var(--gray);
  margin-top: 10px;
}

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

.expertise-card {
  background: var(--light);
  padding: 35px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

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

.expertise-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.card-link {
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
}

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

.showcase {
  padding: 80px 0;
  background: var(--white);
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-image img {
  border-radius: 12px;
  width: 100%;
}

.showcase-text p {
  color: var(--gray);
  margin-bottom: 15px;
}

.check-list {
  list-style: none;
  margin: 25px 0;
}

.check-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--dark);
  font-size: 14px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 16px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.products-featured {
  padding: 80px 0;
  background: var(--light);
}

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

.product-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.product-item:nth-child(2) .product-placeholder {
  background-image: url(../furniture_assets/product-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.product-item:nth-child(3) .product-placeholder {
  background-image: url(../furniture_assets/product-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.product-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

.product-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.product-info p {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Sora', sans-serif;
}

.btn-small {
  background: var(--accent);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
}

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

.process-timeline {
  padding: 80px 0;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 80px;
  width: 2px;
  height: calc(100% - 40px);
  background: var(--border);
}

.timeline-marker {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  flex-shrink: 0;
}

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

.timeline-content p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.testimonials {
  padding: 80px 0;
  background: var(--light);
}

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

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.testimonial-card p {
  color: var(--dark);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--dark);
  font-size: 15px;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: var(--gray);
  font-size: 13px;
}

.why-us {
  padding: 80px 0;
}

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

.feature-box {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

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

.feature-box p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

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

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 1.05rem;
  opacity: 0.95;
}

.cta-text {
  width: 60%;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.cta-contact span {
  font-size: 13px;
  opacity: 0.9;
}

.phone-link {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

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

.page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.content-section {
  padding: 80px 0;
}

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

.content-text p {
  margin-bottom: 15px;
  color: var(--gray);
  line-height: 1.7;
}

.content-image img {
  border-radius: 12px;
  width: 100%;
}

.services-detail {
  padding: 80px 0;
  background: var(--light);
}

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

.detail-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 12px;
}

.detail-card h3 {
  color: var(--dark);
  margin-bottom: 10px;
}

.detail-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.materials {
  padding: 80px 0;
}

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

.material-item {
  background: var(--light);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.material-item h3 {
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 1.05rem;
}

.material-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.contact-section {
  padding: 80px 0;
}

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

.contact-info h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 35px;
  line-height: 1.7;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-item h3 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--primary);
}

.info-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

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

.contact-form h3 {
  color: var(--primary);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray);
}

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

.contact-form button {
  width: 100%;
}

.map-section {
  padding: 80px 0;
  background: var(--light);
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thankyou-section,
.error-section {
  padding: 100px 0;
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: center;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-content h1 {
  color: var(--primary);
  margin-bottom: 20px;
}

.thankyou-content p {
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 35px;
  flex-wrap: wrap;
}

.error-content h1 {
  font-size: 6rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.error-content h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.error-content p {
  color: var(--gray);
  margin-bottom: 30px;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--primary);
  display: inline-block;
}

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

.policy-page {
  padding: 80px 0;
}

.policy-page h1 {
  color: var(--primary);
  margin-bottom: 15px;
}

.policy-page .last-updated {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 35px;
}

.policy-page h2 {
  color: var(--primary);
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.policy-page h3 {
  color: var(--secondary);
  margin-top: 25px;
  margin-bottom: 12px;
}

.policy-page p {
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

.policy-page ul {
  margin-left: 25px;
  margin-bottom: 15px;
}

.policy-page li {
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 30px 0;
  margin-top: auto;
}

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  font-size: 13px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  font-size: 13px;
  opacity: 0.75;
}

@media (max-width: 968px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-grid,
  .showcase-content,
  .content-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .expertise-grid,
  .detail-grid,
  .materials-list {
    grid-template-columns: 1fr;
  }

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

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

  .cta-actions {
    align-items: center;
  }

  .cta-contact {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--border);
  }

  .nav.active {
    max-height: 300px;
  }

  .nav a {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
  }

  .hero-modern {
    padding: 60px 0 50px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

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

  .hero-btns a {
    text-align: center;
  }

  .products-grid,
  .testimonials-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline-marker {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .timeline-item:not(:last-child)::before {
    left: 29px;
    top: 60px;
  }
}

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

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-stats {
    gap: 25px;
  }

  .stat strong {
    font-size: 1.5rem;
  }

  .expertise,
  .showcase,
  .products-featured,
  .process-timeline,
  .testimonials,
  .why-us,
  .final-cta,
  .content-section,
  .services-detail,
  .materials,
  .contact-section,
  .map-section {
    padding: 50px 0;
  }

  .section-head {
    margin-bottom: 35px;
  }

  .expertise-card,
  .detail-card {
    padding: 25px 20px;
  }

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

  .error-content h1 {
    font-size: 4rem;
  }
}
