:root {
  /* Color System - Light Mode */
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --text-primary: #111827;
  --text-secondary: #374151;
  --text-muted: #6b7280;
  --border-primary: #e5e7eb;
  --border-secondary: #d1d5db;
  --shadow-color: rgba(0, 0, 0, 0.1);

  /* Brand Colors */
  --primary-blue: #3b82f6;
  --primary-green: #10b981;
  --primary-purple: #8b5cf6;
  --accent-orange: #f59e0b;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Typography */
  --font-primary: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", serif;
  --font-sans-serif: "Inter", sans-serif;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
}

body.dark-mode {
  /* Color System - Dark Mode */
  --bg-primary: #111827; /* Dark Blue-Gray */
  --bg-secondary: #1f2937; /* Lighter Blue-Gray */
  --bg-tertiary: #374151; /* Even Lighter Blue-Gray */
  --text-primary: #f9fafb; /* Off-White */
  --text-secondary: #d1d5db; /* Light Gray */
  --text-muted: #9ca3af; /* Muted Gray */
  --border-primary: #374151;
  --border-secondary: #4b5563;
  --shadow-color: rgba(0, 0, 0, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg-primary);
  overflow-x: hidden;
  transition: background-color var(--transition-normal),
    color var(--transition-normal);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 1px 2px 0 var(--shadow-color);
}
.shadow-md {
  box-shadow: 0 4px 6px -1px var(--shadow-color),
    0 2px 4px -2px var(--shadow-color);
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px var(--shadow-color),
    0 4px 6px -4px var(--shadow-color);
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px var(--shadow-color),
    0 8px 10px -6px var(--shadow-color);
}

/* Animated Background */
.bg-animated {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 50%,
    rgba(16, 185, 129, 0.05) 100%
  );
}
body.dark-mode .bg-animated {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.08) 0%,
    rgba(139, 92, 246, 0.08) 50%,
    rgba(16, 185, 129, 0.08) 100%
  );
}

.float-element {
  position: absolute;
  background: var(--gradient-primary);
  opacity: 0.1;
  border-radius: 50%;
  animation: float-smooth 20s infinite ease-in-out;
}
body.dark-mode .float-element {
  opacity: 0.05;
}

.element-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.element-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 20%;
  animation-delay: 4s;
}
.element-3 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 10%;
  animation-delay: 8s;
}
.element-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 30%;
  animation-delay: 12s;
}
.element-5 {
  width: 140px;
  height: 140px;
  top: 20%;
  right: 30%;
  animation-delay: 16s;
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: mesh-float 15s infinite ease-in-out;
}
body.dark-mode .mesh-orb {
  opacity: 0.15;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.orb-2 {
  width: 250px;
  height: 250px;
  background: var(--gradient-secondary);
  top: 50%;
  right: 20%;
  animation-delay: 5s;
}
.orb-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
  bottom: 20%;
  left: 40%;
  animation-delay: 10s;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-primary);
  z-index: 1000;
  transition: all var(--transition-normal);
}
body.dark-mode .header {
  background: rgba(31, 41, 55, 0.8);
}

.navbar {
  padding: var(--space-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.nav-logo:hover {
  transform: scale(1.05);
}
.brand-title {
  font-family: var(--font-sans-serif);
  font-size: 1.11rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.navbar-links {
  display: flex;
  gap: var(--space-8);
}
.nav-link {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: color var(--transition-normal);
}
.nav-link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
  transform: translateX(-50%);
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}
.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-full);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.dark-mode-toggle:hover {
  border-color: var(--primary-blue);
}
.dark-mode-toggle i {
  font-size: 1rem;
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.dark-mode-toggle .fa-sun {
  color: #f59e0b;
}
.dark-mode-toggle .fa-moon {
  color: var(--primary-blue);
}
.dark-mode-toggle .fa-sun {
  transform: translateY(150%);
  opacity: 0;
}
body.dark-mode .dark-mode-toggle .fa-sun {
  transform: translateY(0);
  opacity: 1;
}
body.dark-mode .dark-mode-toggle .fa-moon {
  transform: translateY(-150%);
  opacity: 0;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 var(--space-2);
  font-size: 1.5rem;
  color: var(--text-primary);
  z-index: 1001;
  transition: color var(--transition-fast);
}

.mobile-menu-toggle:hover {
  color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 120px; /* Space for fixed header */
  padding-bottom: var(--space-16);
  position: relative;
}
.hero-content {
  max-width: 800px;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-blue);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-6);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-taglines {
  height: 3rem; /* Fixed height for smooth transition */
  margin-bottom: var(--space-8);
  position: relative;
  overflow: hidden;
}
.tagline-wrapper {
  position: relative;
  height: 100%;
}
.hero-tagline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--text-muted);
  font-style: italic;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-slow);
}
.hero-tagline.active {
  opacity: 1;
  transform: translateY(0);
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
}
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  min-height: 44px;
  justify-content: center;
}
.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}
.btn-secondary:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
  margin-top: var(--space-16);
  width: 100%;
}
/* Trust Marquee: Hide scrollbar, enable user scroll, and keep responsive */
.trust-marquee-container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  overflow: hidden;
  border: 1px solid var(--border-primary);
  position: relative;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}
body.dark-mode .trust-marquee-container {
  background: rgba(31, 41, 55, 0.7);
}
.trust-marquee {
  display: flex;
  gap: var(--space-8);
  will-change: transform;
  user-select: none;
  cursor: grab;
  /* Remove default animation for trust-marquee, will use JS */
  animation: none !important;
  /* Enable horizontal scroll for accessibility, but hide scrollbar */
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
}

.trust-marquee::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--bg-primary);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-primary);
  transition: all var(--transition-normal);
  flex-shrink: 0;
  width: auto;
  min-width: 0;
  max-width: none;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: visible;
}
.trust-badge:hover {
  transform: translateY(2deg);
  background: var(--bg-secondary);
  border-color: var(--primary-blue);
}
.trust-badge i {
  font-size: 1.25rem;
  color: var(--primary-blue);
  background: rgba(59, 130, 246, 0.1);
  padding: var(--space-2);
  border-radius: var(--radius-md);
}
.trust-badge span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Generic Section Styling */
section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.section-label {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-blue);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  line-height: 1.2;
}
.lead-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-primary);
  transition: all var(--transition-normal);
}
.feature-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}
.feature-item i {
  font-size: 1.25rem;
  color: var(--primary-blue);
  background: rgba(59, 130, 246, 0.1);
  padding: var(--space-2);
  border-radius: var(--radius-md);
}
.feature-item span {
  font-weight: 500;
  color: var(--text-secondary);
}

/* Counters */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-6);
}
.counter-item {
  background: var(--bg-primary);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  text-align: center;
  border: 1px solid var(--border-primary);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.counter-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}
.counter-item:hover::before {
  transform: scaleX(1);
}
.counter-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.counter-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-1);
  font-family: var(--font-display);
  font-size: 2.18rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2);
}
.counter-suffix {
  font-size: 1.5rem;
}
.counter-label {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Services Section */
.services-section {
  background: var(--bg-primary);
}
.services-container {
  overflow: hidden; /* For swiper */
}
.service-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid var(--border-primary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  z-index: 1;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(90deg) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15),
    0 12px 24px rgba(59, 130, 246, 0.1), 0 0 0 1px rgba(59, 130, 246, 0.1);
  border-color: var(--primary-blue);
  background: var(--bg-primary);
  z-index: 10;
}
/* Enhanced hover effect for dark mode */
body.dark-mode .service-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
    0 12px 24px rgba(59, 130, 246, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.2);
  background: rgba(255, 255, 255, 0.05);
}
/* Add subtle glow effect on hover */
.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.service-icon i {
  font-size: 1.5rem;
  color: #fff;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}
.service-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

/* Product Gallery Section */
.product-gallery-section {
  background: var(--bg-secondary);
}
.product-gallery-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
}
.product-gallery {
  position: relative;
  width: 100%;
  height: 100%;
}
.gallery-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95) translateZ(0);
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}
.gallery-item.active {
  opacity: 1;
  transform: scale(1) translateZ(0);
  z-index: 10;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 20;
  padding: 0;
}
.nav-btn {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-btn:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: scale(1.1);
}
#prevBtn {
  transform: translateX(-25px);
}
#nextBtn {
  transform: translateX(25px);
}
body.dark-mode .nav-btn {
  background: rgba(31, 41, 55, 0.8);
  color: var(--text-primary);
}
body.dark-mode .nav-btn:hover {
  background: var(--primary-blue);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--bg-primary);
}
.testimonials-container {
  position: relative;
}
.testimonials-swiper {
  padding-bottom: var(--space-12);
}
.testimonial-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid var(--border-primary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  z-index: 1;
}
.testimonial-card:hover {
  transform: translateY(7deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15),
    0 12px 24px rgba(59, 130, 246, 0.1), 0 0 0 1px rgba(59, 130, 246, 0.1);
  border-color: var(--primary-blue);
  background: var(--bg-primary);
  z-index: 10;
}
body.dark-mode .testimonial-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
    0 12px 24px rgba(59, 130, 246, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.2);
  background: rgba(255, 255, 255, 0.05);
}
.testimonial-content {
  margin-bottom: var(--space-6);
}
.stars {
  font-size: 1.25rem;
  color: var(--accent-orange);
  margin-bottom: var(--space-4);
}
.testimonial-card p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  position: relative;
}
.testimonial-card p::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-blue);
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-family: serif;
}
.client-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-primary);
}
.client-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
}
.client-rating {
  background: var(--gradient-secondary);
  color: #fff;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Clients Section */
.clients-section {
  background: var(--bg-secondary);
  overflow: hidden;
}
.clients-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.clients-marquee {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  width: max-content;
  will-change: transform;
  /* animation will be dynamically set by JS */
}
.client-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  border: 1px solid var(--border-primary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  z-index: 1;
}
.client-item:hover {
  transform: translate3D(2px) scale(1.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15),
    0 12px 24px rgba(59, 130, 246, 0.1), 0 0 0 1px rgba(59, 130, 246, 0.1);
  border-color: var(--primary-blue);
  background: var(--bg-secondary);
  z-index: 10;
}
body.dark-mode .client-item:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
    0 12px 24px rgba(59, 130, 246, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.2);
  background: rgba(255, 255, 255, 0.05);
}
.client-logo {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
}
.client-name {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.3;
}

/* Contact Section */
.contact-section {
  background: var(--bg-primary);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  margin-top: var(--space-12);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.contact-item {
  display: flex;
  gap: var(--space-4);
  background: var(--bg-primary);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-primary);
  transition: all var(--transition-normal);
}
.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-details h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.contact-details p {
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-details a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}
.contact-details a:hover {
  color: var(--primary-purple);
}
.social-links {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all var(--transition-normal);
}
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.social-link.whatsapp {
  background: #25d366;
}
.social-link.email {
  background: #ea4335;
}
.social-link.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
/* LinkedIn Social Link Color */
.social-link.linkedin {
  background: #0077b5;
}

/* Contact Form */
.contact-form {
  background: var(--bg-primary);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-primary);
}
.form-group {
  position: relative;
  margin-bottom: var(--space-6);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-4);
  border: 2px solid var(--border-secondary);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-primary);
  transition: all var(--transition-normal);
  color: var(--text-primary);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-group select:invalid:not(:focus) {
  color: transparent;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 3rem;
}
body.dark-mode .form-group select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.form-group label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: var(--space-4);
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
  transition: all var(--transition-normal);
  background: var(--bg-primary);
  padding: 0 var(--space-1);
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + .select-label,
.form-group select:valid + .select-label {
  top: -8px;
  transform: translateY(0);
  left: var(--space-3);
  font-size: 0.875rem;
  color: var(--primary-blue);
}
.btn-full {
  width: 100%;
  padding: var(--space-4) var(--space-6);
  font-size: 1.1rem;
}

/* Footer */
.footer-section {
  background: var(--bg-secondary);
  padding: var(--space-20) 0 var(--space-8);
  border-top: 1px solid var(--border-primary);
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}
.footer-brand-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-brand h3 {
  font-family: var(--font-sans-serif);
  font-size: 1.5rem;
  color: var(--text-primary);
}
.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.footer-brand p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}
.founders-info {
  background: var(--bg-tertiary);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
}
.founders-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-2);
}
.founders-info p:last-child {
  margin-bottom: 0;
}
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.footer-links ul,
.footer-services ul {
  list-style: none;
}
.footer-links li,
.footer-services li {
  margin-bottom: var(--space-2);
}
.footer-links a,
.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--primary-blue);
}
.footer-services li {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-contact-item i {
  color: var(--primary-blue);
  margin-top: 5px;
  flex-shrink: 0;
}
.footer-contact-item span {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.footer-bottom {
  text-align: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-primary);
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: var(--border-secondary);
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  background: var(--primary-blue);
  opacity: 1;
}

/* Animations */
@keyframes float-smooth {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
  75% {
    transform: translate(20px, -10px) rotate(3deg);
  }
}
@keyframes mesh-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* FAQ Section */
.faq-section {
  background: var(--bg-primary);
  position: relative;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: var(--space-12);
}
.faq-item {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-4);
  border: 1px solid var(--border-primary);
  overflow: hidden;
  transition: all var(--transition-normal);
  position: relative;
}
.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}
.faq-item:hover::before,
.faq-item.active::before {
  transform: scaleX(1);
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) var(--space-8);
  cursor: pointer;
  background: var(--bg-secondary);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}
.faq-question:hover {
  background: var(--bg-tertiary);
}
.faq-question span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  flex-grow: 1;
  margin-right: var(--space-4);
  line-height: 1.4;
}
.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: all var(--transition-normal);
  flex-shrink: 0;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gradient-secondary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-slow);
  background: var(--bg-primary);
}
.faq-item.active .faq-answer {
  max-height: 200px;
  animation: fadeInAnswer 0.5s ease-out;
}
.faq-answer p {
  padding: 0 var(--space-8) var(--space-6);
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition-slow);
}
.faq-item.active .faq-answer p {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}
/* FAQ Animations */
@keyframes fadeInAnswer {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive Design --- */

/* Tablet and below */
@media (max-width: 1024px) {
  .navbar-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    padding: var(--space-20) var(--space-8);
    gap: var(--space-6);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    border-left: 1px solid var(--border-primary);
    z-index: 999;
  }
  .navbar-links.active {
    display: flex;
    transform: translateX(0);
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .brand-title {
    white-space: nowrap;
    font-size: 1rem;
  }
  section {
    padding: var(--space-16) 0;
  }
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    width: 80%;
    max-width: 320px;
  }
  .counters-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .footer-content {
    text-align: center;
  }
  .footer-brand-header,
  .footer-contact-item {
    justify-content: center;
  }
  .footer-links ul,
  .footer-services ul {
    padding-left: 0;
  }
  .trust-badge {
    min-width: 280px;
    padding: var(--space-3) var(--space-4);
  }
  .contact-grid {
    gap: var(--space-8);
  }
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  #prevBtn {
    transform: translateX(-15px);
  }
  #nextBtn {
    transform: translateX(15px);
  }
  .faq-question {
    padding: var(--space-5) var(--space-6);
  }
  .faq-question span {
    font-size: 1rem;
  }
  .faq-answer p {
    font-size: 0.95rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .nav-controls {
    gap: var(--space-3);
  }
  .dark-mode-toggle {
    width: 40px;
    height: 40px;
  }
  .dark-mode-toggle i {
    font-size: 0.9rem;
  }
  section {
    padding: var(--space-12) 0;
  }
  .hero-section {
    padding-top: 100px;
    padding-bottom: var(--space-12);
  }
  .hero-title {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }
  .hero-taglines {
    height: 4.5rem;
  }
  .hero-tagline {
    font-size: 1rem;
  }
  .trust-marquee-container,
  .service-card,
  .testimonial-card,
  .contact-form,
  .faq-item {
    padding: var(--space-6);
  }
  .counters-grid {
    gap: var(--space-4);
  }
  .counter-item {
    padding: var(--space-6);
  }
  .footer-content {
    gap: var(--space-6);
  }
  .faq-question {
    padding: var(--space-4) var(--space-5);
  }
  .faq-question span {
    font-size: 0.95rem;
  }
  .faq-answer p {
    font-size: 0.9rem;
  }
}
/* --- Sticky Elements Container (Bottom-Right) --- */
#sticky-elements-container {
  position: fixed;
  bottom: 15%;
  right: var(--space-4);
  z-index: 1000;
  display: flex;
  flex-direction: column; /* Stacks items vertically */
  align-items: center; /* Centers items horizontally */
  gap: var(--space-4); /* Space between quote button and social icons */
}
/* --- Reduced Size for Sticky Social Icons --- */
#sticky-social-links .social-link {
  width: 35px; /* Reduced from 48px */
  height: 35px; /* Reduced from 48px */
}

#sticky-social-links .social-link i {
  font-size: 1rem; /* Reduced from 1.25rem */
}
/* --- New Glowing Quote Button --- */
#sticky-quote-btn {
  /* Vertical button shape */
  padding: var(--space-4) var(--space-2);
  width: 55px; /* A fixed small width */

  /* Text styling */
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem; /* Small but readable */
  text-decoration: none;
  text-align: center;
  writing-mode: vertical-rl; /* This makes the text vertical */
  transform: rotate(180deg); /* Flips the text to be readable top-to-bottom */

  /* Shiny background and glowing effect */
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);

  /* The Glow Effect using box-shadow */
  box-shadow: 0 0 5px var(--primary-blue), 0 0 10px var(--primary-blue),
    0 0 15px var(--primary-purple);

  transition: all var(--transition-normal);
  animation: glowing-border 2.5s infinite ease-in-out;
}

#sticky-quote-btn:hover {
  transform: rotate(180deg) scale(1.05); /* Enlarge on hover */
  box-shadow: 0 0 8px var(--primary-blue), 0 0 16px var(--primary-blue),
    0 0 24px var(--primary-purple);
  animation-play-state: paused;
}
/* --- Top-Center Sticky Golden Quote Button --- */
#top-quote-btn {
  /* Positioning */
  position: fixed;
  top: 95px; /* Places it just below your navbar */
  left: 50%;
  transform: translateX(-50%); /* Ensures it's perfectly centered */
  z-index: 999;

  /* Golden Style */
  background: linear-gradient(135deg, #fceabb, #f8b500);
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5), var(--shadow-lg);

  /* General Button Styles */
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg); /* Soft corners */
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-normal);
}

#top-quote-btn:hover {
  transform: translateX(-50%) scale(1.05); /* Lifts on hover */
}

#top-quote-btn i {
  color: var(--text-primary);
}

/* Simplified Social Links Styling */
#sticky-social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* --- Quote Section Styling --- */
.quote-section {
  background: var(--bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

/* Custom File Upload Button */
.form-group .file-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.form-group .file-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border: 2px solid var(--primary-blue);
  border-radius: var(--radius-lg);
  color: var(--primary-blue);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  width: 100%;
}

.form-group .file-label:hover {
  background: var(--primary-blue);
  color: #fff;
}

.form-group .file-label i {
  font-size: 1.1rem;
}

.hidden {
  display: none;
}
/* --- Google Map Styling --- */
.map-container {
  margin-top: var(--space-12);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-primary);
  line-height: 0;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}
/* --- More Opaque & Glowing Golden Button --- */
.btn-golden {
  /* Size (kept from previous version) */
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;

  /* New Style with More Opacity */
  background: linear-gradient(
    145deg,
    rgba(255, 195, 0, 0.85),
    rgba(180, 136, 17, 0.85)
  ); /* More opaque gradient */
  backdrop-filter: blur(5px); /* Reduced blur for a sharper look */
  -webkit-backdrop-filter: blur(5px);

  /* Brighter Border and Glowing Text */
  border: 1px solid rgba(252, 234, 187, 0.8); /* Brighter, more solid border */
  border-radius: var(--radius-lg);
  color: #ffffff; /* Solid white text for contrast */
  text-shadow: 0 0 8px rgba(248, 181, 0, 1); /* Intense text glow */

  /* Enhanced Glowing Box Shadow & Animation */
  box-shadow: 0 0 20px rgba(248, 181, 0, 0.6);
  animation: golden-glow-strong 3s infinite ease-in-out;
  transition: all var(--transition-normal);
}

.btn-golden:hover {
  background: linear-gradient(
    145deg,
    rgba(231, 194, 79, 0.9),
    rgba(200, 156, 8, 0.9)
  ); /* Even more opaque on hover */
  box-shadow: 0 0 30px rgba(252, 234, 187, 0.8); /* Intensify the glow on hover */
  transform: translateY(-2px);
  color: #fff;
}

.btn-golden i {
  color: inherit; /* Inherits the glowing white text color */
}

/* Keyframes for a stronger glowing animation */
@keyframes golden-glow-strong {
  0% {
    box-shadow: 0 0 20px rgba(248, 181, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 30px rgba(252, 234, 187, 0.8);
  }
  100% {
    box-shadow: 0 0 20px rgba(248, 181, 0, 0.6);
  }
}
/* ================================================== */
/* Fantastic & Appealing Review CTA Section CSS   */
/* ================================================== */
.share-story-section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

/* Adds a subtle, elegant background texture */
.share-story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 90deg at 50% 50%,
    rgba(59, 130, 246, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 50%,
    rgba(59, 130, 246, 0.05) 100%
  );
  animation: spin-background 20s linear infinite;
  z-index: 0;
}

body.dark-mode .share-story-section::before {
  background: conic-gradient(
    from 90deg at 50% 50%,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 50%,
    rgba(59, 130, 246, 0.1) 100%
  );
}

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

.share-story-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

body.dark-mode .share-story-content {
  background: rgba(31, 41, 55, 0.7);
  border-color: rgba(75, 85, 99, 0.8);
}

.share-story-header {
  margin-bottom: var(--space-8);
}

.five-stars {
  font-size: 2rem;
  color: transparent;
  background: linear-gradient(135deg, #fbbc05, #ffcd3c);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: var(--space-4);
  animation: star-shine 2.5s infinite;
}

@keyframes star-shine {
  0%,
  100% {
    text-shadow: 0 0 5px #fbbc05, 0 0 10px #fbbc05, 0 0 20px #fbbc05;
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 10px #ffda75, 0 0 20px #ffda75, 0 0 40px #ffda75;
    transform: scale(1.05);
  }
}

.share-story-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.share-story-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.btn-fantastic-review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-10);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Multi-layered background for depth */
  background: linear-gradient(135deg, #5a95f5 0%, #4285f4 50%, #357ae8 100%);
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4),
    inset 0 2px 2px rgba(255, 255, 255, 0.2);
}

.btn-fantastic-review::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.5s ease;
}

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

.btn-fantastic-review:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5),
    inset 0 2px 2px rgba(255, 255, 255, 0.2);
}

.btn-fantastic-review:active {
  transform: translateY(-2px) scale(1.01);
}

.btn-fantastic-review i {
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}

.btn-fantastic-review span {
  position: relative;
  z-index: 2;
}
