.main {
  padding-top: 80px;
}



.design-consultation {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
}

.design-consultation::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="rgba(212,163,115,0.1)" stroke-width="2"/></svg>') repeat;
  background-size: 100px 100px;
  animation: slidePattern 30s infinite linear;
}

@keyframes slidePattern {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100px);
  }
}

.design-consultation__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.design-consultation__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.design-consultation__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.design-consultation__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.design-consultation__description {
  margin-bottom: 2rem;
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.8;
}

.design-consultation__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.consultation-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 5px 20px rgba(46, 74, 98, 0.1);
  background: white;
  transition: all 0.3s ease;
}

.consultation-feature:hover {
  box-shadow: 0 15px 40px rgba(46, 74, 98, 0.15);
  transform: translateX(10px);
}

.consultation-feature i {
  margin-top: 0.25rem;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.consultation-feature h3 {
  margin-bottom: 0.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.consultation-feature p {
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.design-consultation__cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.consultation-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  border-radius: 50px;
  padding: 1rem 2rem;
  box-shadow: 0 5px 20px rgba(212, 163, 115, 0.3);
  color: white;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transition: all 0.3s ease;
}

.consultation-btn:hover {
  box-shadow: 0 15px 40px rgba(212, 163, 115, 0.4);
  transform: translateY(-3px);
}

.consultation-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.consultation-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
}

.consultation-info i {
  width: 16px;
  color: var(--secondary-color);
}

.design-consultation__image {
  position: relative;
}

.design-consultation__image img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.2);
}

.consultation-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 5px 20px rgba(166, 61, 64, 0.3);
  color: white;
  font-weight: 600;
  background: var(--accent-color);
}



.measurement-installation {
  position: relative;
  padding: 5rem 0;
  background: white;
}

.measurement-installation__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.measurement-installation__header {
  margin-bottom: 4rem;
  text-align: center;
}

.measurement-installation__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.measurement-installation__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.measurement-installation__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.measurement-installation__process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.installation-step {
  position: relative;
  border-radius: 20px;
  padding: 2rem;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
  transition: all 0.3s ease;
}

.installation-step:hover {
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.15);
  transform: translateY(-10px);
}

.installation-step__number {
  position: absolute;
  top: -10px;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(212, 163, 115, 0.3);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.installation-step__content {
  padding-top: 1rem;
}

.installation-step__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(46, 74, 98, 0.1);
  background: white;
  transition: all 0.3s ease;
}

.installation-step:hover .installation-step__icon {
  transform: scale(1.1) rotate(5deg);
}

.installation-step__icon i {
  color: var(--main-color);
  font-size: 2rem;
}

.installation-step__title {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.4rem;
}

.installation-step__description {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.installation-step__image {
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(46, 74, 98, 0.1);
  overflow: hidden;
}

.installation-step__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.installation-step:hover .installation-step__image img {
  transform: scale(1.05);
}

.measurement-installation__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.installation-info-card {
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  text-align: center;
  background: white;
  transition: all 0.3s ease;
}

.installation-info-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.15);
  transform: translateY(-5px);
}

.installation-info-card i {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-size: 3rem;
}

.installation-info-card h4 {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.installation-info-card p {
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}



.custom-tailoring {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary-bg-color) 0%, var(--bg-color) 100%);
}

.custom-tailoring__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.custom-tailoring__header {
  margin-bottom: 4rem;
  text-align: center;
}

.custom-tailoring__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.custom-tailoring__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.custom-tailoring__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.custom-tailoring__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 4rem;
}

.tailoring-showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tailoring-showcase__main {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.2);
  overflow: hidden;
}

.tailoring-showcase__main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tailoring-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(46, 74, 98, 0.8), rgba(166, 61, 64, 0.8));
  transition: all 0.3s ease;
}

.tailoring-showcase__main:hover .tailoring-overlay {
  opacity: 1;
}

.tailoring-showcase__main:hover img {
  transform: scale(1.05);
}

.tailoring-overlay__content {
  padding: 2rem;
  color: white;
}

.tailoring-overlay__content h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.5rem;
}

.tailoring-overlay__content p {
  opacity: 0.9;
  font-size: 1.1rem;
}

.tailoring-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.fabric-sample {
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(46, 74, 98, 0.1);
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.fabric-sample:hover {
  box-shadow: 0 15px 40px rgba(46, 74, 98, 0.15);
  transform: translateY(-5px);
}

.fabric-sample img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.fabric-sample h4 {
  margin: 0.75rem 0.75rem 0.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1rem;
}

.fabric-sample p {
  margin: 0 0.75rem 0.75rem;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
}

.tailoring-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.customization-options h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.customization-options h3 i {
  color: var(--secondary-color);
}

.option-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.option-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 5px 20px rgba(46, 74, 98, 0.1);
  background: white;
  transition: all 0.3s ease;
}

.option-item:hover {
  box-shadow: 0 15px 40px rgba(46, 74, 98, 0.15);
  transform: translateX(10px);
}

.option-item i {
  margin-top: 0.25rem;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.option-item span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--main-color);
  font-weight: 600;
}

.option-item p {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
}

.tailoring-pricing h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.tailoring-pricing h3 i {
  color: var(--secondary-color);
}

.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-tier {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(46, 74, 98, 0.1);
  background: white;
  transition: all 0.3s ease;
}

.pricing-tier:hover {
  box-shadow: 0 15px 40px rgba(46, 74, 98, 0.15);
  transform: translateY(-5px);
}

.pricing-tier.featured {
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(212, 163, 115, 0.2);
}

.pricing-tier h4 {
  margin-bottom: 0.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.pricing-tier .price {
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing-tier ul {
  padding: 0;
  list-style: none;
}

.pricing-tier li {
  margin-bottom: 0.5rem;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
}



.delivery-service {
  position: relative;
  padding: 5rem 0;
  background: white;
}

.delivery-service__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.delivery-service__header {
  margin-bottom: 4rem;
  text-align: center;
}

.delivery-service__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.delivery-service__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.delivery-service__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.delivery-service__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.delivery-zones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.delivery-zone {
  position: relative;
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
  transition: all 0.3s ease;
}

.delivery-zone:hover {
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.15);
  transform: translateY(-10px);
}

.delivery-zone::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.delivery-zone__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  transition: all 0.3s ease;
}

.delivery-zone:hover .delivery-zone__icon {
  transform: scale(1.1) rotate(5deg);
}

.delivery-zone__icon i {
  color: white;
  font-size: 2rem;
}

.delivery-zone__title {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.4rem;
}

.delivery-zone__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.delivery-zone__details p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
}

.delivery-zone__details i {
  width: 16px;
  color: var(--secondary-color);
}

.delivery-zone__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.delivery-zone__areas span {
  border-radius: 20px;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 10px rgba(46, 74, 98, 0.1);
  color: var(--main-color);
  font-weight: 500;
  font-size: 0.85rem;
  background: white;
}

.delivery-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.delivery-feature {
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  text-align: center;
  background: white;
  transition: all 0.3s ease;
}

.delivery-feature:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.15);
  transform: translateY(-5px);
}

.delivery-feature i {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-size: 2.5rem;
}

.delivery-feature h4 {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.delivery-feature p {
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}



.product-care {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
}

.product-care__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-care__header {
  margin-bottom: 4rem;
  text-align: center;
}

.product-care__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.product-care__title i {
  color: var(--accent-color);
  font-size: 2rem;
}

.product-care__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.product-care__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.care-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.care-category {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.care-category:hover {
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.15);
  transform: translateY(-5px);
}

.care-category__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  color: white;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.care-category__header i {
  font-size: 1.5rem;
}

.care-category__header h3 {
  font-weight: 600;
  font-size: 1.4rem;
}

.care-category__content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  padding: 2rem;
}

.care-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.care-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 12px;
  padding: 1rem;
  background: var(--bg-color);
  transition: all 0.3s ease;
}

.care-step:hover {
  box-shadow: 0 5px 20px rgba(46, 74, 98, 0.1);
  transform: translateX(10px);
}

.care-step__icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.care-step__icon i {
  color: white;
  font-size: 1.2rem;
}

.care-step__content h4 {
  margin-bottom: 0.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.care-step__content p {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
}

.care-image {
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(46, 74, 98, 0.1);
  overflow: hidden;
}

.care-image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.care-tips {
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  background: white;
}

.care-tips h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.care-tips h3 i {
  color: var(--secondary-color);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.tip-card {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  background: var(--bg-color);
  transition: all 0.3s ease;
}

.tip-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  transform: translateY(-5px);
}

.tip-card i {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-size: 2rem;
}

.tip-card h4 {
  margin-bottom: 0.75rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.tip-card p {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
}



.warranty-service {
  position: relative;
  padding: 5rem 0;
  background: white;
}

.warranty-service__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.warranty-service__header {
  margin-bottom: 4rem;
  text-align: center;
}

.warranty-service__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2.5rem;
}

.warranty-service__title i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.warranty-service__subtitle {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.2rem;
}

.warranty-service__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.warranty-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.warranty-card {
  position: relative;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
  transition: all 0.3s ease;
}

.warranty-card:hover {
  box-shadow: 0 20px 60px rgba(46, 74, 98, 0.15);
  transform: translateY(-10px);
}

.warranty-card.premium {
  border-color: var(--secondary-color);
  box-shadow: 0 15px 40px rgba(212, 163, 115, 0.2);
}

.warranty-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.warranty-card__header {
  margin-bottom: 2rem;
  text-align: center;
}

.warranty-card__header i {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-size: 3rem;
}

.warranty-card__header h3 {
  margin-bottom: 0.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.warranty-period {
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 2rem;
}

.warranty-card__coverage h4 {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.warranty-card__coverage ul {
  padding: 0;
  list-style: none;
}

.warranty-card__coverage li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  color: var(--text-color);
}

.warranty-card__coverage li i {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.warranty-card__note {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(46, 74, 98, 0.1);
  padding-top: 1.5rem;
}

.warranty-card__note p {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
}

.service-support {
  border-radius: 20px;
  padding: 2rem;
  background: var(--bg-color);
}

.service-support h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.service-support h3 i {
  color: var(--secondary-color);
}

.support-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.support-feature {
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(46, 74, 98, 0.1);
  text-align: center;
  background: white;
  transition: all 0.3s ease;
}

.support-feature:hover {
  box-shadow: 0 15px 40px rgba(46, 74, 98, 0.15);
  transform: translateY(-5px);
}

.support-feature i {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-size: 2rem;
}

.support-feature h4 {
  margin-bottom: 1rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.2rem;
}

.support-feature p {
  margin-bottom: 1rem;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
}

.support-contact {
  display: inline-block;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  color: white;
  font-weight: 500;
  font-size: 0.85rem;
  background: var(--secondary-color);
}

.warranty-process {
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  background: white;
}

.warranty-process h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.warranty-process h3 i {
  color: var(--secondary-color);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 12px;
  padding: 1.5rem;
  background: var(--bg-color);
  transition: all 0.3s ease;
}

.process-step:hover {
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.1);
  transform: translateY(-5px);
}

.process-step__number {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.process-step__content h4 {
  margin-bottom: 0.5rem;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.process-step__content p {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
}




@media (max-width: 1024px) {
  .design-consultation__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .design-consultation__image {
    order: -1;
  }

  .custom-tailoring__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tailoring-showcase__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .care-categories {
    grid-template-columns: 1fr;
  }

  .care-category__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .care-image img {
    width: 100%;
    height: 200px;
  }
}


@media (max-width: 768px) {

  .design-consultation,
  .measurement-installation,
  .custom-tailoring,
  .delivery-service,
  .product-care,
  .warranty-service {
    padding: 3rem 0;
  }

  .design-consultation__container,
  .measurement-installation__container,
  .custom-tailoring__container,
  .delivery-service__container,
  .product-care__container,
  .warranty-service__container {
    padding: 0 15px;
  }

  .design-consultation__title,
  .measurement-installation__title,
  .custom-tailoring__title,
  .delivery-service__title,
  .product-care__title,
  .warranty-service__title {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 2rem;
  }

  .design-consultation__title i,
  .measurement-installation__title i,
  .custom-tailoring__title i,
  .delivery-service__title i,
  .product-care__title i,
  .warranty-service__title i {
    font-size: 1.5rem;
  }

  .consultation-btn {
    justify-content: center;
  }

  .measurement-installation__process {
    grid-template-columns: 1fr;
  }

  .measurement-installation__info {
    grid-template-columns: 1fr;
  }

  .tailoring-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-tiers {
    gap: 1rem;
  }

  .delivery-zones {
    grid-template-columns: 1fr;
  }

  .delivery-features {
    grid-template-columns: 1fr;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .warranty-overview {
    grid-template-columns: 1fr;
  }

  .support-features {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 480px) {

  .design-consultation,
  .measurement-installation,
  .custom-tailoring,
  .delivery-service,
  .product-care,
  .warranty-service {
    padding: 2rem 0;
  }

  .design-consultation__title,
  .measurement-installation__title,
  .custom-tailoring__title,
  .delivery-service__title,
  .product-care__title,
  .warranty-service__title {
    font-size: 1.8rem;
  }

  .design-consultation__image img {
    height: 300px;
  }

  .tailoring-showcase__main img {
    height: 300px;
  }

  .tailoring-showcase__grid {
    grid-template-columns: 1fr;
  }

  .installation-step {
    padding: 1.5rem;
  }

  .delivery-zone {
    padding: 1.5rem;
  }

  .care-category__content {
    padding: 1.5rem;
  }

  .warranty-card {
    padding: 1.5rem;
  }
}


.consultation-feature:nth-child(1) {
  animation-delay: 0.1s;
}

.consultation-feature:nth-child(2) {
  animation-delay: 0.2s;
}

.consultation-feature:nth-child(3) {
  animation-delay: 0.3s;
}

.installation-step:nth-child(1) {
  animation-delay: 0.1s;
}

.installation-step:nth-child(2) {
  animation-delay: 0.2s;
}

.installation-step:nth-child(3) {
  animation-delay: 0.3s;
}

.installation-step:nth-child(4) {
  animation-delay: 0.4s;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.design-consultation,
.measurement-installation,
.custom-tailoring,
.delivery-service,
.product-care,
.warranty-service {
  animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 425px) {
  .consultation-feature {
    flex-direction: column;
  }
}