* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #1a2332;
  --secondary: #8b6f47;
  --accent: #d4a574;
  --light: #f5f5f5;
  --white: #fff;
  --text: #333;
  --shadow: rgba(0, 0, 0, 0.08);
}
body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 8px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform 0.3s;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}
.nav {
  display: flex;
  gap: 20px;
}
.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}
.nav a:hover {
  color: var(--secondary);
}
.menu-toggle {
  display: none;
  background: 0 0;
  border: none;
  font-size: 20px;
  color: var(--primary);
  cursor: pointer;
}
.hero {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-left {
  animation: slideInLeft 0.8s ease-out;
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-tag {
  display: inline-block;
  background: rgba(212, 165, 116, 0.2);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}
.hero-heading {
  font-family: 'Sora', sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 30px;
  color: var(--white);
}
.word {
  display: inline-block;
  margin-right: 20px;
}
.word.highlight {
  color: var(--accent);
  position: relative;
}
.hero-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-main {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 16px 45px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.35);
}
.cta-main:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 165, 116, 0.45);
}
.hero-info {
  display: flex;
  gap: 35px;
}
.info-item {
  display: flex;
  flex-direction: column;
}
.info-item strong {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.info-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}
.hero-right {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-img-box {
  position: relative;
}
.img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
.img-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}
.img-frame:hover img {
  transform: scale(1.05);
}
.hero-badge {
  position: absolute;
  background: var(--white);
  padding: 15px 22px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.badge-1 {
  top: 8%;
  left: -40px;
  animation-delay: 0s;
}
.badge-2 {
  bottom: 12%;
  right: -40px;
  animation-delay: 1.5s;
}
.badge-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(212, 165, 116, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
}
.subpage-hero {
  background: var(--primary);
  padding: 0;
}
.subpage-hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-text {
  padding: 60px 40px 60px 60px;
  color: var(--white);
}
.hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-text h1 {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.btn-outline {
  display: inline-block;
  background: 0 0;
  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-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-secondary {
  display: inline-block;
  background: 0 0;
  color: var(--primary);
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--primary);
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-light {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-light:hover {
  background: var(--light);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 30px;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-item strong {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.stat-item span {
  font-size: 13px;
  opacity: 0.9;
}
.hero-image {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-label {
  display: inline-block;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-label.center {
  display: block;
  text-align: center;
}
.text-center {
  text-align: center;
}
.intro-text {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #666;
}
.services-grid {
  padding: 70px 0;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: #666;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.service-card {
  background: var(--light);
  padding: 30px 25px;
  border-radius: 8px;
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow);
}
.service-number {
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
  opacity: 0.3;
}
.service-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary);
}
.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.about-section {
  padding: 70px 0;
  background: var(--light);
}
.about-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px var(--shadow);
}
.about-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.about-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.7;
}
.about-features {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.feature-item h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.fabric-section {
  padding: 70px 0;
  background: var(--white);
}
.fabric-section h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.fabric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.fabric-card {
  background: var(--light);
  padding: 28px;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}
.fabric-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.fabric-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.process-section {
  padding: 70px 0;
  background: var(--light);
}
.process-section h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 50px;
}
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
}
.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}
.timeline-dot {
  position: absolute;
  left: 11px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-content h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.testimonial-section {
  padding: 70px 0;
  background: var(--white);
}
.testimonial-section h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 50px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.testimonial-card {
  background: var(--light);
  padding: 30px;
  border-radius: 8px;
}
.testimonial-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author strong {
  display: block;
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
}
.testimonial-author span {
  font-size: 13px;
  color: #666;
}
.final-cta {
  padding: 70px 0;
  background: var(--primary);
  text-align: center;
}
.final-cta-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}
.final-cta-content p {
  font-size: 17px;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 30px;
}
.content-section {
  padding: 70px 0;
  background: var(--white);
}
.content-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 30px;
}
.content-col h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}
.content-col p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}
.features-section {
  padding: 70px 0;
  background: var(--light);
}
.features-section h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 50px;
}
.feature-box {
  background: var(--white);
  padding: 28px;
  border-radius: 8px;
  transition: all 0.3s;
}
.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px var(--shadow);
}
.feature-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.feature-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.info-section {
  padding: 70px 0;
  background: var(--white);
}
.info-section h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 50px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.info-card {
  background: var(--light);
  padding: 30px;
  border-radius: 8px;
}
.info-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
.info-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.products-section {
  padding: 70px 0;
  background: var(--light);
}
.products-section h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 12px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}
.product-card {
  background: var(--white);
  padding: 35px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px var(--shadow);
}
.product-card.featured {
  border: 2px solid var(--accent);
}
.product-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}
.product-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}
.product-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.product-price {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
}
.design-options {
  padding: 70px 0;
  background: var(--white);
}
.design-options h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 50px;
}
.option-card {
  background: var(--light);
  padding: 28px;
  border-radius: 8px;
}
.option-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
.option-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}
.contact-section {
  padding: 70px 0;
  background: var(--white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info h2 {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}
.contact-info > p {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-item {
  display: flex;
  gap: 15px;
}
.contact-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}
.contact-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.contact-form-wrapper {
  background: var(--light);
  padding: 40px;
  border-radius: 8px;
}
.contact-form h3 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 25px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--secondary);
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checkbox-group input[type='checkbox'] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}
.checkbox-group label {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
.map-section {
  padding: 70px 0;
  background: var(--light);
}
.map-section h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}
.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px var(--shadow);
}
.error-section,
.thankyou-section {
  padding: 80px 0;
  min-height: calc(100vh - 50px);
  display: flex;
  align-items: center;
  background: var(--white);
}
.error-content,
.thankyou-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.thankyou-icon {
  font-size: 80px;
  color: var(--accent);
  margin-bottom: 25px;
}
.error-content h1,
.thankyou-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.error-content p,
.thankyou-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}
.error-actions,
.thankyou-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}
.error-number {
  font-family: 'Sora', sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1;
}
.policy-section {
  padding: 70px 0;
  background: var(--white);
}
.policy-content {
  max-width: 900px;
  margin: 0 auto;
}
.policy-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.policy-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 35px;
}
.policy-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 35px;
  margin-bottom: 15px;
}
.policy-content h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 25px;
  margin-bottom: 12px;
}
.policy-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.7;
}
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 30px 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.footer-links a:hover {
  opacity: 1;
}
.footer-copy {
  font-size: 13px;
  opacity: 0.75;
}
.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -4px 12px var(--shadow);
  display: none;
}
.privacy-popup.show {
  display: block;
}
.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.privacy-content p {
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}
.privacy-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
.privacy-actions a {
  color: var(--white);
  text-decoration: underline;
  font-size: 13px;
}
.privacy-actions button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s;
}
.privacy-actions button:hover {
  background: var(--secondary);
}
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 30px;
  }
  .hero-heading {
    font-size: 56px;
  }
  .hero-badge {
    position: static;
    margin-bottom: 15px;
  }
  .hero-grid,
  .subpage-hero .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-text {
    padding: 50px 30px;
  }
  .hero-image {
    height: 400px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .fabric-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px var(--shadow);
  }
  .nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding: 60px 0;
  }
  .hero-container {
    padding: 0 20px;
  }
  .hero-heading {
    font-size: 42px;
  }
  .hero-text {
    font-size: 16px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-info {
    gap: 25px;
  }
  .badge-1,
  .badge-2 {
    position: static;
    margin-top: 15px;
  }
  .hero-text h1 {
    font-size: 32px;
  }
  .hero-text p {
    font-size: 15px;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-item strong {
    font-size: 24px;
  }
  .about-content h2,
  .design-options h2,
  .fabric-section h2,
  .features-section h2,
  .final-cta-content h2,
  .info-section h2,
  .process-section h2,
  .products-section h2,
  .section-header h2,
  .testimonial-section h2 {
    font-size: 28px;
  }
  .content-columns,
  .fabric-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .info-grid,
  .products-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .timeline::before {
    left: 15px;
  }
  .timeline-item {
    padding-left: 50px;
  }
  .timeline-dot {
    left: 6px;
  }
  .error-actions,
  .thankyou-actions {
    flex-direction: column;
  }
  .error-number {
    font-size: 80px;
  }
  .policy-content h1 {
    font-size: 30px;
  }
  .contact-form-wrapper {
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .logo {
    font-size: 16px;
  }
  .hero {
    padding: 50px 0;
  }
  .hero-heading {
    font-size: 32px;
  }
  .hero-text {
    font-size: 15px;
  }
  .cta-main {
    width: 100%;
    text-align: center;
  }
  .hero-info {
    flex-direction: column;
    gap: 15px;
  }
  .info-item {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
  .info-item strong {
    font-size: 28px;
  }
  .hero-text {
    padding: 40px 20px;
  }
  .hero-text h1 {
    font-size: 26px;
  }
  .hero-text p {
    font-size: 14px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-light,
  .btn-outline,
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
    text-align: center;
  }
  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }
  .stat-item {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
  .section-header h2 {
    font-size: 24px;
  }
  .fabric-card,
  .feature-box,
  .info-card,
  .option-card,
  .service-card {
    padding: 20px;
  }
  .product-card {
    padding: 25px;
  }
  .product-price {
    font-size: 28px;
  }
  .contact-form-wrapper {
    padding: 25px;
  }
  .form-group input,
  .form-group textarea {
    padding: 12px;
  }
  .privacy-content {
    flex-direction: column;
    text-align: center;
  }
  .privacy-actions {
    flex-direction: column;
    width: 100%;
  }
  .privacy-actions button {
    width: 100%;
  }
}
@media (max-width: 360px) {
  .hero-heading {
    font-size: 28px;
  }
  .hero-text h1 {
    font-size: 22px;
  }
  .section-header h2 {
    font-size: 20px;
  }
  .service-number {
    font-size: 32px;
  }
}
