/* ===== VARIABLES ===== */
:root {
  --primary: #ff6b35;
  --primary-dark: #e55a2b;
  --secondary: #2a9d8f;
  --accent: #e9c46a;
  --dark: #264653;
  --light: #f8f9fa;
  --gray: #6c757d;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
  
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--gray);
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background: #23867a;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-white {
  background: white;
  color: var(--dark);
}

.btn-white:hover {
  background: #f1f1f1;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
}

.logo-icon {
  color: var(--primary);
  font-size: 1.8rem;
}

.logo span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.nav-cta::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: left;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(42, 157, 143, 0.15) 0%, transparent 25%),
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 25px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}

.hero-subtitle {
  display: block;
  font-size: 2.8rem;
  color: #ff6b35;
  margin-top: 12px;
  font-weight: 700;
  text-shadow: 0 2px 15px rgba(255, 107, 53, 0.4);
  position: relative;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  border-radius: 2px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Modern Trust Bar */
.trust-bar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 10px 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 107, 53, 0.1), 
    transparent);
  transition: left 0.6s ease;
}

.trust-bar:hover::before {
  left: 100%;
}

.trust-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.stars-compact {
  display: flex;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;
}

.stars-compact i {
  color: #FFD700;
  font-size: 0.65rem;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
  animation: sparkle 3s ease-in-out infinite;
}

.stars-compact i:nth-child(1) { animation-delay: 0s; }
.stars-compact i:nth-child(2) { animation-delay: 0.3s; }
.stars-compact i:nth-child(3) { animation-delay: 0.6s; }
.stars-compact i:nth-child(4) { animation-delay: 0.9s; }
.stars-compact i:nth-child(5) { animation-delay: 1.2s; }

@keyframes sparkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.rating-compact {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.6rem;
  font-weight: 600;
  margin-left: 5px;
  white-space: nowrap;
}

.divider {
  width: 1px;
  height: 16px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  flex-shrink: 0;
}

.features-compact {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.feature-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 107, 53, 0.2), 
    transparent);
  transition: left 0.5s ease;
}

.feature-pill:hover::before {
  left: 100%;
}

.feature-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.feature-dot {
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.feature-dot::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-pill:hover .feature-dot::after {
  opacity: 0.3;
}

.feature-pill span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.55rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.1px;
}

/* Mobile Responsiveness - No scrolling needed */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .trust-bar {
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 90%;
  }
  
  .trust-content {
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .stars-compact i {
    font-size: 0.6rem;
  }
  
  .rating-compact {
    font-size: 0.55rem;
    margin-left: 4px;
  }
  
  .divider {
    height: 14px;
  }
  
  .features-compact {
    gap: 4px;
  }
  
  .feature-pill {
    padding: 2px 6px;
    gap: 3px;
  }
  
  .feature-pill span {
    font-size: 0.5rem;
  }
  
  .feature-dot {
    width: 3px;
    height: 3px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.6rem;
  }
  
  .trust-bar {
    padding: 6px 10px;
    max-width: 95%;
  }
  
  .trust-content {
    gap: 6px;
  }
  
  .stars-compact {
    gap: 0.5px;
  }
  
  .stars-compact i {
    font-size: 0.55rem;
  }
  
  .rating-compact {
    font-size: 0.5rem;
  }
  
  .feature-pill span {
    font-size: 0.45rem;
  }
  
  .divider {
    height: 12px;
  }
}

/* Extra small devices - Stack if absolutely necessary */
@media (max-width: 360px) {
  .trust-content {
    flex-direction: column;
    gap: 8px;
  }
  
  .divider {
    display: none;
  }
  
  .features-compact {
    gap: 6px;
  }
}
/* ===== SERVICES SECTION ===== */
.services {
  padding: 6rem 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  font-size: 2rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: rotateY(180deg);
}

.service-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-desc {
  color: var(--gray);
  line-height: 1.6;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose {
  padding: 6rem 0;
  background: #f8f9fa;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature:hover .feature-icon {
  transform: rotate(15deg) scale(1.1);
  background: var(--secondary);
}

.feature-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.feature-content p {
  color: var(--gray);
}

.why-choose-grid img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.why-choose-grid img:hover {
  transform: scale(1.02);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: var(--primary);
  opacity: 0.03;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.about-content {
  max-width: 800px;
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  animation: slideInUp 0.8s ease-out 0.3s forwards;
}

.about-content .section-subtitle {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50px;
  animation: fadeInUp 0.6s ease-out 0.4s forwards;
  opacity: 0;
}

.about-content .section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.8rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #2c3e50, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.6s ease-out 0.6s forwards;
  opacity: 0;
}

.about-content .section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #3498db);
  margin: 1rem auto 0;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  animation: expandWidth 0.8s ease-out 1s forwards;
}

.small-section-text {
  margin-bottom: 1.5rem;
  color: var(--gray);
  line-height: 1.8;
  font-size: 1.1rem;
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.small-section-text:nth-of-type(2) {
  animation-delay: 1s;
}

/* Updated Stats Section - Centered Single Row on Desktop */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.about-stats li {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  flex: 0 1 200px;
  min-width: 160px;
}

.about-stats li:nth-child(1) { animation-delay: 1.2s; }
.about-stats li:nth-child(2) { animation-delay: 1.4s; }
.about-stats li:nth-child(3) { animation-delay: 1.6s; }
.about-stats li:nth-child(4) { animation-delay: 1.8s; }

.about-stats li:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.about-stats strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #3498db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.about-stats span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
}

/* Animations */
@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes expandWidth {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }
  
  .about-section::before {
    width: 300px;
    height: 300px;
    top: -30%;
    right: -20%;
  }
  
  .about-container {
    padding: 0 1.5rem;
  }
  
  .about-content .section-subtitle {
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
  }
  
  .about-content .section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  
  .small-section-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }
  
  /* Mobile Stats - 2x2 Grid */
  .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  
  .about-stats li {
    padding: 1.5rem 1rem;
    flex: none;
  }
  
  .about-stats strong {
    font-size: 2rem;
  }
  
  .about-stats span {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 3rem 0;
  }
  
  .about-container {
    padding: 0 1rem;
  }
  
  .about-content .section-title {
    font-size: 1.8rem;
  }
  
  .small-section-text {
    font-size: 0.95rem;
  }
  
  .about-stats {
    gap: 1.2rem;
    margin-top: 2rem;
  }
  
  .about-stats li {
    padding: 1.2rem 0.8rem;
  }
  
  .about-stats strong {
    font-size: 1.8rem;
  }
  
  .about-stats span {
    font-size: 0.85rem;
  }
}

/* For very small screens */
@media (max-width: 360px) {
  .about-content .section-title {
    font-size: 1.6rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .about-stats li {
    padding: 1rem;
  }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-stats {
    gap: 1.5rem;
  }
  
  .about-stats li {
    padding: 1.8rem 1.2rem;
    flex: 0 1 180px;
  }
  
  .about-stats strong {
    font-size: 2.2rem;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ===== WORK SECTION ===== */
/* ===== WORK SECTION ===== */
.work {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.work::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(42, 157, 143, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.work .container {
  position: relative;
  z-index: 1;
}

.work .section-subtitle {
  text-align: center;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.work .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark);
  position: relative;
}

.work .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 1rem 0;
}

.work-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(255, 107, 53, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.work-card:nth-child(1) { animation-delay: 0.1s; }
.work-card:nth-child(2) { animation-delay: 0.2s; }
.work-card:nth-child(3) { animation-delay: 0.3s; }

.work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(42, 157, 143, 0.03) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

.work-card:hover::before {
  opacity: 1;
}

.card-banner {
  overflow: hidden;
  height: 220px;
  position: relative;
}

.card-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-card:hover .card-banner::after {
  opacity: 1;
}

.card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
  filter: brightness(0.95);
}

.work-card:hover .card-banner img {
  transform: scale(1.15);
  filter: brightness(1);
}

.service-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}

.card-content {
  padding: 2rem;
  position: relative;
  background: white;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--dark);
  font-weight: 700;
  position: relative;
  padding-bottom: 0.8rem;
}

.card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.work-card:hover .card-title::after {
  width: 80px;
}

.card-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.original-price {
  text-decoration: line-through;
  color: var(--gray);
  font-size: 1rem;
  font-weight: 500;
}

.discounted-price {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.3rem;
  background: rgba(255, 107, 53, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.discounted-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.work-card:hover .discounted-price::before {
  left: 100%;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.service-feature {
  background: rgba(42, 157, 143, 0.1);
  color: var(--secondary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.3s ease;
}

.service-feature:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-2px);
}

.service-feature i {
  font-size: 0.7rem;
}

.card-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
  z-index: 2;
}

.card-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), #d4491f);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.6);
}

.card-btn .material-symbols-rounded {
  font-size: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.6);
  }
  100% {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .work {
    padding: 4rem 0;
  }
  
  .work .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .work-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .work-card {
    margin: 0 0.5rem;
  }
  
  .card-banner {
    height: 200px;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .discounted-price {
    font-size: 1.2rem;
  }
  
  .service-features {
    gap: 0.6rem;
  }
  
  .service-feature {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }
  
  .card-btn {
    width: 45px;
    height: 45px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 480px) {
  .work {
    padding: 3rem 0;
  }
  
  .work .section-title {
    font-size: 1.8rem;
  }
  
  .work-grid {
    gap: 1.5rem;
  }
  
  .card-banner {
    height: 180px;
  }
  
  .card-content {
    padding: 1.2rem;
  }
  
  .card-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .service-features {
    margin-bottom: 1.5rem;
  }
}
/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(45deg, var(--dark), var(--secondary), var(--primary));
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  opacity: 0.03;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a3341 100%);
  color: white;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./assets/images/cta-bg.jpg') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: white;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

.cta div {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  font-size: 0.8rem;
}

.cta div:hover {
  transform: scale(1.05);
}

.cta i {
  font-size: 0.9rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.faq-item.active {
  box-shadow: var(--shadow-lg);
}

.faq-question {
  display: flex;
  gap: 1rem;
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(180deg);
}

.faq-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--gray);
  transition: var(--transition);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 1rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 6rem 0;
  background: white;
}

.swiper {
  width: 100%;
  padding: 2rem 0;
}

.swiper-slide {
  height: auto;
}

.testimonial {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-rating {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.author-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--gray);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}

/* ===== CONTACT CTA SECTION ===== */
.contact-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

.contact-cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: white;
}

.contact-cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer-section {
  position: relative;
  padding: 4rem 0 2rem;
  background: var(--dark);
  color: white;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./assets/images/footer-bg.jpg') no-repeat center center/cover;
  opacity: 0.05;
  z-index: 0;
}

.footer-section .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-brand p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
  transform: translateX(5px);
}

.footer-links i {
  font-size: 0.8rem;
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 1.8rem;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes starPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.5));
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 3rem;
    gap: 2rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero {
    padding-top: 100px;
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-features {
    gap: 20px;
  }
  
  .feature-card {
    padding: 15px;
    min-width: 120px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.2rem;
  }
  
  .feature-card span {
    font-size: 0.85rem;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-content .section-title,
  .about-content .section-subtitle {
    text-align: center;
  }
  
  .about-content .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
  
 .whatsapp-float {
  position: fixed;  /* Ensure it's floating */
  bottom: 0.5rem;   /* Move slightly further down */
  left: 0.1rem;     /* Move slightly further to the left */
  z-index: 1000;    /* Optional: Keep it on top of other elements */
}

.whatsapp-float a {
  width: 55px;
  height: 55px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 50%;
  background-color: #25d366;
  color: white;
}


@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .work-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    gap: 1.5rem;
  }
  
  .about-stats li {
    flex: 0 0 calc(50% - 0.75rem);
  }
  
  .trust-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .feature-card {
    flex-direction: row;
    min-width: 200px;
    padding: 15px 20px;
    gap: 15px;
    width: 100%;
    max-width: 250px;
  }
  
  .feature-card span {
    text-align: left;
    flex: 1;
  }
  
  .stars {
    gap: 5px;
  }
  
  .stars i {
    font-size: 1.1rem;
  }
  
  .cta div {
    font-size: 0.7rem;
  }
}