:root {
  --primary: rgba(135, 100, 255, 0.9);
  --primary-solid: rgb(135, 100, 255);
  --primary-dark: rgb(110, 75, 235);
  --secondary: #D8D2FF;
  --secondary-light: #F0EDFF;
  --bg: #F4F4F7;
  --text: #1A1A1A;
  --text-light: #4A4A4A;
  --muted: #888888;
  --white: #ffffff;
  --black: #000000;
  --error: #FF4D4D;
  --success: #4CAF50;
  --section-padding: 80px;
  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --radius-pill: 100px;
  --radius-circle: 50%;
  --radius-16: 16px;
  --radius-10: 10px;
  --shadow-1: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-2: 0 10px 30px rgba(135, 100, 255, 0.1);
  --shadow-3: 0 15px 35px rgba(135, 100, 255, 0.15);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding) 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Background Styling */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(135deg, #f4f4f7 0%, #e8e7f2 100%);
}

.grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(135, 100, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(135, 100, 255, 0.05) 1px, transparent 1px);
  background-size: 25px 25px;
  z-index: -1;
}

.animated-shapes {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.shape {
  position: absolute;
  background-color: var(--secondary);
  opacity: 0.4;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -150px;
  animation: floatAnimation 20s ease-in-out infinite alternate;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -100px;
  animation: floatAnimation 15s ease-in-out infinite alternate-reverse;
}

@keyframes floatAnimation {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(30px, 30px) rotate(10deg);
  }
}

/* Top Banners */
.top-contact-banner {
  background-color: var(--primary-solid);
  color: var(--white);
  padding: 12px 0;
  font-size: 0.9rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  transition: transform 0.3s ease;
}

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

.top-contact-banner .contact-info {
  display: flex;
  gap: 20px;
}

.top-contact-banner a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.top-contact-banner a:hover {
  opacity: 0.8;
}

/* Promotion Badge instead of banner */
.promo-badge {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.promo-badge:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.promo-badge i {
  font-size: 0.8rem;
}

.badge-text {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Fix Header position - remove gap */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 999;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(135, 100, 255, 0.1);
}

.header.active {
  box-shadow: var(--shadow-1);
  background-color: rgba(255, 255, 255, 0.98);
}

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

/* Fix Let's Talk button responsiveness */
@media (max-width: 992px) {
  .header .btn.btn-primary {
    display: none; /* Hide on mobile */
  }
  
  .nav-toggle-btn {
    display: block;
  }
  
  /* Alternative mobile CTA */
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
  }
  
  .mobile-cta a {
    flex: 1;
    padding: 15px;
    text-align: center;
    background-color: var(--primary-solid);
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .mobile-cta a:first-child {
    background-color: var(--white);
    color: var(--primary-solid);
    border-top: 1px solid rgba(135, 100, 255, 0.1);
  }
}

/* Fix contact form height to match map + business card */
.contact-form-wrapper {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-2);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form .btn-primary {
  margin-top: auto;
}

.promo-banner {
  background-color: var(--secondary);
  padding: 8px 0;
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 36px; /* Height of top contact banner */
  z-index: 1000;
  transition: transform 0.3s ease;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee span {
  display: inline-block;
  padding: 0 30px;
  color: var(--primary-solid);
  font-weight: 500;
  font-size: 0.9rem;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Header Styles */
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-solid);
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1002;
}

.logo-img {
  max-height: 40px;
  width:90px;
}

.pixel-icon {
  display: inline-block;
  margin-right: 8px;
  position: relative;
  width: 24px;
  height: 24px;
}

.pixel {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--primary-solid);
  border-radius: 1px;
  transition: var(--transition-1);
}

.logo:hover .pixel {
  background-color: var(--primary-dark);
}

.p1 { top: 0; left: 0; }
.p2 { top: 0; left: 8px; }
.p3 { top: 0; left: 16px; }
.p4 { top: 8px; left: 0; }
.p5 { top: 8px; left: 8px; }
.p6 { top: 16px; left: 0; }
.p7 { top: 16px; left: 8px; }

/* Navigation */
.navbar {
  display: flex;
  align-items: center;
}

.navbar-list {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
  transition: var(--transition-2);
}

.navbar-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition-1);
  padding: 5px 0;
  position: relative;
}

.navbar-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-solid);
  transition: var(--transition-1);
}

.navbar-link:hover {
  color: var(--primary-solid);
}

.navbar-link:hover:after {
  width: 100%;
}

/* Buttons */
.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-solid);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(135, 100, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(135, 100, 255, 0.3);
  background-color: var(--primary-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-solid);
  border: 1.5px solid var(--primary-solid);
}

.btn-outline:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

.btn-light {
  background-color: var(--white);
  color: var(--primary-solid);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-solid);
  transform: translateY(-3px);
}

/* Mobile Nav Toggle */
.nav-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: var(--primary-solid);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-1);
  z-index: 1002;
}

.nav-toggle-btn:hover {
  color: var(--primary-dark);
}

/* Hero Section */
.hero {
  padding-top: 120px; /* Reduced from previous value */
  padding-bottom: 80px;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  text-align: left;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-16);
  padding: 40px;
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-solid);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-solid), rgba(135, 100, 255, 0.1));
  border-radius: 2px;
}

.hero-text {
  font-size: 1.1rem;
  margin: 20px 0 30px;
  color: var(--text);
  line-height: 1.7;
}

.btn-wrapper {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  border-radius: var(--radius-16);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  height: 450px;
}

.slides {
  position: relative;
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-16);
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: var(--white);
  transform: scale(1.2);
}

/* Counter Section */
.counter-section {
  padding: 40px 0;
  position: relative;
}

.counter-wrapper {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-16);
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.counter-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.counter-item {
  padding: 20px;
  color: var(--white);
}

.counter {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.counter-item span {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.service {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-16);
  padding: 80px 0;
  margin: 30px 0;
}

.service .grid-list {
  margin-top: 60px;
}

.grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: var(--radius-10);
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2);
}

.card-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  color: var(--primary-solid);
  font-size: 1.8rem;
  border-radius: var(--radius-circle);
  margin-bottom: 25px;
  transition: var(--transition-1);
}

.service-card:hover .card-icon {
  background-color: var(--primary-solid);
  color: var(--white);
  transform: rotateY(180deg);
}

.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 15px;
}

.card-text {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  margin-bottom: 20px;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.service-list li::before {
  content: "•";
  color: var(--primary-solid);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.btn-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-solid);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-1);
  margin-top: 15px;
}

.btn-text i {
  transition: var(--transition-1);
}

.btn-text:hover {
  color: var(--primary-dark);
}

.btn-text:hover i {
  transform: translateX(5px);
}

/* Development Process Section */
.process {
  padding: 120px 0;
  position: relative;
}

.process-cards-container {
  position: relative;
  margin-top: 70px;
  padding: 20px 0;
}

.process-flow-line {
  position: absolute;
  top: 65px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-solid), var(--secondary));
  z-index: 1;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.process-card {
  background-color: var(--white);
  border-radius: var(--radius-16);
  padding: 30px;
  box-shadow: var(--shadow-2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-solid), var(--secondary));
  opacity: 0;
  transition: all 0.4s ease;
}

.process-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-3);
}

.process-card:hover::before {
  opacity: 1;
}

.process-icon {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-light);
  color: var(--primary-solid);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  transform: rotate(0deg);
}

.process-card:hover .process-icon {
  background-color: var(--primary-solid);
  color: var(--white);
  transform: rotate(360deg);
  border-radius: 50%;
}

.process-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-solid);
  opacity: 0.15;
  position: absolute;
  top: -10px;
  right: 20px;
  z-index: 0;
  transition: all 0.4s ease;
}

.process-card:hover .process-number {
  opacity: 0.25;
  transform: scale(1.2);
}

.process-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.process-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-solid), var(--secondary));
  border-radius: 1.5px;
  transition: all 0.4s ease;
}

.process-card:hover h3::after {
  width: 80px;
}

.process-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Enhanced Process Section Styling */
.process-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.process-timeline {
  position: relative;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-solid), var(--secondary));
  border-radius: 2px;
}

.process-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 60px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--primary-solid);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(135, 100, 255, 0.1);
}

.process-card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-10);
  padding: 30px;
  box-shadow: var(--shadow-2);
  transition: var(--transition-2);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-3);
}

.process-list {
  margin-top: 15px;
  padding-left: 5px;
  list-style: none;
}

.process-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.process-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-solid);
}

/* Google Reviews Section */
.reviews {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.google-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(135, 100, 255, 0.1);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 15px;
}

.google-logo {
  height: 30px;
  width: auto;
}

.google-rating {
  display: flex;
  flex-direction: column;
}

.stars {
  color: #FFC107;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.g-icon {
  height: 20px;
  width: auto;
}

.reviews-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.reviews-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  margin-bottom: 20px;
  padding: 10px;
}

.google-review-card {
  min-width: calc(33.33% - 20px);
  background-color: var(--white);
  border-radius: var(--radius-10);
  box-shadow: var(--shadow-1);
  padding: 25px;
  transition: var(--transition-2);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.google-review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.review-stars {
  color: #FFC107;
  font-size: 0.85rem;
}

.google-icon {
  width: 24px;
  height: 24px;
}

.google-icon img {
  width: 100%;
  height: auto;
}

.review-content {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-date {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
}

.reviews-navigation {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.review-nav {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary-solid);
  border: none;
  box-shadow: var(--shadow-1);
  cursor: pointer;
  transition: var(--transition-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-nav:hover {
  background-color: var(--primary-solid);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}

/* Responsive styles for reviews */
@media (max-width: 992px) {
  .google-review-card {
    min-width: calc(50% - 15px);
  }
  
  .google-reviews-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .google-review-card {
    min-width: 85%;
  }
  
  .process-step {
    padding-left: 0;
  }
  
  .timeline-line {
    display: none;
  }
  
  .step-number {
    position: relative;
    margin-bottom: 20px;
    left: auto;
  }
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 60px;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-16);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  position: relative;
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-2);
}

.about-img:hover img {
  transform: scale(1.03);
}

.about-img::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-top: 8px solid var(--primary-solid);
  border-left: 8px solid var(--primary-solid);
  z-index: -1;
}

.about-img::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-bottom: 8px solid var(--primary-solid);
  border-right: 8px solid var(--primary-solid);
  z-index: -1;
}

.about-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.about-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-solid);
}

.about-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-features {
  list-style: none;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.feature-icon {
  min-width: 30px;
  height: 30px;
  background-color: var(--secondary);
  color: var(--primary-solid);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.about-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

/* Work Section */
.work {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 80px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.portfolio-card {
  border-radius: var(--radius-10);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  background-color: var(--white);
  transition: var(--transition-2);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2);
}

.portfolio-img {
  width: 100%;
  height: 250px;
  background-color: var(--secondary);
  position: relative;
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio-content {
  padding: 25px;
}

.portfolio-category {
  font-size: 0.85rem;
  color: var(--primary-solid);
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.portfolio-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 15px;
}

.work-cta {
  text-align: center;
  margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 35px;
  border-radius: var(--radius-10);
  box-shadow: var(--shadow-1);
  text-align: left;
  position: relative;
  transition: var(--transition-2);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2);
}

.testimonial-card:before {
  content: '\201C';
  font-family: serif;
  font-size: 5rem;
  position: absolute;
  top: 10px;
  left: 20px;
  color: var(--secondary);
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  background-color: var(--secondary);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-1);
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-name {
  font-weight: 600;
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.client-position {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Blog Section */
.blog {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--radius-10);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: var(--transition-2);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2);
}

.blog-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-2);
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--primary-solid);
  color: var(--white);
  padding: 8px 15px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  box-shadow: var(--shadow-1);
}

.blog-date span:first-child {
  font-size: 1.2rem;
  font-weight: 700;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-cta {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.faq-grid {
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: var(--radius-10);
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: var(--transition-1);
}

.faq-item.active {
  box-shadow: var(--shadow-2);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  border: none;
  transition: var(--transition-1);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition-1);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  color: var(--primary-solid);
  transition: var(--transition-1);
}

.faq-item.active .faq-question {
  background-color: var(--primary-solid);
}

.faq-item.active .faq-question h3 {
  color: var(--white);
}

.faq-item.active .faq-icon {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--white);
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-2);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text);
  position: relative;
  padding-bottom: 15px;
}

.contact-form-wrapper h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-solid), var(--secondary));
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-10);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var (--text);
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-solid);
  box-shadow: 0 0 0 3px rgba(135, 100, 255, 0.1);
  background-color: var(--white);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 20px;
}

.form-security {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-security i {
  color: var(--success);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}

.map-container {
  flex: 1;
  border-radius: var(--radius-16);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  min-height: 250px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.business-card {
  background-color: var(--white);
  border-radius: var(--radius-16);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(135, 100, 255, 0.1);
}

.card-logo {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-1);
  border: 3px solid var(--secondary-light);
}

.card-logo img {
  width: 75%;
  height: auto;
  object-fit: contain;
}

.card-title h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-solid);
  margin-bottom: 5px;
}

.card-title p {
  font-size: 0.95rem;
  color: var(--muted);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
}

.card-info {
  display: grid;
  gap: 15px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.info-item i {
  color: var(--primary-solid);
  margin-top: 4px;
  min-width: 16px;
  text-align: center;
}

.info-item a {
  color: var(--text-light);
  transition: var(--transition-1);
}

.info-item a:hover {
  color: var(--primary-solid);
}

.card-social {
  display: flex;
  gap: 15px;
  margin-top: auto;
  justify-content: center;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-circle);
  background-color: var(--secondary-light);
  color: var(--primary-solid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-icon:hover {
  background-color: var(--primary-solid);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(135, 100, 255, 0.3);
}

/* Make the form match the info height */
@media (min-width: 993px) {
  .contact-form-wrapper, .contact-info-wrapper {
    min-height: 650px;
  }
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .process-flow-line {
    display: none;
  }
  
  .process-card {
    padding: 25px;
  }
  
  .process-icon {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .process-cards {
    gap: 30px;
  }
  
  .process-card {
    padding: 20px;
  }
  
  .process-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .process-card h3 {
    font-size: 1.2rem;
  }
  
  .contact-form-wrapper {
    padding: 25px;
  }
  
  .contact-form-wrapper h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* CTA Section */
.cta {
  position: relative;
  padding: 0;
  margin: 80px 0;
}

.cta .container {
  padding: 0;
}

.cta-content {
  background-color: var(--primary-solid);
  padding: 60px 40px;
  border-radius: var(--radius-16);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
  background-size: 20px 20px;
  opacity: 0.2;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(135, 100, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  max-height: 40px;
  width: auto;
}

.footer-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-solid);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-link {
  font-size: 0.95rem;
  color: var(--text-light);
  transition: var(--transition-1);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-solid);
  opacity: 0;
  transition: var(--transition-1);
}

.footer-link:hover {
  color: var(--primary-solid);
  transform: translateX(5px);
}

.footer-link:hover::before {
  opacity: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact-icon {
  color: var(--primary-solid);
  margin-top: 4px;
}

.contact-item a {
  color: var(--text-light);
  transition: var(--transition-1);
}

.contact-item a:hover {
  color: var(--primary-solid);
}

.newsletter {
  margin-top: 30px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-solid);
}

.newsletter-form button {
  padding: 12px 20px;
  background-color: var(--primary-solid);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-1);
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(135, 100, 255, 0.1);
  font-size: 0.9rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--muted);
  transition: var(--transition-1);
}

.footer-legal a:hover {
  color: var(--primary-solid);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  z-index: 99;
  transition: var(--transition-1);
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(10deg);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-solid);
  color: var(--white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-1);
  z-index: 99;
  transition: var(--transition-1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-dark);
}

/* Animation Classes */
.service-card, .process-card, .portfolio-card, .testimonial-card, .blog-card, .faq-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--item-index, 0) * 0.1s);
}

.service-card.revealed, .process-card.revealed, .portfolio-card.revealed, .testimonial-card.revealed, .blog-card.revealed, .faq-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}

@media (max-width: 992px) {
  .top-contact-banner, .promo-banner {
    position: relative;
  }
  
  .header {
    top: 0;
  }
  
  .hero {
    padding-top: 120px;
  }
  
  .navbar-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
  }
  
  .navbar-list.active {
    right: 0;
  }
  
  .navbar-list li {
    width: 100%;
  }
  
  .navbar-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(135, 100, 255, 0.1);
  }
  
  .navbar-link:after {
    display: none;
  }
  
  .nav-toggle-btn {
    display: block;
    background: none;
    border: none;
    color: var(--primary-solid);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-1);
    z-index: 1002;
    margin-left: 15px;
  }
  
  .nav-toggle-btn:hover {
    color: var(--primary-dark);
  }
  
  .header-cta {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  
  .logo-img {
    max-height: 35px;
  }
  
  .btn.btn-primary {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    order: 1;
    text-align: center;
  }
  
  .hero-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .btn-wrapper {
    justify-content: center;
  }
  
  .about-content, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-img, .process-container {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  .section {
    padding: var(--section-padding) 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .portfolio-grid, .blog-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .service .grid-list, .grid-list {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-img, .process-container {
    max-width: 100%;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .counter-grid {
    grid-template-columns: 1fr;
  }
  
  .counter-item {
    padding: 15px;
  }
  
  .counter {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-text {
    font-size: 0.95rem;
  }
  
  .btn-wrapper, .about-cta, .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    width: 100%;
  }
  
  .back-to-top, .whatsapp-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .back-to-top {
    left: 20px;
    bottom: 20px;
  }
  
  .whatsapp-btn {
    right: 20px;
    bottom: 20px;
  }
  
  .footer-logo {
    font-size: 1.3rem;
  }
  
  .footer-heading {
    font-size: 1.1rem;
  }
  
  .contact-form-wrapper, .business-card {
    padding: 25px;
  }
  
  .contact-form-wrapper h3 {
    font-size: 1.3rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .hero-slider {
    height: 350px;
  }
  
  .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
  
  .faq-question {
    padding: 15px;
  }
  
  .faq-answer {
    padding: 0 15px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion) {
  .animated-shapes, .slider-container, .section, .service-card, .process-card, .portfolio-card, .testimonial-card, .blog-card, .faq-item {
    animation: none;
    transition: none;
  }
  
  .section, .service-card, .process-card, .portfolio-card, .testimonial-card, .blog-card, .faq-item {
    opacity: 1;
    transform: none;
  }
}