/* ----- style.css ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

:root {
  --primary: #D4432C;
  --primary-dark: #b33825;
  --dark: #0a0a0a;
  --light: #ffffff;
  --gray: #6b7280;
  --gradient: linear-gradient(135deg, #D4432C, #ff6b4a);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

/* ----- LOADING SCREEN ----- */
/* Add this to your style.css and about-style.css */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-wrapper.hidden {
  display: none !important;
}

.loader-container {
  text-align: center;
  animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.loader-logo {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.loader-text {
  font-size: 4rem;
  font-weight: 900;
  color: var(--light);
  letter-spacing: -2px;
  display: block;
}

.loader-text span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-spinner {
  width: 80px;
  height: 80px;
  margin: 2rem auto;
  border: 4px solid rgba(212, 67, 44, 0.1);
  border-top: 4px solid #D4432C;
  border-right: 4px solid #ff6b4a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: relative;
}

.loader-spinner::before {
  content: '✨';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.loader-bar {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin: 1.5rem auto;
  overflow: hidden;
  position: relative;
}

.loader-progress {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 10px;
  transition: width 0.3s ease;
  position: relative;
}

.loader-progress::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
  filter: blur(5px);
}

.loader-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  letter-spacing: 2px;
  animation: subtitlePulse 1.5s ease-in-out infinite;
}

@keyframes subtitlePulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ----- NAVIGATION ----- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  animation: slideDown 0.6s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--light);
  letter-spacing: -0.5px;
}

.logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--light);
}

.nav-cta {
  background: var(--gradient);
  color: white !important;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 67, 44, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

/* ----- HERO SECTION ----- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  background: radial-gradient(ellipse at 20% 50%, rgba(212, 67, 44, 0.1), transparent 70%),
              radial-gradient(ellipse at 80% 50%, rgba(212, 67, 44, 0.05), transparent 50%);
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 67, 44, 0.15);
  border: 1px solid rgba(212, 67, 44, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #ff6b4a;
  margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient);
  color: white;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 67, 44, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.2rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: #D4432C;
  top: -50px;
  right: -50px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: #ff6b4a;
  bottom: -30px;
  left: -30px;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: #D4432C;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card i {
  color: #ff6b4a;
  font-size: 1.2rem;
}

.floating-card span {
  font-weight: 500;
}

.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  left: -10%;
  animation-delay: 1.5s;
}

.card-3 {
  top: 60%;
  right: -5%;
  animation-delay: 3s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ----- SERVICES SECTION ----- */
.services {
  padding: 6rem 0;
  background: #0f0f0f;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background: rgba(212, 67, 44, 0.15);
  color: #ff6b4a;
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 67, 44, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 67, 44, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ff6b4a;
  margin-bottom: 1.5rem;
  transition: all 0.4s;
}

.service-card:hover .service-icon {
  background: var(--gradient);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-link {
  color: #ff6b4a;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.service-link:hover {
  gap: 1rem;
}

/* ----- STATS SECTION ----- */
.stats-section {
  padding: 4rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stats-item {
  text-align: center;
}

.stats-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stats-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 1rem;
}

.stats-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient);
  border-radius: 10px;
  animation: progressBar 1.5s ease-out;
}

@keyframes progressBar {
  from { width: 0; }
}

/* ----- CTA SECTION ----- */
.cta-section {
  padding: 6rem 0;
  background: radial-gradient(ellipse at center, rgba(212, 67, 44, 0.1), transparent 70%);
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* ----- FOOTER ----- */
.footer {
  background: #050505;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about .logo {
  margin-bottom: 1rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--gradient);
  color: white;
  transform: translateY(-3px);
}

.footer-links h4 {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links ul li a:hover {
  color: #ff6b4a;
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-contact i {
  color: #ff6b4a;
  width: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .floating-card {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .loader-text {
    font-size: 2.5rem;
  }
  
  .loader-bar {
    width: 200px;
  }
  
  .loader-spinner {
    width: 60px;
    height: 60px;
  }
}





/* Add these styles to your existing CSS */

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 0.8rem 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s;
  white-space: nowrap;
}

.dropdown-menu li a i {
  width: 20px;
  color: #ff6b4a;
  font-size: 1rem;
}

.dropdown-menu li a:hover {
  background: rgba(212, 67, 44, 0.1);
  color: #ff6b4a;
  padding-left: 1.8rem;
}

.dropdown-menu li a::after {
  display: none;
}

/* Dropdown Arrow Animation */
.dropdown-toggle .fa-chevron-down {
  transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle .fa-chevron-down {
  transform: rotate(180deg);
}

/* Mobile Dropdown */
@media (max-width: 768px) {
  .dropdown {
    position: static;
  }
  
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 12px;
    padding: 0.5rem 0;
    margin: 0.5rem 0;
    box-shadow: none;
    min-width: 100%;
  }
  
  .dropdown-menu.active {
    display: block;
  }
  
  .dropdown-menu li a {
    padding: 0.6rem 1rem 0.6rem 2rem;
    font-size: 0.9rem;
  }
  
  .dropdown-menu li a:hover {
    padding-left: 2.2rem;
  }
  
  .dropdown:hover .dropdown-menu {
    transform: none;
  }
  
  .nav-links.active .dropdown-menu {
    display: block;
  }
}



/* ----- HOME SERVICES (3 cards) ----- */
.home-services {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 1000px;
  margin: 0 auto;
}

/* ----- VIEW ALL SERVICES BUTTON (FIXED) ----- */
.services-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--light);
  border: 2px solid rgba(212, 67, 44, 0.3);
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

.btn-view-all::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.btn-view-all:hover::before {
  left: 0;
}

.btn-view-all i,
.btn-view-all span {
  position: relative;
  z-index: 2;
}

.btn-view-all:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 67, 44, 0.3);
  color: white;
}

.btn-view-all i:last-child {
  transition: transform 0.3s;
}

.btn-view-all:hover i:last-child {
  transform: translateX(8px);
}

/* Alternative version without z-index issues - using background instead of pseudo-element */
.btn-view-all-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--light);
  border: 2px solid rgba(212, 67, 44, 0.3);
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-view-all-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 60px;
  padding: 2px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all 0.4s;
  opacity: 0;
}

.btn-view-all-alt:hover::before {
  opacity: 1;
}

.btn-view-all-alt:hover {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 67, 44, 0.3);
}

.btn-view-all-alt:hover i:last-child {
  transform: translateX(8px);
}


/* ----- WHY CHOOSE US - Modern Glass Style ----- */
.why-choose {
  padding: 6rem 0;
  background: #0f0f0f;
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 67, 44, 0.03), transparent 70%);
  pointer-events: none;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.choose-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 67, 44, 0.05), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
}

.choose-card:hover::before {
  opacity: 1;
}

.choose-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.choose-card:hover::after {
  transform: scaleX(1);
}

.choose-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 67, 44, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.choose-icon-wrapper {
  min-width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(212, 67, 44, 0.15), rgba(255, 107, 74, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ff6b4a;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  border: 1px solid rgba(212, 67, 44, 0.1);
}

.choose-card:hover .choose-icon-wrapper {
  background: var(--gradient);
  color: white;
  transform: scale(1.1) rotate(-5deg) translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 67, 44, 0.3);
}

.choose-card .choose-content {
  flex: 1;
}

.choose-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--light);
  font-weight: 700;
}

.choose-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-size: 0.95rem;
}

.choose-card .card-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  transition: all 0.5s;
}

.choose-card:hover .card-number {
  color: rgba(212, 67, 44, 0.08);
  transform: scale(1.2);
}

/* ----- OUR PROCESS - Minimal Clean Style ----- */
.our-process {
  padding: 6rem 0;
  background: var(--dark);
  position: relative;
}

.our-process::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 67, 44, 0.1), transparent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* Connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(212, 67, 44, 0.3),
    rgba(212, 67, 44, 0.6),
    rgba(212, 67, 44, 0.3)
  );
  opacity: 0.3;
}

.process-card {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background: transparent;
  border-radius: 0;
  border: none;
}

.process-card .step-connector {
  position: absolute;
  top: 70px;
  right: -1.25rem;
  width: 2.5rem;
  height: 2px;
  background: rgba(212, 67, 44, 0.2);
  opacity: 0;
  transition: opacity 0.4s;
}

.process-card:hover .step-connector {
  opacity: 1;
}

.process-card:last-child .step-connector {
  display: none;
}

.process-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: all 0.4s;
  font-family: 'Inter', monospace;
}

.process-card:hover .process-number {
  color: rgba(212, 67, 44, 0.15);
  transform: scale(1.1);
}

.process-icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon-circle .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(212, 67, 44, 0.1);
  transition: all 0.5s;
}

.process-icon-circle .ring-2 {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px dashed rgba(212, 67, 44, 0.05);
  transition: all 0.5s;
}

.process-card:hover .ring {
  border-color: rgba(212, 67, 44, 0.3);
  transform: scale(1.05);
}

.process-card:hover .ring-2 {
  border-color: rgba(212, 67, 44, 0.15);
  transform: rotate(180deg);
}

.process-icon-circle i {
  font-size: 1.8rem;
  color: #ff6b4a;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}

.process-card:hover .process-icon-circle i {
  transform: scale(1.1);
  color: #ff8a6a;
}

.process-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--light);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.process-card h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.4s;
}

.process-card:hover h3::after {
  width: 60%;
}

.process-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid::before {
    display: none;
  }
  
  .process-card .step-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .choose-card {
    padding: 2rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  
  .choose-card .card-number {
    display: none;
  }
  
  .choose-icon-wrapper {
    margin: 0 auto;
  }
  
  .process-grid::before {
    display: none;
  }
  
  .process-card {
    padding: 2rem 1rem;
  }
}