/* ===============================
WHY CHOOSE US SECTION - Modern Trust Design
=============================== */

.section--why-choose-us {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  position: relative;
  overflow: hidden;
}

.section--why-choose-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(175, 45, 44, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Container */
.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Section Header - Enhanced */
.section--why-choose-us .section-header {
  text-align: center;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.3s both;
}

.section--why-choose-us .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  display: inline-block;
}

.section--why-choose-us .section-subtitle {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.section--why-choose-us .accent-bar {
  width: 60px;
  height: 4px;
  background: var(--brand-red);
  margin: 0 auto 25px;
  border-radius: 2px;
  position: relative;
}

/* Main Grid Layout */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

/* Left Column - Features */
.why-choose-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Feature Items - Modern Card Style */
.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #f5f5f5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: fadeSlideRight 0.8s ease-out both;
  animation-delay: var(--item-delay, 0.4s);
  position: relative;
  overflow: hidden;
}

.why-choose-item:nth-child(1) { --item-delay: 0.4s; }
.why-choose-item:nth-child(2) { --item-delay: 0.5s; }
.why-choose-item:nth-child(3) { --item-delay: 0.6s; }
.why-choose-item:nth-child(4) { --item-delay: 0.7s; }

.why-choose-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-red);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: top;
}

.why-choose-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 40px rgba(175, 45, 44, 0.1);
  border-color: rgba(175, 45, 44, 0.1);
}

.why-choose-item:hover::before {
  transform: scaleY(1);
}

/* Icon Container - Modern Style */
.why-choose-item .icon-container {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(175, 45, 44, 0.1) 0%, rgba(175, 45, 44, 0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.why-choose-item:hover .icon-container {
  background: linear-gradient(135deg, var(--brand-red) 0%, rgba(175, 45, 44, 0.85) 100%);
  transform: scale(1.1) rotate(5deg);
}

.why-choose-item .icon-container img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: none;
  transition: filter 0.3s ease;
}

.why-choose-item:hover .icon-container img {
  filter: brightness(0) invert(1);
}

/* Text Content */
.why-choose-item > div:last-child {
  flex: 1;
}

.why-choose-item h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.why-choose-item:hover h3 {
  color: var(--brand-red);
}

.why-choose-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Right Column - Enhanced Image Grid */
.why-choose-right {
  position: relative;
  opacity: 0;
  animation: fadeSlideLeft 0.8s ease-out 0.5s both;
}

.image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 20px;
  position: relative;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.image-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(175, 45, 44, 0.15);
}

/* Grid Positioning */
.img-1 { 
  grid-area: 1 / 1 / 3 / 2;
  animation-delay: 0.6s;
}
.img-2 { 
  grid-area: 1 / 2 / 2 / 4;
  animation-delay: 0.7s;
}
.img-3 { 
  grid-area: 2 / 2 / 3 / 3;
  animation-delay: 0.8s;
}
.img-4 { 
  grid-area: 2 / 3 / 3 / 4;
  animation-delay: 0.9s;
}

/* Stats Badge - New Addition */
.stats-badge {
  position: absolute;
  bottom: -30px;
  right: 20px;
  background: white;
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--brand-red);
  z-index: 10;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 1s both;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1;
  margin-bottom: 5px;
}

.stats-label {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Section */
.why-choose-cta {
  text-align: center;
  margin-top: 80px;
  padding: 50px;
  background: linear-gradient(135deg, rgba(175, 45, 44, 0.05) 0%, rgba(175, 45, 44, 0.02) 100%);
  border-radius: 24px;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.9s both;
}

.why-choose-cta h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.why-choose-cta p {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 30px;
}

/* Animations */
@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */

