/* Restored Video Card and Dialog Styles */
.video-card {
  cursor: pointer;
  width: 100%;
  max-width: 700px;
  height: 400px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 4px;
  border: 1px solid rgb(225, 228, 235);
  background: #fff;
}

.video-background {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-thumbnail-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 4px,
    0 10px 30px rgba(58, 64, 145, 0.12);
}

.video-card:hover .video-thumbnail-bg {
  transform: scale(1.05);
}

.video-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0.5) 100%);
  transition: background 0.3s ease;
}

.video-card:hover .video-overlay-bg {
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.6) 100%);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #333;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 3;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-card:hover .video-play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.video-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
  z-index: 2;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      transparent 100%);
}

.video-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.video-description {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.4;
  opacity: 0.95;
}



@media (max-width: 768px) {
  .video-card {
    height: 300px !important;
    max-width: 500px !important;
    border-radius: 12px !important;
  }



  .video-title {
    font-size: 1.1rem !important;
  }

  .video-description {
    font-size: 0.85rem !important;
  }

  .video-play-button {
    width: 60px !important;
    height: 60px !important;
  }

  .video-content-overlay {
    padding: 1rem !important;
  }
}

@media (max-width: 480px) {
  .video-card {
    height: 250px;
    max-width: 400px;
    border-radius: 10px;
  }

  .video-play-button {
    width: 50px;
    height: 50px;
  }

  .video-title {
    font-size: 1rem;
  }

  .video-description {
    font-size: 0.8rem;
  }

  .video-content {
    width: 98%;
    margin: 0.5rem;
    border-radius: 16px;
  }

  .video-play-button {
    width: 60px;
    height: 60px;
  }

  .video-title {
    font-size: 1rem;
  }

  .video-description {
    font-size: 0.85rem;
  }
}

/* About Page Specific Styles */

/* Hero Banner Section - Using blog styles */
.blog-hero-section .container {
  display: flex;
  justify-content: flex-start;
}

.blog-hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.95) 100%);
}

.blog-hero-section .container {
  width: 100%;
}

.blog-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 80% 20%,
      rgba(58, 64, 145, 0.03) 0%,
      transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.blog-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.blog-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.1);
  /* Disable floating animation to remove hover/interactive feel */
  animation: none;
}

/* Ensure no transform is applied on hover for hero background image */
.blog-hero-section:hover .blog-hero-bg-image {
  transform: none;
}

@keyframes heroImageFloat {

  0%,
  100% {
    transform: scale(1.05) translateY(0);
  }

  50% {
    transform: scale(1.08) translateY(-10px);
  }
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.85) 40%,
      rgba(255, 255, 255, 0.6) 70%,
      rgba(255, 255, 255, 0.3) 100%);
  z-index: 2;
  backdrop-filter: blur(1px);
}

.blog-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 4rem 0;
  animation: heroContentFadeIn 1s ease-out 0.3s both;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

@keyframes heroContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-hero-left {
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  flex: 1;
}

.blog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg,
      rgba(58, 64, 145, 0.1),
      rgba(58, 64, 145, 0.05));
  color: var(--wood-primary);
  padding: 0.75rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(58, 64, 145, 0.15);
  backdrop-filter: blur(10px);
  animation: heroBadgeSlideIn 1s ease-out 0.5s both;
  box-shadow: 0 4px 20px rgba(58, 64, 145, 0.1);
  transition: all 0.3s ease;
}

.blog-hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(58, 64, 145, 0.15);
  background: linear-gradient(135deg,
      rgba(58, 64, 145, 0.15),
      rgba(58, 64, 145, 0.08));
}

@keyframes heroBadgeSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.blog-hero-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--wood-primary);
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--foreground);
  line-height: 1.1;
  letter-spacing: -0.02em;
  animation: heroTitleFadeIn 1s ease-out 0.7s both;
}

@keyframes heroTitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-hero-highlight {
  display: block;
  color: var(--wood-primary);
  margin-top: 0.5rem;
}

.about-hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 400;
  max-width: 500px;
  animation: heroDescriptionFadeIn 1s ease-out 0.9s both;
}

@keyframes heroDescriptionFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Old Hero Section (keeping for backward compatibility) */
.about-hero {
  background: linear-gradient(135deg,
      var(--wood-primary),
      var(--wood-secondary));
  color: white;
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.about-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Main Content Layout */
.about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--wood-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

.about-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wood-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* Lists */
.feature-list,
.event-list,
.warranty-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.feature-list li,
.event-list li,
.warranty-list li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.feature-list li::before,
.event-list li::before,
.warranty-list li::before {
  content: "✔";
  color: var(--wood-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.warranty-list li::before {
  content: "⭐";
}

.feature-list strong,
.event-list strong {
  color: var(--foreground);
}

/* Contact Info Card */
.contact-info-card {
  background: var(--wood-light);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 5px solid var(--wood-primary);
}

.contact-info-card h2 {
  margin-top: 0;
}

.contact-info-card p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 1.5rem !important;
  }

  .section-title {
    font-size: 1.75rem !important;
  }

  .about-section h3 {
    font-size: 1.3rem !important;
  }

  .about-section p,
  .feature-list li,
  .event-list li,
  .warranty-list li {
    font-size: 1rem !important;
  }
}

/* About Us Section Styles */
.about-section {
  padding: 4rem 0 4rem 0;
  background: #ffffff;
  position: relative;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.intro-actions {
  margin-top: 1.75rem;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.intro-actions .btn {
  border-radius: var(--radius);
}

.about-subtitle {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wood-primary);
  margin: 0.5rem 0 1rem 0;
}

.image-caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.about-factory-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 4px,
    0 10px 30px rgba(58, 64, 145, 0.1);
  border: 1px solid rgb(225, 228, 235);
  transition: transform 0.3s ease;
}

.about-factory-img:hover {
  transform: scale(1.02);
}

.about-centered {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* About Vision Section */
.about-vision {
  margin-bottom: 3rem;
  text-align: center;
}

/* About Features Section */
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(58, 64, 145, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(58, 64, 145, 0.15);
  border-color: var(--wood-light);
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg,
      var(--wood-primary),
      var(--wood-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(58, 64, 145, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(58, 64, 145, 0.3);
}

.feature-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.feature-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--wood-primary);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0;
  font-weight: 400;
}

/* About Conclusion */
.about-conclusion {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--wood-light);
  border-radius: var(--radius);
  border-left: 5px solid var(--wood-primary);
}

.conclusion-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--wood-primary);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

/* Company Vision, Mission & Values Section */
.company-values-section {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-title {
  font-size: 2.2rem;
  /* 35.2px */
  font-weight: 800;
  color: #3A4091;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.values-list-modern {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.value-row {
  display: flex;
  align-items: flex-start;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(58, 64, 145, 0.1);
  position: relative;
  transition: all 0.3s ease;
  gap: 2.5rem;
}

.value-row:last-child {
  border-bottom: none;
}

.value-number {
  font-size: 5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(58, 64, 145, 0.3);
  width: 120px;
  flex-shrink: 0;
  line-height: 1.1;
  text-align: right;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-row:hover .value-number {
  color: var(--wood-primary);
  -webkit-text-stroke: 0;
  transform: translateX(-10px) scale(1.05);
  text-shadow: 0 10px 20px rgba(58, 64, 145, 0.15);
}

.value-content {
  flex-grow: 1;
  padding-top: 1rem;
}

.value-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wood-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.value-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .value-row {
    flex-direction: column;
    padding: 2.5rem 0;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .value-number {
    font-size: 4rem;
    text-align: left;
    width: auto;
    -webkit-text-stroke: 1.5px rgba(58, 64, 145, 0.5);
  }

  .value-row:hover .value-number {
    transform: translateX(10px) scale(1.05);
  }

  .value-content {
    padding-top: 0;
  }

  .value-content h3 {
    font-size: 1.5rem;
  }
}

/* Features Header Centered */
.features-header-centered {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Main Layout - Keep for backward compatibility */
.features-main-layout {
  display: grid;
  grid-template-columns: 4fr 6fr;
  align-items: start;
  margin-top: 3rem;
}

/* Left Column Styles */
.features-left {
  padding-right: 2rem;
}

.section-badge {
  display: inline-block;
  background: radial-gradient(88% 75% at 50% 50%,
      #3A4091 37.445453265765764%,
      #6469C0 83.41427364864865%);
  border-radius: 64px;
  box-shadow: rgba(58, 64, 145, 0.01) 0px 0.421531px 1.26459px -0.416667px,
    rgba(58, 64, 145, 0.01) 0px 1.60197px 4.80592px -0.833333px,
    rgba(58, 64, 145, 0.03) 0px 7px 21px -1.25px;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.features-main-title {
  font-size: 2.2rem;
  /* 35.2px */
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.features-main-title .highlight {
  background: linear-gradient(135deg,
      var(--wood-primary) 0%,
      var(--wood-secondary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 1.5rem 0 2rem 0;
}

/* removed conclusion text block */

/* Right Column - 2x2 Grid */
.features-right {
  padding-left: 2rem;
}

.features-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 0 auto;
}

.feature-card-new {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 4px;
  border: 1px solid rgb(225, 228, 235);
  position: relative;
  overflow: hidden;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(100, 105, 192, 0.03) 0%,
      rgba(147, 51, 234, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.feature-card-new:hover::before {
  opacity: 1;
}

.feature-card-new:hover {
  transform: translateY(-5px);
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 4px,
    0 10px 30px rgba(58, 64, 145, 0.12);
}

.feature-icon-new {
  width: 64px;
  height: 64px;
  background: radial-gradient(88% 75% at 50% 50%, var(--wood-primary) 37.45%, var(--wood-secondary) 100%);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 16px rgba(58, 64, 145, 0.15),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 auto 1rem auto;
}

.feature-icon-new svg {
  width: 32px;
  height: 32px;
}

.feature-card-new:hover .feature-icon-new {
  transform: none;
}

.feature-card-new h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--wood-primary);
  margin-bottom: 1.25rem;
  line-height: 1.4;
  letter-spacing: -0.025em;
  text-transform: capitalize;
}

.feature-card-new p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Mobile App Section */
.warranty-highlights-section {
  padding: 5rem 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.warranty-highlights-layout {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 2rem;
  align-items: center;
  margin: 0 auto;
  padding: 0;
}

/* Left Column - Mobile Mockup */
.warranty-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 40px;
  padding: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
}

.mobile-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.mobile-interface {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-header {
  padding: 12px 20px 8px;
  background: #ffffff;
}

.mobile-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.mobile-indicators {
  display: flex;
  gap: 4px;
  align-items: center;
}

.mobile-signal,
.mobile-wifi,
.mobile-battery {
  width: 18px;
  height: 12px;
  background: #000;
  border-radius: 2px;
}

.mobile-content {
  flex: 1;
  padding: 20px;
  background: #f8f9fa;
}

.mobile-app-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.mobile-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.mobile-app-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.mobile-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.mobile-feature-item.active {
  background: linear-gradient(135deg, #6469C0, #8b5cf6);
  color: white;
  border-color: #6469C0;
}

.mobile-feature-icon {
  font-size: 18px;
}

.mobile-feature-item span {
  font-size: 14px;
  font-weight: 500;
}

.mobile-floating-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: #10b981;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* Right Column - Content */
.warranty-right {
  padding-left: 2rem;
  text-align: left;
}

.mobile-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #6469C0, #8b5cf6);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.warranty-title {
  font-size: 2.2rem;
  /* 35.2px */
  font-weight: 800;
  color: var(--wood-primary);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.warranty-desc {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.mobile-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.mobile-feature-card {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 4px;
  border: 1px solid rgb(225, 228, 235);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 4px,
    0 10px 30px rgba(58, 64, 145, 0.12);
  border-color: var(--wood-primary);
}

.mobile-feature-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #6469C0, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 1rem auto;
}

.mobile-feature-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.mobile-feature-card p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* removed mobile demo styles */

/* Bullet features (two-column list like screenshot) */
.bullet-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin: 1.5rem 0 2.5rem 0;
}

.bullet-col {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1f2937;
  font-weight: 600;
}

.bullet-item svg {
  color: #6469C0;
}

@media (max-width: 768px) {
  .bullet-features {
    grid-template-columns: 1fr;
    gap: 0.75rem 1rem;
  }
}

/* Door Showcase Styles */
.door-showcase {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.door-image-container {
  position: relative;
  width: 100%;
  height: 450px;
  background-color: rgb(242, 244, 246);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: 1px solid rgb(225, 228, 235);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 4px,
    0 22px 30px rgba(140, 150, 169, 0.1);
  transition: none;
}

.door-image-container:hover {
  transform: none;
}

.door-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.door-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(100, 105, 192, 0.1) 0%,
      rgba(147, 51, 234, 0.1) 100%);
  opacity: 0;
  transition: none;
}

.door-image-container:hover .door-overlay {
  opacity: 0;
}

.door-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--wood-primary);
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments for About Us section */
@media (max-width: 1024px) {
  .about-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 2rem 0 !important;
  }

  .about-factory-img {
    max-width: 400px !important;
  }

  .about-vision {
    padding: 0 1rem !important;
  }

  .about-features {
    gap: 2rem !important;
    margin: 2rem 0 !important;
  }

  .feature-item {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem !important;
    padding: 1.5rem !important;
  }

  .feature-number {
    font-size: 1.125rem !important;
  }

  .feature-content h3 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: var(--wood-primary) !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
  }

  .about-conclusion {
    margin: 2rem 0 0 0 !important;
    padding: 1.5rem !important;
  }

  .conclusion-text {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 480px) {
  .about-factory-img {
    max-width: 300px;
  }

  .about-features {
    gap: 1.5rem;
  }

  .feature-item {
    gap: 1rem;
    padding: 1.25rem;
  }

  .feature-number {
    font-size: 1rem;
  }

  .feature-content h3 {
    font-size: 1.1rem;
  }

  .feature-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .about-conclusion {
    padding: 1.25rem;
  }

  .conclusion-text {
    font-size: 1rem;
  }
}

/* Responsive adjustments for Company Values section */
@media (max-width: 1024px) {
  .values-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .company-values-section {
    padding: 3rem 0 !important;
  }

  .values-title {
    font-size: 1.8rem !important;
  }

  .values-container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .value-card {
    padding: 2rem !important;
  }

  .card-header {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem !important;
    margin-bottom: 0.75rem !important;
  }

  .decorative-icon {
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 1rem !important;
  }

  .decorative-icon svg {
    width: 28px !important;
    height: 28px !important;
  }

  .card-header h3 {
    font-size: 1.35rem !important;
    margin-bottom: 0.5rem !important;
  }

  .card-content {
    text-align: center !important;
  }

  .card-content p {
    font-size: 1.05rem !important;
  }
}

@media (max-width: 480px) {
  .values-title {
    font-size: 1.5rem !important;
  }

  .value-card {
    padding: 1.5rem;
  }

  .card-header h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.5rem !important;
  }

  .card-content {
    text-align: center !important;
  }

  .card-content p {
    font-size: 1rem !important;
  }

  .decorative-icon {
    width: 48px;
    height: 48px;
  }

  .decorative-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Quality & Technology Section */
.quality-technology-section {
  padding: 6rem 0;
  background: white;
  position: relative;
}

.quality-header {
  text-align: center;
  margin-bottom: 2rem;
}

.quality-title {
  font-size: 2.2rem;
  /* 35.2px */
  font-weight: 800;
  color: var(--wood-primary);
  margin: 0 0 1rem 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.quality-intro {
  margin: 0 auto 4rem auto;
  text-align: center;
}

.quality-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--foreground);
  margin: 0;
  max-width: 70%;
  text-align: center;
  margin: 0 auto;
}

/* Quality Cards Grid */
.quality-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.quality-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 4px;
  border: 1px solid rgb(225, 228, 235);
  transition: all 0.3s ease;
}

.quality-card:hover {
  transform: translateY(-5px);
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 4px,
    0 15px 40px rgba(0, 0, 0, 0.12);
}

.quality-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.quality-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wood-primary);
}

.quality-card-tag svg {
  width: 16px;
  height: 16px;
  color: var(--wood-primary);
}

.quality-card-content {
  padding: 2rem;
}

.quality-card-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--wood-primary);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.quality-card-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0 0 1.5rem 0;
}

.quality-card-action {
  display: flex;
  justify-content: flex-end;
}

.quality-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quality-btn:hover {
  background: var(--wood-primary);
  color: white;
  border-color: var(--wood-primary);
}

.quality-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.quality-feature {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(58, 64, 145, 0.05);
  transition: all 0.3s ease;
}

.quality-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(58, 64, 145, 0.1);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-header .feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg,
      var(--wood-primary),
      var(--wood-secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 20px rgba(58, 64, 145, 0.2);
}

.feature-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--wood-primary);
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-content {
  color: var(--muted-foreground);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  color: var(--wood-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

/* Material Highlights */
.material-highlights {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(58, 64, 145, 0.1);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-2px);
  border-color: var(--wood-primary);
  box-shadow: 0 4px 15px rgba(58, 64, 145, 0.1);
}

.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.4;
}

/* Tech Highlights */
.tech-highlights {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.tech-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(58, 64, 145, 0.1);
  transition: all 0.3s ease;
}

.tech-highlights .highlight-item:hover {
  transform: translateY(-2px);
  border-color: var(--wood-primary);
  box-shadow: 0 4px 15px rgba(58, 64, 145, 0.1);
}

.tech-highlights .highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tech-highlights .highlight-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.4;
}

/* Tech Overview */
.tech-overview {
  margin-bottom: 1.5rem;
}

.tech-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0;
  font-style: italic;
  text-align: center;
  padding: 1rem;
  background: rgba(58, 64, 145, 0.05);
  border-radius: 8px;
}

.tech-summary {
  margin-top: 1.5rem;
}

.tech-items {
  margin-bottom: 1.5rem;
}

.tech-item {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border-left: 4px solid var(--wood-primary);
}

.tech-item:last-child {
  margin-bottom: 0;
}

.tech-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wood-primary);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.tech-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--muted-foreground);
}

.tech-note {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--wood-secondary);
  margin: 0;
  text-align: center;
  padding: 1rem;
  background: rgba(58, 64, 145, 0.05);
  border-radius: 8px;
}

.quality-benefits {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.quality-benefits h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--wood-primary);
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-list li {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--foreground);
}

.benefits-list li::before {
  content: "★";
  color: var(--wood-secondary);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.benefits-list li:last-child {
  margin-bottom: 0;
}

.warranty-section {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.warranty-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--wood-primary);
  margin: 0 0 2rem 0;
  line-height: 1.5;
}

.warranty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.warranty-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--wood-light), #f0f0f8);
  border-radius: 12px;
  border: 1px solid rgba(58, 64, 145, 0.1);
  transition: all 0.3s ease;
}

.warranty-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(58, 64, 145, 0.15);
  border-color: var(--wood-primary);
}

.warranty-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg,
      var(--wood-primary),
      var(--wood-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(58, 64, 145, 0.2);
  transition: all 0.3s ease;
}

.warranty-item:hover .warranty-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(58, 64, 145, 0.3);
}

.warranty-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.warranty-item span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.4;
}

/* Responsive adjustments for Quality & Technology section */
@media (max-width: 1024px) {
  .quality-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .warranty-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .quality-technology-section {
    padding: 3rem 0 !important;
  }

  .quality-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .quality-card-image {
    height: 200px !important;
  }

  .quality-card-content {
    padding: 1.5rem !important;
  }

  .quality-card-content h3 {
    font-size: 1.1rem !important;
  }

  .quality-card-content p {
    font-size: 0.95rem !important;
  }

  .quality-title {
    font-size: 1.8rem !important;
  }

  .quality-intro {
    margin-bottom: 3rem !important;
    padding: 0 1rem !important;
  }

  .quality-description {
    font-size: 1.1rem !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .quality-features {
    gap: 2rem !important;
    margin-bottom: 3rem !important;
  }

  .quality-feature {
    padding: 2rem !important;
    margin: 0 1rem !important;
  }

  .feature-header {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem !important;
  }

  .feature-header h3 {
    font-size: 1.2rem !important;
  }

  .material-highlights {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    margin-top: 1.5rem !important;
  }

  .highlight-item {
    padding: 0.75rem !important;
  }

  .highlight-item span {
    font-size: 0.85rem !important;
  }

  .tech-highlights {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    margin-top: 1.5rem !important;
  }

  .tech-highlights .highlight-item {
    padding: 0.75rem !important;
  }

  .tech-highlights .highlight-item span {
    font-size: 0.85rem !important;
  }

  .tech-intro {
    font-size: 0.9rem !important;
    padding: 0.75rem !important;
  }

  .tech-item {
    padding: 1.25rem !important;
  }

  .quality-benefits {
    margin-bottom: 2rem !important;
    padding: 0 1rem !important;
  }

  .quality-benefits h3 {
    font-size: 1.2rem !important;
  }

  .warranty-section {
    padding: 0 1rem !important;
  }

  .warranty-section h3 {
    font-size: 1.2rem !important;
  }

  .warranty-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .warranty-item {
    padding: 1.25rem !important;
  }
}

@media (max-width: 480px) {
  .quality-title {
    font-size: 1.5rem;
  }

  .quality-description {
    font-size: 1rem;
    max-width: 100%;
    margin: 0;
  }

  .quality-feature {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .feature-header h3 {
    font-size: 1.1rem;
  }

  .material-highlights {
    gap: 0.5rem;
    margin-top: 1.25rem;
  }

  .highlight-item {
    padding: 0.5rem;
  }

  .highlight-item span {
    font-size: 0.8rem;
  }

  .tech-highlights {
    gap: 0.5rem;
    margin-top: 1.25rem;
  }

  .tech-highlights .highlight-item {
    padding: 0.5rem;
  }

  .tech-highlights .highlight-item span {
    font-size: 0.8rem;
  }

  .tech-intro {
    font-size: 0.85rem;
    padding: 0.5rem;
  }

  .tech-item h4 {
    font-size: 1rem;
  }

  .tech-item p {
    font-size: 0.9rem;
  }

  .quality-benefits h3 {
    font-size: 1.1rem;
  }

  .benefits-list li {
    font-size: 1rem;
  }

  .warranty-section h3 {
    font-size: 1.1rem;
  }

  .warranty-item {
    padding: 1rem;
  }

  .warranty-item span {
    font-size: 0.95rem;
  }

  /* Reduce contact form padding on mobile */
  .contact-form {
    padding: 1rem !important;
  }
}

/* Brand Identity Section */
.experts-hero {
  padding: 0 0 3rem 0;
  background: var(--bg-token);
  position: relative;
}

.experts-hero-content {
  padding-top: 2rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  color: #111827;
  margin: 0 0 1rem 0;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto 2.25rem auto;
  color: #6b7280;
  line-height: 1.7;
  font-size: 1rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.hero-card {
  position: relative;
  background-color: rgb(242, 244, 246);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: 1px solid #e1e4eb;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 0 6px #fff, 0 10px 20px #8c96a91a;
  transition: transform 0.3s ease;
}

.hero-card-main {
  height: 100%;
  min-height: 480px;
}

.hero-card-stacked {
  height: calc(50% - 0.75rem);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card-main {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .experts-hero {
    padding: 0 0 2rem 0;
  }

  .experts-hero-content {
    padding-top: 1rem;
  }

  .hero-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-card-stack {
    gap: 1.25rem;
  }

  .hero-card-main {
    min-height: 350px;
  }

  .hero-card-stacked {
    min-height: 250px;
  }
}

.brand-conclusion {
  text-align: center;
  width: 100%;
  margin: 0;
  background: linear-gradient(135deg,
      rgba(58, 64, 145, 0.02),
      rgba(58, 64, 145, 0.05));
  border-radius: 0;
  padding: 4rem 2rem;
  border: none;
  border-top: 1px solid rgba(58, 64, 145, 0.06);
  border-bottom: 1px solid rgba(58, 64, 145, 0.06);
}

.brand-conclusion .conclusion-content {
  margin: 0 auto;
}

.brand-conclusion .conclusion-content h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wood-primary);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-conclusion .conclusion-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--foreground);
  margin: 0;
  font-weight: 500;
  text-align: justify;
  text-align-last: center;
}

/* Responsive Design for Brand Section */
@media (max-width: 768px) {
  .link-icon {
    width: 40px;
    height: 40px;
  }

  .link-icon svg {
    width: 18px;
    height: 18px;
  }

  .link-title {
    font-size: 1rem;
  }

  .link-description {
    font-size: 0.85rem;
  }

  .brand-conclusion {
    padding: 3rem 1.5rem;
  }

  .brand-conclusion .conclusion-content h5 {
    font-size: 1.2rem;
  }

  .brand-conclusion .conclusion-content p {
    font-size: 1rem;
    text-align: left;
    text-align-last: left;
  }
}

.brand-conclusion {
  padding: 2.5rem 1rem;
}

/* Product Quality Section */
.product-quality-section {
  background: #ffffff;
}

.product-quality-title {
  font-size: 2.2rem;
  /* 35.2px */
  font-weight: 800;
  color: var(--wood-primary);
  margin: 0 0 1rem 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.quality-header {
  text-align: center;
  margin-bottom: 2rem;
}

.quality-title {
  font-size: 2.2rem;
  /* 35.2px */
  font-weight: 800;
  color: var(--wood-primary);
  margin: 0 0 1rem 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.quality-intro {
  margin: 0 auto 3rem auto;
  text-align: center;
}

.quality-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding-bottom: 3rem;
}

.accessory-card {
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(58, 64, 145, 0.1);
  box-shadow: 0 6px 25px rgba(58, 64, 145, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 400px;
}

.accessory-image {
  width: 100%;
  height: 280px;
  background-color: rgb(242, 244, 246);
  border-bottom: 1px solid #e1e4eb;
  overflow: hidden;
}

.accessory-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.accessory-card:nth-child(2) .accessory-img {
  object-position: right center;
}

.accessory-content {
  flex: 1;
  padding: 1.5rem;
}

.accessory-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--wood-primary);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.accessory-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin: 0;
}

/* Responsive Design for Product Quality Section */
@media (max-width: 768px) {

  .product-quality-title {
    font-size: 1.8rem !important;
  }

  .accessories-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding-bottom: 2rem !important;
  }

  .accessory-card {
    min-height: 350px !important;
  }

  .accessory-content {
    padding: 1.25rem !important;
  }

  .accessory-image {
    height: 280px !important;
    margin-bottom: 1.25rem !important;
    padding-top: 1.25rem !important;
    box-shadow: 0 0 0 2px #fff, 0 8px 12px #8c96a91a, 0 2px 2px #8c96a91f !important;
  }

  .accessory-card h3 {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: var(--wood-primary) !important;
    margin: 0 0 1rem 0 !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 480px) {

  .product-quality-title {
    font-size: 1.5rem;
  }

  .quality-description {
    font-size: 1rem;
  }

  .accessory-card {
    min-height: 300px;
  }

  .accessory-content {
    padding: 1rem;
  }

  .accessory-image {
    height: 300px;
    margin-bottom: 1rem;
    padding-top: 1rem;
    box-shadow: 0 0 0 2px #fff, 0 6px 10px #8c96a91a, 0 2px 2px #8c96a91f;
  }

  .accessory-card h3 {
    font-size: 1.2rem;
  }

  .accessory-card p {
    font-size: 0.95rem;
  }

  /* Responsive Design for Hero Banner - Using blog styles */
  @media (max-width: 768px) {
    .blog-hero-section {
      min-height: 50vh;
    }

    .blog-hero-content {
      padding: 2rem 0;
    }

    .about-hero-title {
      font-size: clamp(2rem, 4vw, 2.5rem);
    }

    .about-hero-description {
      font-size: 1rem;
      max-width: 100%;
    }

    .blog-hero-badge {
      padding: 0.5rem 1rem;
      font-size: 0.8rem;
    }
  }

  @media (max-width: 480px) {
    .blog-hero-section {
      min-height: 40vh;
    }

    .blog-hero-content {
      padding: 1.5rem 0;
    }

    .about-hero-title {
      font-size: clamp(1.8rem, 3.5vw, 2rem);
    }

    .about-hero-description {
      font-size: 0.95rem;
    }

    .blog-hero-badge {
      padding: 0.4rem 0.8rem;
      font-size: 0.75rem;
    }
  }
}

/* Video Dialog Styles */
/* removed video dialog styles */

/* Video Card Styles */
/* removed video card styles */

/* Responsive Video Dialog */
@media (max-width: 768px) {
  /* removed responsive video styles */

  .video-play-button {
    width: 70px;
    height: 70px;
  }

  .video-play-button svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  /* removed responsive video styles */
}

/* Enhanced Quality Benefits Section - REMOVED */

/* Enhanced Warranty Section */
.warranty-section-enhanced {
  margin: 4rem 0;
  padding: 3rem 0;
  border-radius: 24px;
  overflow: hidden;
}

.warranty-hero {
  margin-bottom: 3rem;
}

.warranty-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.warranty-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg,
      var(--wood-primary) 0%,
      var(--wood-secondary) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(58, 64, 145, 0.3);
}

.warranty-badge svg {
  width: 18px;
  height: 18px;
}

.warranty-hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(5deg);
  transition: transform 0.3s ease;
}

.warranty-hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.warranty-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.warranty-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(58, 64, 145, 0.1) 0%,
      rgba(42, 45, 177, 0.2) 100%);
  pointer-events: none;
}

.warranty-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.warranty-feature-item {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.warranty-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.warranty-feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--wood-light) 0%, #d1d4f0 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wood-primary);
  flex-shrink: 0;
}

.warranty-feature-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.warranty-feature-content p {
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

.warranty-features-section {
  padding-bottom: 0;
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(135deg, var(--wood-primary) 0%, var(--wood-secondary, #6469C0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.stat-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .stats-section {
    padding: 3rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-title {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Materials Section - Two Column Layout */
.materials-section {
  margin: 2rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* Warranty Features Styling - Similar to Materials */
.warranty-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.warranty-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.warranty-feature .feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg,
      var(--wood-primary) 0%,
      var(--wood-secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 2px;
}

.warranty-feature .feature-icon svg {
  width: 12px;
  height: 12px;
  stroke: white;
  stroke-width: 3;
}

.warranty-feature p {
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.materials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.materials-content {
  text-align: left;
}

.materials-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--wood-primary);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.materials-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.material-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--wood-primary);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(58, 64, 145, 0.2);
}

.feature-icon svg {
  color: white;
  width: 12px;
  height: 12px;
}

.material-feature p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.materials-visual {
  position: relative;
  width: 100%;
  height: 450px;
  background-color: rgb(242, 244, 246);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: 1px solid #e1e4eb;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 0 6px #fff, 0 22px 30px #8c96a91a, 0 7px 6px #8c96a91f;
  transition: none;
}

.materials-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

/* Technology Section - Two Column Layout */
.technology-section {
  margin: 4rem 0;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
}

.technology-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.technology-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.technology-image {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
}

.technology-content {
  text-align: left;
}

.technology-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--wood-primary);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.technology-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.technology-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.technology-feature p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.technology-feature strong {
  color: var(--wood-primary);
  font-weight: 700;
}

/* Blue highlight for selected technology labels */
.technology-feature .tech-highlight {
  color: var(--wood-primary);
}

/* CTA buttons now use standard .btn classes from main.css */

/* Responsive Design */
@media (max-width: 1024px) {
  .warranty-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .warranty-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .materials-title br {
    display: none;
  }
}

@media (max-width: 768px) {
  .warranty-section-enhanced {
    margin: 2rem 0 !important;
    padding: 2rem 0 !important;
    border-radius: 16px !important;
  }

  .warranty-title {
    font-size: 1.8rem !important;
  }

  .benefits-features {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .warranty-features-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }



  .materials-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .materials-content {
    text-align: left !important;
  }

  .materials-title {
    font-size: 1.8rem !important;
    text-align: left !important;
  }

  .materials-title br {
    display: none;
  }

  .technology-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .technology-content {
    text-align: center !important;
  }

  .technology-title {
    font-size: 1.8rem !important;
  }

  .materials-section,
  .technology-section {
    padding: 2rem 1.5rem !important;
    border-radius: 16px !important;
  }



  .btn {
    width: 100% !important;
  }

  /* Features Layout Responsive - Tablet */
  .features-main-layout {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .features-left {
    padding-right: 0 !important;
    text-align: center !important;
  }

  .section-badge {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }

  .features-main-title {
    font-size: 1.8rem !important;
  }

  .features-description {
    font-size: 1rem !important;
    margin: 1rem 0 1.5rem 0 !important;
  }

  .conclusion-text {
    font-size: 0.95rem !important;
    padding: 1.25rem !important;
  }

  /* Mobile App Section Responsive */
  .warranty-highlights-layout {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .warranty-right {
    padding-left: 0 !important;
    text-align: left !important;
  }

  .mobile-mockup {
    width: 250px !important;
    height: 500px !important;
    transform: none !important;
  }

  .door-showcase {
    height: 400px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .door-image-container {
    width: 100% !important;
    height: 350px !important;
    margin: 0 !important;
  }

  .mobile-features-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .features-right {
    padding-left: 0 !important;
  }

  .features-grid-2x2 {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .feature-card-new {
    padding: 1.5rem !important;
  }

  .feature-card-new h3 {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
  }

  .feature-card-new p {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 480px) {
  .warranty-hero-content {
    gap: 1.5rem;
  }

  .warranty-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .warranty-feature-item {
    padding: 1.25rem;
  }



  .materials-layout {
    gap: 1.5rem;
  }

  .materials-title {
    font-size: 1.6rem;
  }

  .materials-features {
    gap: 1rem;
  }

  .technology-layout {
    gap: 1.5rem;
  }

  .technology-title {
    font-size: 1.6rem;
  }

  .technology-features {
    gap: 1rem;
  }

  .materials-section,
  .technology-section {
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }

  .card-header {
    margin-bottom: 0.5rem !important;
  }

  /* Reduce materials visual height on phones */
  .materials-visual {
    height: 300px !important;
  }



  /* Features Layout Responsive - Mobile */
  .features-main-title {
    font-size: 1.6rem;
  }

  .features-description {
    font-size: 0.9rem;
    margin: 0.75rem 0 1.25rem 0;
  }

  .conclusion-text {
    font-size: 0.85rem;
    padding: 1rem;
  }

  /* Mobile App Section Mobile */
  .warranty-highlights-section {
    padding: 0;
  }

  .warranty-highlights-layout {
    padding: 0;
    gap: 2rem;
  }

  .warranty-title {
    font-size: 1.6rem;
  }

  .mobile-mockup {
    width: 200px;
    height: 400px;
  }

  .door-showcase {
    height: 300px;
    width: 100%;
    margin: 0;
  }

  .door-image-container {
    width: 100%;
    height: 280px;
    transform: none;
    margin: 0;
  }

  .door-badge {
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .mobile-feature-card {
    padding: 1rem;
  }

  .mobile-demo-card {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .features-grid-2x2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card-new {
    padding: 1.25rem;
  }

  .feature-card-new h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .feature-card-new p {
    font-size: 0.9rem;
  }
}

/* Project CTA Section Styles */
.project-cta-section {
  position: relative;
  padding: 5rem 0;
  background-color: transparent;
  background-image: url(https://windoo.peerduck.com/wp-content/uploads/2023/03/4tggrvrt4h.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.project-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(223, 235, 246, 0.3);
  z-index: 1;
}

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

.cta-text {
  padding: 0 2rem;
}

.cta-title {
  font-size: 2.2rem;
  /* 35.2px */
  font-weight: 800;
  color: var(--wood-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cta-highlight {
  position: relative;
  display: inline-block;
}

.cta-highlight::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--wood-primary);
  border-radius: 3px;
}

.cta-description {
  font-size: 1.25rem;
  color: #374151;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* Contact Section Styles */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg,
      rgba(58, 64, 145, 0.02) 0%,
      rgba(255, 255, 255, 0.98) 100%);
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f0f0f0"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.contact-title {
  font-size: 2.2rem;
  /* 35.2px */
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(135deg,
      var(--wood-primary) 0%,
      var(--wood-secondary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.contact-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Contact Info Styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(58, 64, 145, 0.1);
  width: 100%;
  transition: all 0.3s ease;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item:hover {
  transform: translateX(4px);
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: radial-gradient(88% 75% at 50% 50%, var(--wood-primary) 37.45%, var(--wood-secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-details h4 {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--wood-primary);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.contact-details p {
  font-size: 1rem;
  font-weight: 500;
  color: #4b5563;
  /* Fixed from var(--foreground) to ensure visibility on light background */
  line-height: 1.5;
  margin: 0;
}

/* Contact Map Styles */
.contact-map {
  width: 100%;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgb(225, 228, 235);
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 4px;
  transition: all 0.3s ease;
}

.contact-map:hover {
  transform: translateY(-2px);
  box-shadow: rgb(255, 255, 255) 0px 0px 0px 4px,
    0 8px 25px rgba(58, 64, 145, 0.1);
  border-color: rgba(58, 64, 145, 0.15);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* Responsive Design for Project CTA Section */
@media (max-width: 1024px) {
  .project-cta-section {
    padding: 3rem 0;
  }

  .cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .project-cta-section {
    padding: 4rem 0 !important;
  }

  .cta-title {
    font-size: 1.8rem !important;
  }

  .cta-description {
    font-size: 1.125rem !important;
    margin-bottom: 2rem !important;
  }

}

@media (max-width: 480px) {
  .project-cta-section {
    padding: 3rem 0;
  }

  .cta-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-text {
    padding: 0 1rem;
  }

}

/* Responsive Contact */
@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-section {
    padding: 4rem 0;
  }

  .contact-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0 !important;
  }

  .contact-header {
    margin-bottom: 2.5rem !important;
  }

  .contact-title {
    font-size: 1.8rem !important;
  }

  .contact-content {
    gap: 2.5rem !important;
  }

  .contact-item {
    padding: 0.875rem !important;
    gap: 0.875rem !important;
  }

  .contact-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .contact-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .contact-details h4 {
    font-size: 1.125rem !important;
  }

  .contact-form {
    padding: 1rem !important;
  }

  .form {
    gap: 1.25rem !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.875rem 1rem !important;
    font-size: 0.95rem !important;
  }

  .warranty-features {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}



/* =========================================
   EVENTS & VIDEO SECTION
========================================= */
.events-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  position: relative;
}

.events-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .events-video-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .events-video-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}