/* ==========================================================================
   COMPONENTS CSS - REUSABLE UI COMPONENTS
   Testimonials, Buttons, Cards, and other shared components
   Version: 2.0 - Extracted from custom-fixes.css for modular architecture
   ========================================================================== */

/* ========================================
   1. BUTTONS - ALL BUTTON STYLES
   ======================================== */

/* Base Button Styles */
.btn {
  padding: 10px 22px !important;
  font-size: 0.85rem !important;
  border-radius: var(--ang-radius-sm, 6px) !important;
  font-weight: 500;
  transition: all var(--ang-transition-normal, 0.25s ease);
}

.btn:active {
  transform: scale(0.97);
}

/* Small Buttons */
.btn-sm {
  padding: 8px 18px !important;
  font-size: 0.8rem !important;
  min-height: 36px !important;
  height: auto !important;
  width: auto !important;
}

/* Primary Button Enhancements */
.btn-primary {
  background: var(--ang-gradient-primary, linear-gradient(135deg, #77BEFF 0%, #8b5cf6 100%));
  border: none;
  position: relative;
  overflow: hidden;
  color: #fff !important;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

/* Small Primary Buttons - Enhanced */
.btn-sm.btn-primary,
.btn.btn-sm.btn-primary {
  background: linear-gradient(135deg, var(--ang-primary, #77BEFF) 0%, #5ba8f5 100%) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 2px 6px rgba(119, 190, 255, 0.3) !important;
}

.btn-sm.btn-primary:hover,
.btn.btn-sm.btn-primary:hover {
  background: linear-gradient(135deg, var(--ang-primary-dark, #5ba8eb) 0%, var(--ang-primary, #77BEFF) 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(119, 190, 255, 0.4) !important;
}

.btn-sm.btn-primary:active,
.btn.btn-sm.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(119, 190, 255, 0.3) !important;
}

.btn-sm.btn-primary:focus,
.btn.btn-sm.btn-primary:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(119, 190, 255, 0.3) !important;
}

/* Button Spacing */
.btn-sm.ms-2,
.btn.btn-sm.ms-2 {
  margin-left: 0.5rem !important;
}

/* Outline Button Polish */
.btn-outline-primary {
  border-color: var(--ang-primary, #77BEFF);
  color: var(--ang-primary, #77BEFF);
}

.btn-outline-primary:hover {
  background: var(--ang-primary, #77BEFF);
  border-color: var(--ang-primary, #77BEFF);
  color: #fff;
}

.btn-outline-light {
  border-width: 1px !important;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--ang-text-primary, #e2e8f0);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* Button with Effect/Icon */
.btn-effect {
  padding: 10px 22px !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-effect svg {
  width: 14px;
  height: 16px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-effect:hover svg {
  transform: translateX(3px);
}

/* Button with Arrow */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-arrow:hover svg {
  transform: translateX(4px);
}

/* Close Button Icon Fix */
.btn-close>i,
.offcanvas .btn-close>i {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
}

/* Home Page Button Overrides */
.home .btn-sm {
  padding: 8px 16px !important;
  font-size: 0.8125rem !important;
}

.home .btn {
  padding: 10px 24px !important;
  font-size: 0.938rem !important;
  font-weight: 600;
  border-radius: var(--ang-radius-md, 8px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(119, 190, 255, 0.2);
}

/* Newsletter/Footer button fixes */
.newsletter-form .btn-sm.btn-primary,
.home .footer-main .btn-sm,
.home .newsletter-form .btn-sm,
.site-footer .newsletter-form .btn-sm {
  padding: 8px 14px !important;
  min-height: 38px !important;
}

/* Match newsletter input height */
.newsletter-form {
  display: flex !important;
  align-items: stretch !important;
}

.newsletter-form .form-control-sm {
  height: 38px !important;
  min-height: 38px !important;
}

/* Light Theme Button Adjustments */
[data-theme="light"] .btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

[data-theme="light"] .btn-outline-light {
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--ang-text-primary);
}

[data-theme="light"] .btn-outline-light:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.3);
}

/* ========================================
   2. TESTIMONIALS - CUSTOMER REVIEWS
   ======================================== */

/* Testimonial Wrapper - Base Styles */
.testimonial-wrapper.testimonial-style-2 {
  background: var(--ang-bg-secondary, #161b22) !important;
  border: 1px solid var(--ang-border-color, rgba(255, 255, 255, 0.12));
  border-radius: var(--ang-radius-md, 8px);
  padding: 20px 18px !important;
  transition: all 0.3s ease;
}

.testimonial-wrapper.testimonial-style-2:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(119, 190, 255, 0.2);
}

/* Compact Testimonial Variant */
.testimonial-wrapper.compact {
  padding: 15px !important;
}

.testimonial-wrapper.compact .testimonial-content p {
  font-size: 0.8rem !important;
  margin-bottom: 10px;
}

/* Testimonial Ratings */
.testimonial-wrapper .testimonial-ratings {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.testimonial-wrapper .testimonial-ratings i {
  font-size: 0.75rem;
  color: #ffc107;
  margin-right: 1px;
}

/* Testimonial Content */
.testimonial-wrapper .testimonial-content p {
  font-size: 0.85rem !important;
  line-height: 1.55;
  color: var(--ang-text-secondary, #e2e8f0);
  margin-bottom: 14px;
  font-style: italic;
}

/* Testimonial Author */
.testimonial-wrapper .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-wrapper .author-info {
  flex: 1;
}

.testimonial-wrapper .author-name {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--ang-text-primary, #f1f5f9);
}

.testimonial-wrapper .author-position {
  font-size: 0.75rem;
  color: var(--ang-text-muted, #94a3b8);
  display: block;
}

/* ========================================
   3. HOME PAGE TESTIMONIALS - OPTIMIZED
   ======================================== */

.home .testimonial-wrapper.testimonial-style-2 {
  padding: 15px !important;
  background: linear-gradient(135deg, var(--ang-bg-secondary, #161b22) 0%, var(--ang-bg-tertiary, #21262d) 100%);
  border: 1px solid rgba(119, 190, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.home .testimonial-wrapper {
  padding: 15px !important;
  background: linear-gradient(135deg, var(--ang-bg-secondary, #161b22) 0%, var(--ang-bg-tertiary, #21262d) 100%);
  border: 1px solid rgba(119, 190, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.home .testimonial-wrapper .testimonial-ratings {
  margin-bottom: 10px;
}

.home .testimonial-wrapper .testimonial-ratings i {
  font-size: 0.875rem;
  margin-right: 2px;
  color: #ffc107;
}

.home .testimonial-wrapper .testimonial-content p {
  font-size: 0.938rem !important;
  line-height: 1.7;
  margin-bottom: 12px;
  color: var(--ang-text-secondary, #e2e8f0);
}

.home .testimonial-wrapper .author-name {
  font-size: 1rem !important;
  margin-bottom: 4px;
  color: var(--ang-text-primary, #f1f5f9);
}

.home .testimonial-wrapper .author-position {
  font-size: 0.875rem !important;
  color: var(--ang-text-muted, #94a3b8);
}

/* Testimonial Section Background */
.home .testimonial-section {
  background: linear-gradient(135deg, var(--ang-bg-tertiary, #21262d) 0%, var(--ang-bg-secondary, #161b22) 100%);
  padding: var(--home-space-ptb, 60px) 0;
}

/* Light Theme Testimonials */
[data-theme="light"] .testimonial-wrapper.testimonial-style-2 {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .testimonial-wrapper.testimonial-style-2:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

[data-theme="light"] .home .testimonial-wrapper {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

/* ========================================
   4. CARDS - REUSABLE CARD COMPONENTS
   ======================================== */

/* Service Card */
.service-card,
.feature-card {
  background: var(--ang-card-bg, rgba(255, 255, 255, 0.02));
  border: 1px solid var(--ang-card-border, rgba(255, 255, 255, 0.08));
  border-radius: var(--ang-radius-lg, 12px);
  padding: 24px;
  transition: all 0.3s ease;
}

.service-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--ang-card-border-hover, rgba(119, 190, 255, 0.25));
  box-shadow: var(--ang-shadow-card-hover, 0 20px 40px rgba(0, 0, 0, 0.35));
}

/* Icon Wrappers */
.service-icon-wrapper,
.why-choose-icon,
.process-icon {
  transition: all var(--ang-transition-normal, 0.25s ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .service-icon-wrapper,
.feature-card:hover .why-choose-icon {
  transform: scale(1.1);
}

/* Light Theme Cards */
[data-theme="light"] .service-card,
[data-theme="light"] .feature-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .service-card:hover,
[data-theme="light"] .feature-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* ========================================
   5. CTA BOX - CALL TO ACTION
   ======================================== */

.cta-box {
  background: linear-gradient(135deg, var(--ang-primary, #77BEFF) 0%, var(--ang-accent-purple, #8b5cf6) 100%);
  border-radius: var(--ang-radius-lg, 12px);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.cta-box .btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.cta-box .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  color: var(--ang-primary, #77BEFF);
}

/* ========================================
   6. RESPONSIVE ADJUSTMENTS
   ======================================== */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .btn {
    padding: 9px 18px !important;
    font-size: 0.813rem !important;
  }

  .btn-sm {
    padding: 7px 14px !important;
    font-size: 0.75rem !important;
  }

  .testimonial-wrapper .testimonial-content p {
    font-size: 0.813rem !important;
  }

  .home .testimonial-wrapper .testimonial-content p {
    font-size: 0.875rem !important;
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .btn {
    padding: 8px 16px !important;
    font-size: 0.75rem !important;
  }

  .btn-sm {
    padding: 6px 12px !important;
    font-size: 0.7rem !important;
  }

  .testimonial-wrapper.testimonial-style-2 {
    padding: 16px !important;
  }

  .testimonial-wrapper .testimonial-content p {
    font-size: 0.75rem !important;
    line-height: 1.5;
  }

  .testimonial-wrapper .author-name {
    font-size: 0.813rem;
  }

  .testimonial-wrapper .author-position {
    font-size: 0.7rem;
  }

  .cta-box {
    padding: 30px 20px;
  }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
  .btn-effect svg,
  .btn-arrow svg {
    width: 12px;
    height: 12px;
  }

  .home .testimonial-wrapper .testimonial-content p {
    font-size: 0.813rem !important;
  }
}

/* ========================================
   7. ANIMATIONS
   ======================================== */

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   PROCESS TIMELINE - HOW WE WORK SECTION
   ========================================================================== */

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 20px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--ang-primary, #77BEFF), #8b5cf6, #ec4899, var(--ang-primary, #77BEFF));
  opacity: 0.3;
}

.process-step {
  position: relative;
  text-align: center;
  flex: 1;
  max-width: 220px;
}

.process-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ang-primary, #77BEFF);
  background: rgba(119, 190, 255, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
}

.process-content {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 16px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.process-step:hover .process-content {
  border-color: rgba(119, 190, 255, 0.2);
  transform: translateY(-4px);
}

.process-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(119, 190, 255, 0.15), rgba(139, 92, 246, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.process-icon i {
  font-size: 1.25rem;
  color: var(--ang-primary, #77BEFF);
}

.process-content h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ang-text-heading, #f1f5f9);
  margin-bottom: 8px;
}

.process-content p {
  font-size: 0.8rem;
  color: var(--ang-text-secondary, #94a3b8);
  margin: 0;
  line-height: 1.5;
}

/* Process Timeline - Light Theme */
[data-theme="light"] .process-content {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .process-step:hover .process-content {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .process-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
}

[data-theme="light"] .process-icon i {
  color: #3b82f6;
}

[data-theme="light"] .process-number {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

/* ==========================================================================
   TECH PILLS & BADGES
   ========================================================================== */

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
}

.tech-pill:hover {
  background: rgba(119, 190, 255, 0.15);
  border-color: rgba(119, 190, 255, 0.3);
  color: var(--ang-primary, #77BEFF);
}

.tech-pill i {
  font-size: 0.875rem;
}

[data-theme="light"] .tech-pill {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #475569;
}

[data-theme="light"] .tech-pill:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

/* ==========================================================================
   COUNTER / STATS COMPONENTS
   ========================================================================== */

.counter-compact .counter-number {
  font-size: 1.75rem !important;
  font-weight: 700;
}

.counter-compact .counter-title {
  font-size: 0.875rem !important;
  color: var(--ang-text-muted, #94a3b8);
}

.counter-compact .counter-number .timer {
  font-size: 1.75rem !important;
}

/* Stats Items */
.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ang-primary, #77BEFF);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--ang-text-muted, #94a3b8);
  margin-top: 4px;
}

[data-theme="light"] .stat-number {
  color: #3b82f6;
}

/* ==========================================================================
   HEADER & NAVIGATION FIXES
   ========================================================================== */

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Ensure hamburger icon visible in both modes */
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  background-color: var(--ang-text-primary, #e2e8f0) !important;
}

[data-theme="light"] .hamburger-inner,
[data-theme="light"] .hamburger-inner::before,
[data-theme="light"] .hamburger-inner::after {
  background-color: #1e293b !important;
}

/* Header sticky behavior */
.header.is-sticky {
  z-index: var(--ang-z-fixed, 1030) !important;
}

.offcanvas {
  z-index: calc(var(--ang-z-modal, 1050) + 1) !important;
}

/* ==========================================================================
   RESPONSIVE - PROCESS & COMPONENTS
   ========================================================================== */

@media (max-width: 991px) {
  .process-timeline {
    flex-direction: column;
    gap: 24px;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    max-width: 100%;
  }

  .process-content {
    margin-top: 8px;
  }

  .process-number {
    position: static;
    transform: none;
    display: inline-block;
    margin-bottom: 12px;
  }
}

@media (max-width: 767px) {
  .tech-pills {
    gap: 6px;
  }

  .tech-pill {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  .process-icon {
    width: 45px;
    height: 45px;
  }

  .process-icon i {
    font-size: 1.1rem;
  }

  .process-content h5 {
    font-size: 0.875rem;
  }

  .process-content p {
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   WHY CHOOSE US / FEATURE CARDS
   ========================================================================== */

/* Why Choose Item - Compact Version */
.why-choose-item {
  text-align: center;
  padding: 20px 16px;
  border-radius: var(--ang-radius-md, 8px);
  background: var(--ang-bg-secondary, #161b22);
  border: 1px solid var(--ang-border-color, rgba(255, 255, 255, 0.12));
  transition: all var(--ang-transition-normal, 0.25s ease);
  height: 100%;
}

.why-choose-item:hover {
  transform: translateY(-3px);
  border-color: var(--ang-primary, #77BEFF);
  box-shadow: 0 6px 18px rgba(119, 190, 255, 0.08);
}

.why-choose-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ang-radius-full, 50%);
  background: linear-gradient(135deg, var(--ang-primary, #77BEFF), var(--ang-primary-dark, #5ba8eb));
  transition: all 0.3s ease;
}

.why-choose-icon i {
  font-size: 1.1rem;
  color: #fff;
}

.why-choose-item h5 {
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ang-text-heading, #f1f5f9);
}

.why-choose-item p {
  font-size: 0.78rem;
  margin: 0;
  color: var(--ang-text-secondary, #94a3b8);
  line-height: 1.45;
}

/* Why Choose Card - Enhanced Version */
.why-choose-card {
  background: var(--ang-card-bg, rgba(255, 255, 255, 0.02));
  border: 1px solid var(--ang-card-border, rgba(255, 255, 255, 0.08));
  border-radius: var(--ang-radius-lg, 12px);
  padding: 24px;
  height: 100%;
  text-align: center;
  transition: all var(--ang-transition-normal, 0.25s ease);
}

.why-choose-card:hover {
  border-color: var(--ang-card-border-hover, rgba(119, 190, 255, 0.25));
  transform: translateY(-4px);
  box-shadow: var(--ang-shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.5));
}

.why-choose-card .why-choose-icon {
  width: 60px;
  height: 60px;
  background: var(--ang-gradient-subtle, linear-gradient(135deg, rgba(119, 190, 255, 0.1), rgba(139, 92, 246, 0.1)));
  border-radius: var(--ang-radius-lg, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.why-choose-card .why-choose-icon i {
  font-size: 1.5rem;
  color: var(--ang-primary, #77BEFF);
}

.why-choose-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ang-text-heading, #f1f5f9);
  margin-bottom: 10px;
}

.why-choose-card p {
  font-size: 0.85rem;
  color: var(--ang-text-secondary, #94a3b8);
  margin: 0;
  line-height: 1.5;
}

.why-choose-card:focus-within {
  border-color: var(--ang-primary, #77BEFF);
  box-shadow: 0 0 0 3px rgba(119, 190, 255, 0.2);
}

/* Why Choose - Hover Icon Effect */
.why-choose-card:hover .why-choose-icon,
.why-choose-item:hover .why-choose-icon {
  transform: scale(1.1);
}

/* Light Theme Why Choose */
[data-theme="light"] .why-choose-item {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .why-choose-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .why-choose-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

[data-theme="light"] .why-choose-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: var(--ang-shadow-card, 0 2px 8px rgba(0, 0, 0, 0.06));
}

[data-theme="light"] .why-choose-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: var(--ang-shadow-lg, 0 12px 28px rgba(0, 0, 0, 0.12));
}

/* ==========================================================================
   FORM CONTROLS & INPUTS
   ========================================================================== */

.form-control:focus,
.form-select:focus {
  border-color: var(--ang-primary, #77BEFF);
  box-shadow: 0 0 0 0.25rem rgba(119, 190, 255, 0.25);
  outline: none;
}

.form-control::placeholder {
  color: var(--ang-text-muted, #94a3b8);
  opacity: 0.8;
}

input[type="email"].form-control {
  -webkit-appearance: none;
  appearance: none;
}

.btn:disabled,
.btn-verify:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Light Theme Forms */
[data-theme="light"] .form-control:focus,
[data-theme="light"] .form-select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

/* ==========================================================================
   FEATURE ITEMS
   ========================================================================== */

.feature-item {
  padding: 20px;
  background: var(--ang-card-bg, rgba(255, 255, 255, 0.02));
  border: 1px solid var(--ang-card-border, rgba(255, 255, 255, 0.08));
  border-radius: var(--ang-radius-md, 8px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--ang-card-border-hover, rgba(119, 190, 255, 0.25));
  transform: translateY(-2px);
}

.feature-item i {
  font-size: 2rem;
  color: var(--ang-primary, #77BEFF);
  margin-bottom: 12px;
  display: block;
}

[data-theme="light"] .feature-item {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .feature-item:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   OWL CAROUSEL & SLIDERS
   ========================================================================== */

/* GPU acceleration for smooth animations */
.owl-carousel,
.owl-item,
.swiper-slide {
  will-change: transform, opacity;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Carousel navigation */
.owl-carousel .owl-nav button,
.swiper-button-next,
.swiper-button-prev {
  background: var(--ang-bg-secondary, #161b22) !important;
  color: var(--ang-text-primary, #e2e8f0) !important;
  border: 1px solid var(--ang-border-color, rgba(255, 255, 255, 0.12));
  transition: all 0.3s ease;
}

.owl-carousel .owl-nav button:hover,
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--ang-primary, #77BEFF) !important;
  color: #fff !important;
  border-color: var(--ang-primary, #77BEFF);
}

[data-theme="light"] .owl-carousel .owl-nav button,
[data-theme="light"] .swiper-button-next,
[data-theme="light"] .swiper-button-prev {
  background: #ffffff !important;
  color: #1e293b !important;
  border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .owl-carousel .owl-nav button:hover,
[data-theme="light"] .swiper-button-next:hover,
[data-theme="light"] .swiper-button-prev:hover {
  background: #3b82f6 !important;
  color: #ffffff !important;
  border-color: #3b82f6;
}

/* ==========================================================================
   RESPONSIVE - WHY CHOOSE & FEATURES
   ========================================================================== */

@media (max-width: 767px) {
  .why-choose-item,
  .why-choose-card {
    padding: 18px 14px;
  }

  .why-choose-icon {
    width: 44px;
    height: 44px;
  }

  .why-choose-card .why-choose-icon {
    width: 54px;
    height: 54px;
  }

  .why-choose-icon i {
    font-size: 1rem;
  }

  .why-choose-card .why-choose-icon i {
    font-size: 1.35rem;
  }

  .why-choose-item h5 {
    font-size: 0.85rem;
  }

  .why-choose-card h5 {
    font-size: 0.938rem;
  }

  .why-choose-item p,
  .why-choose-card p {
    font-size: 0.75rem;
  }

  .feature-item {
    padding: 16px;
  }

  .feature-item i {
    font-size: 1.75rem;
  }
}
