/* Ultra-Modern 2025 Design System */
:root {
  --primary-color: #00b5ad;
  --primary-dark: #008c85;
  --primary-light: #33c3bd;
  --secondary-color: #2c3e50;
  --text-color: #333;
  --text-light: #666;
  --white: #fff;
  --light-gray: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, #00b5ad 0%, #4ecdc4 100%);
  --gradient-secondary: linear-gradient(135deg, #2c3e50 0%, #4a6b8a 100%);
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 25px 60px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 30px 70px rgba(0, 0, 0, 0.12);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hero Section - Ultra Modern */
.hero-section {
  min-height: 90vh;
  background-image: linear-gradient(rgba(44, 62, 80, 0.7), rgba(0, 181, 173, 0.7)), url('../img/services/photo-1573164574472-797cdf4a583a.avif');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  backdrop-filter: blur(5px);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #ffffff, #e2f3f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-content .lead {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 2rem;
  opacity: 0.95;
  letter-spacing: -0.01em;
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Services Section - Floating Cards with Glass Effect */
.services-section {
  padding: 120px 0;
  background: radial-gradient(ellipse at top, #f8f9fa, #ffffff);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 181, 173, 0.1), transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.services-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(44, 62, 80, 0.05), transparent 70%);
  bottom: -200px;
  left: -200px;
  border-radius: 50%;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 3.5rem 2rem;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  transform: translateY(0);
  height: 100%;
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  position: relative;
}

.service-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.service-card p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Why Website Section - Layered Depth Design */
.why-website-section {
  padding: 120px 0;
  background-color: #f9fafb;
  position: relative;
  overflow: hidden;
}

.section-title {
  color: #111 !important;
  font-size: 2.1rem !important;
  font-weight: 800 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #111 !important;
  text-shadow: none !important;
  letter-spacing: 0 !important;
  margin-bottom: 1.2rem !important;
  line-height: 1.2 !important;
}

.section-subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-light);
  max-width: 850px;
  margin: 0 auto 4.5rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.benefit-card {
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  z-index: 2;
  height: 100%;
}

.benefit-icon {
  margin-bottom: 1.5rem;
  position: relative;
}

.benefit-icon i {
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.benefit-card p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
}

.how-we-help-box {
  background: var(--gradient-primary);
  padding: 3.5rem;
  border-radius: 30px;
  color: var(--white);
  margin-top: 3rem;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.how-we-help-box h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.how-we-help-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.features-list li i {
  margin-left: 0.8rem;
  font-size: 1.2rem;
}

/* Statistics Section - Advanced Visual Design */
.stats-section {
  padding: 150px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 80%, rgba(0, 181, 173, 0.03));
  pointer-events: none;
}

.stats-section .section-title {
  color: var(--secondary-color);
  background: linear-gradient(120deg, var(--secondary-color) 0%, #304357 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats-section .section-subtitle {
  color: var(--text-light);
}

.stat-card {
  background: var(--white);
  backdrop-filter: none;
  padding: 60px 40px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  height: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 181, 173, 0.05);
  transform: translateZ(0);
  overflow: hidden;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}

.stat-label {
  color: var(--text-light);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

/* Timeline Section - Modern 3D Flow */
.timeline-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.timeline-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.timeline-description {
  text-align: center;
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-vertical-line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 4px;
  background:  #00b5ad;
  border-radius: 2px;
}

.timeline-step {
  display: flex;
  margin-bottom: 5rem;
  position: relative;
  align-items: center;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 0 0 5px rgba(0, 181, 173, 0.2);
  margin-right: 2rem;
}

.timeline-content {
  flex: 1;
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  padding: 2rem 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  margin-right: 2rem;
  position: relative;
}

.timeline-content::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #f5f5f5;
}

.timeline-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.timeline-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* CTA Section - Ultra Modern */
.cta-section {
  padding: 150px 0;
  background: linear-gradient(135deg, rgba(0, 181, 173, 0.9), rgba(44, 62, 80, 0.9)), url('../img/services/photo-1573164574472-797cdf4a583a.avif');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  position: relative;
  backdrop-filter: blur(5px);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.2));
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2rem;
  position: relative;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.cta-section p {
  font-size: 1.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  max-width: 850px;
  margin: 0 auto 4rem;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1.6rem 4rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  letter-spacing: -0.01em;
  transform: translateY(0);
}

/* Advanced Responsive Media Queries */
@media (max-width: 1399px) {
  .section-title {
    font-size: 3.5rem;
  }

  .hero-content h1 {
    font-size: 5.5rem;
  }

  .cta-section h2 {
    font-size: 4.5rem;
  }

  .stat-number {
    font-size: 4.5rem;
  }

  .white-help-box {
    padding: 45px;
  }

  .card-icon {
    width: 85px;
    height: 85px;
    margin-bottom: 25px;
  }

  .feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
  }
}

@media (max-width: 1199px) {
  .section-title {
    font-size: 3.2rem;
  }

  .hero-content h1 {
    font-size: 5rem;
  }

  .cta-section h2 {
    font-size: 4rem;
  }

  .hero-content .lead {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 4rem;
  }

  .white-help-box {
    padding: 40px;
  }

  .help-content h3 {
    font-size: 24px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-left: 18px;
  }

  .feature-icon i {
    font-size: 24px;
  }

  .feature-content h4 {
    font-size: 18px;
  }

  .white-card {
    padding: 35px 25px;
  }

  .card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }

  .card-icon i {
    font-size: 36px;
  }

  .white-card h3 {
    font-size: 20px;
  }

  .grid-item-1 {
    grid-column: span 6;
  }

  .grid-item-2 {
    grid-column: span 6;
  }

  .grid-item-3, .grid-item-4, .grid-item-5 {
    grid-column: span 4;
  }

  .white-help-box .white-help-feature h4 {
    font-size: 0.8rem !important;
    margin-bottom: 0.4rem !important;
  }
  .white-help-box .white-help-feature p {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
  }
  .timeline-content h3 {
    font-size: 1.15rem !important;
    margin-bottom: 0.7rem !important;
  }
  .timeline-content p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 991px) {
  .section-title {
    font-size: 1.2rem !important;
  }

  .timeline-section h2 {
    font-size: 1.7rem !important;
    line-height: 1.7 !important;
  }

  .expertise-section {
    padding: 100px 0;
  }

  .section-subtitle {
    font-size: 1rem !important;
    color: #666 !important;
    font-weight: 400 !important;
    margin-bottom: 0.7rem !important;
  }

  .white-help-box {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: none;
    gap: 18px;
    padding: 25px 10px;
  }
  .white-help-feature, .white-help-feature.center-card {
    grid-area: unset !important;
    border: none;
    background: #fff !important;
    box-shadow: 0 4px 16px rgba(0, 181, 173, 0.04);
  }

  .help-content h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .help-content p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .help-content:first-child {
    margin-bottom: 40px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    margin-left: 15px;
  }

  .feature-icon i {
    font-size: 20px;
  }

  .feature-content h4 {
    font-size: 17px;
  }

  .feature-content p {
    font-size: 14px;
  }

  .help-features-list li {
    margin-bottom: 25px;
  }

  .grid-item-1, .grid-item-2, .grid-item-3, .grid-item-4, .grid-item-5 {
    grid-column: span 6;
  }

  .white-card {
    padding: 35px 25px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .card-icon i {
    font-size: 32px;
  }

  .white-card h3 {
    font-size: 18px;
  }

  .white-card p {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content .lead {
    font-size: 1.6rem;
  }

  .cta-section {
    padding: 120px 0;
  }

  .cta-section h2 {
    font-size: 1.7rem;
  }

  .cta-section p {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
  }

  .stat-number {
    font-size: 2.2rem !important;
  }

  .stat-label {
    font-size: 1.3rem !important;
  }

  .stat-card {
    padding: 50px 30px;
  }

  .why-us-grid {
    grid-template-columns: 1fr !important;
    grid-gap: 16px !important;
  }
  .why-us-grid > div {
    grid-column: span 1 !important;
  }

  .service-card {
    padding: 1.5rem 1rem !important;
    border-radius: 14px !important;
  }
  .service-icon {
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 1rem !important;
  }
  .service-icon i {
    font-size: 1.7rem !important;
  }
  .service-card h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.7rem !important;
  }
  .service-card p {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 767px) {
  .expertise-section {
    padding: 100px 0;
  }

  .section-title {
    font-size: 2.7rem;
  }

  .section-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }

  .white-help-box {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-areas: unset !important;
    gap: 16px !important;
    padding: 24px 8px 24px 8px !important;
  }
  .why-us-grid {
    grid-template-columns: 1fr !important;
    grid-gap: 16px !important;
  }
  .why-us-grid > div {
    grid-column: span 1 !important;
  }
  .white-help-feature,
  .white-card {
    min-width: 0;
    width: 100% !important;
    margin: 0 auto 0 auto !important;
  }

  .help-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .help-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-left: 20px;
    border-radius: 18px;
  }

  .feature-icon i {
    font-size: 26px;
  }

  .feature-content h4 {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .feature-content p {
    font-size: 15px;
  }

  .help-features-list li {
    margin-bottom: 30px;
  }

  .grid-item-1, .grid-item-2, .grid-item-3, .grid-item-4, .grid-item-5 {
    grid-column: span 12;
  }

  .white-card {
    padding: 40px 25px;
    margin-bottom: 25px;
    border-radius: 20px;
  }

  .card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    border-radius: 20px;
  }

  .card-icon i {
    font-size: 36px;
  }

  .white-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .white-card p {
    font-size: 16px;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-content .lead {
    font-size: 1.4rem;
    max-width: 90%;
  }

  .cta-section {
    padding: 100px 0;
  }

  .cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }

  .cta-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 90%;
  }

  .btn-primary {
    font-size: 1.3rem;
    padding: 1.4rem 3.5rem;
  }

  .stat-number {
    font-size: 2rem !important;
  }

  .stat-label {
    font-size: 1.15rem !important;
  }

  .stat-card {
    padding: 40px 20px;
    margin-bottom: 25px;
    border-radius: 24px;
  }

  .stats-section {
    padding: 100px 0;
  }

  .timeline-section h2 {
    font-size: 1.7rem !important;
    line-height: 1.2 !important;
  }
  .timeline-content h3 {
    font-size: 1.05rem !important;
  }
  .timeline-content p {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 575px) {
  .expertise-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .section-subtitle {
    font-size: 0.95rem !important;
    color: #888 !important;
    font-weight: 400 !important;
    margin-bottom: 0.5rem !important;
  }

  .white-help-box {
    padding: 35px 25px;
    margin-bottom: 50px;
    border-radius: 20px;
  }

  .help-content h3 {
    font-size: 22px;
  }

  .help-content p {
    font-size: 15px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-left: 15px;
    border-radius: 15px;
  }

  .feature-icon i {
    font-size: 22px;
  }

  .feature-content h4 {
    font-size: 18px;
  }

  .feature-content p {
    font-size: 14px;
  }

  .white-card {
    padding: 30px 20px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .card-icon i {
    font-size: 32px;
  }

  .white-card h3 {
    font-size: 20px;
  }

  .white-card p {
    font-size: 15px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content .lead {
    font-size: 1.2rem;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-section h2 {
    font-size: 1.2rem;
  }

  .cta-section p {
    font-size: 1.2rem;
  }

  .btn-primary {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
  }

  .stat-number {
    font-size: 1.7rem !important;
  }

  .stat-label {
    font-size: 1.05rem !important;
  }

  .services-section .service-card {
    margin-bottom: 18px !important;
  }
  .services-section .row > [class*="col-"] {
    margin-bottom: 18px !important;
  }
}

/* Expertise Section - Advanced 2025 Approach */
.expertise-section {
  background-color: #ffffff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Enhanced Typography for Arabic Text - Black and Smaller */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0.4rem;
  color: #000000;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: none;
}

/* Remove all gradient and shadow effects */
.section-title,
.help-content h3 {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #000000;
  text-shadow: none;
}

.section-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  color: #444444;
  max-width: 850px;
  margin: 0 auto 1.2rem;
  line-height: 1.6;
  letter-spacing: 0;
}

/* Improve heading clarity */
h1, h2, h3, h4, h5, h6 {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.help-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
  letter-spacing: 0;
  line-height: 1.3;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000000;
  letter-spacing: 0;
}

.white-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000000;
  letter-spacing: 0;
}

.expertise-section .row.mb-5,
.expertise-section .text-center.mb-5 {
  margin-bottom: 0.5rem !important;
}

.expertise-section .mt-5.pt-5 {
  margin-top: 3rem !important;
  padding-top: 0 !important;
}

/* How We Help Section - Custom Card Grid Layout */
.white-help-box {
  background: #f8fbfc;
  border-radius: 22px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 181, 173, 0.06);
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  grid-template-areas:
    ". center ."
    "left1 mid1 right1"
    "left2 . right2";
  gap: 32px;
  align-items: stretch;
}

.white-help-feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 181, 173, 0.04);
  border: none;
  padding: 32px 20px 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.white-help-feature:nth-child(2) {
  background: #e6f8f7;
  box-shadow: 0 8px 32px rgba(0,181,173,0.10);
  border: 2px solid #00b5ad1a;
}

.white-help-feature.left1 { grid-area: left1; }
.white-help-feature.mid1 { grid-area: mid1; }
.white-help-feature.right1 { grid-area: right1; }
.white-help-feature.left2 { grid-area: left2; }
.white-help-feature.right2 { grid-area: right2; }

.white-help-feature .feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 16px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0, 181, 173, 0.07);
}

.white-help-feature .feature-icon i {
  font-size: 26px;
  color: #00b5ad;
}

.white-help-feature h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.white-help-feature p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Why Choose Us Section - Ultra Modern Cards */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 30px;
}

.grid-item-1 {
  grid-column: span 8;
}

.grid-item-2 {
  grid-column: span 4;
}

.grid-item-3 {
  grid-column: span 4;
}

.grid-item-4 {
  grid-column: span 4;
}

.grid-item-5 {
  grid-column: span 4;
}

.white-card {
  background: var(--white);
  border-radius: 22px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.white-card.featured {
  background: linear-gradient(180deg, rgba(0, 181, 173, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: var(--shadow-medium);
}

.card-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 181, 173, 0.06);
  backdrop-filter: blur(8px);
  transform: perspective(1000px) rotateX(3deg);
}

.card-icon i {
  font-size: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.white-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--secondary-color);
  letter-spacing: -0.01em;
}

.white-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.005em;
}
