:root {
  --pink-primary: #e94d9b;
  --pink-dark: #c0397a;
  --pink-light: #f8e8f0;
  --pink-gradient: linear-gradient(135deg, #e94d9b, #c0397a);
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  overflow-x: hidden;
  direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

p {
  margin-bottom: 1.5em;
}

.container {
  padding-left: 2rem;
  padding-right: 2rem;
}

.section-padding {
  padding: 120px 0;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--pink-primary) 0%,
    var(--pink-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.bg-gradient {
  background: linear-gradient(
    135deg,
    var(--pink-light) 0%,
    var(--pink-primary) 100%
  );
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.animated {
  opacity: 0;
}

.animated.fadeUp {
  animation: fadeUp 0.8s var(--transition-medium) forwards;
}

.animated.scaleIn {
  animation: scaleIn 0.8s var(--transition-medium) forwards;
}

.animated.slideInRight {
  animation: slideInRight 0.8s var(--transition-medium) forwards;
}

.animated.slideInLeft {
  animation: slideInLeft 0.8s var(--transition-medium) forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.float-animation {
  animation: floatAnimation 6s ease-in-out infinite;
}

/* Button Styles */
.btn {
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 28px;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.02em;
}

.btn-primary {
  background-color: var(--pink-primary);
  border: none;
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--pink-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--pink-primary);
  color: var(--pink-primary);
}

.btn-outline:hover,
.btn-outline:focus {
  background-color: var(--pink-primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 15px 35px;
  font-size: 1.1rem;
}

.btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: -1;
  transition: all 0.5s;
}

.btn:hover::after {
  left: 100%;
}

/* Navbar */
.navbar {
  padding: 20px 0;
  transition: all var(--transition-medium);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--pink-primary);
  transition: all var(--transition-medium);
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  padding: 8px 0;
  color: var(--gray-dark);
  transition: all var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--pink-primary);
  transition: width var(--transition-medium);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--pink-primary);
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 30px;
  height: 2px;
  background-color: var(--gray-dark);
  display: inline-block;
  transition: background-color var(--transition-fast);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--gray-dark);
  transition: all var(--transition-fast);
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff6fa 0%, #fdc7e3 100%);
  overflow: hidden;
  padding: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px; /* Account for fixed navbar */
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--gray-dark);
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding-bottom: 40px; /* Reduced space for road */
}

.hero-image {
  position: relative;
  z-index: 3;
  transform-style: preserve-3d;
  perspective: 1000px;
  margin-bottom: -20px; /* Move car image down to touch road */
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.3));
  transform: translateZ(10px);
  transition: transform 0.5s ease;
  /* Removed hover animation to keep car directly on road */
}

/* Road lines under the car */
.road-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px; /* Reduced height */
  perspective: 400px;
  z-index: 2;
  transform: rotateX(45deg); /* Less extreme angle */
  transform-origin: center bottom;
}

.road-base {
  position: absolute;
  bottom: 0;
  left: -20%;
  width: 140%; /* Wider than container */
  height: 60px;
  background: linear-gradient(
    to bottom,
    rgba(40, 40, 40, 0.95),
    rgba(20, 20, 20, 0.98)
  ); /* Darker gray */
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: rotateX(45deg);
  transform-origin: center bottom;
  z-index: 1;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
}

.road-line {
  position: absolute;
  height: 12px; /* Thicker lines */
  background: rgba(255, 255, 255, 0.95); /* Brighter lines */
  border-radius: 6px;
  transform-origin: center right;
  right: 50%;
  z-index: 2;
}

.road-line:nth-child(1) {
  width: 80px;
  bottom: 15px;
  animation: roadLineAnim 1.2s infinite;
}

.road-line:nth-child(2) {
  width: 150px;
  bottom: 30px;
  animation: roadLineAnim 1.3s infinite;
  animation-delay: 0.2s;
}

.road-line:nth-child(3) {
  width: 100px;
  bottom: 45px;
  animation: roadLineAnim 1s infinite;
  animation-delay: 0.1s;
}

.road-line:nth-child(4) {
  width: 130px;
  bottom: 60px;
  animation: roadLineAnim 1.1s infinite;
  animation-delay: 0.3s;
}

@keyframes roadLineAnim {
  0% {
    transform: scaleX(0);
    opacity: 0;
    right: 30%;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1.2); /* Stretch more */
    opacity: 0;
    right: 80%; /* Move further */
  }
}

/* Wind effects above the car only */
.wind-effect {
  position: absolute;
  top: -50px; /* Move further up above car */
  left: 0;
  width: 100%;
  height: 80px; /* Constrained height only above car */
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.wind-particle {
  position: absolute;
  height: 3px; /* Thicker wind lines */
  background: rgba(255, 255, 255, 0.8); /* More visible */
  border-radius: 2px;
  transform: rotate(-10deg) translateZ(10px);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); /* Glow effect */
}

.motion-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 30%;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.wind-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation: windParticle 3s linear infinite;
  animation-delay: 0.2s;
}

.wind-particle:nth-child(2) {
  top: 35%;
  left: 15%;
  animation: windParticle 2.5s linear infinite;
  animation-delay: 0.5s;
}

.wind-particle:nth-child(3) {
  top: 55%;
  left: 5%;
  animation: windParticle 3.5s linear infinite;
  animation-delay: 0.1s;
}

.wind-particle:nth-child(4) {
  top: 70%;
  left: 20%;
  animation: windParticle 4s linear infinite;
  animation-delay: 0.8s;
}

.wind-particle:nth-child(5) {
  top: 85%;
  left: 8%;
  animation: windParticle 3.2s linear infinite;
  animation-delay: 1.2s;
}

@keyframes windParticle {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(300px) translateY(-20px);
    opacity: 0;
  }
}

.hero-pattern {
  position: absolute;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(var(--pink-light) 8%, transparent 8%);
  background-position: 0 0;
  background-size: 30px 30px;
  opacity: 0.5;
  z-index: 0;
}

.hero-pattern-1 {
  top: -50px;
  right: -150px;
}

.hero-pattern-2 {
  bottom: -100px;
  left: -150px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator p {
  color: var(--gray-dark);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  margin: 0 auto;
  position: relative;
}

.scroll-arrow span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 2px solid var(--pink-primary);
  border-bottom: 2px solid var(--pink-primary);
  transform: rotate(-45deg);
  animation: scrollAnim 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}

.scroll-arrow span:nth-of-type(1) {
  animation-delay: 0s;
  top: 0;
}

.scroll-arrow span:nth-of-type(2) {
  animation-delay: 0.15s;
  top: 10px;
}

.scroll-arrow span:nth-of-type(3) {
  animation-delay: 0.3s;
  top: 20px;
}

@keyframes scrollAnim {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Services Section */
.services {
  padding: 120px 0;
  background-color: var(--white);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-title h2 {
  font-size: 3rem;
  color: var(--gray-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--pink-primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.5s ease;
}

.section-title:hover h2::after {
  width: 100px;
}

.section-title p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-medium);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(253, 199, 227, 0.2) 0%,
    rgba(233, 77, 155, 0.2) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-medium);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-light);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 90px;
  height: 90px;
  background-color: var(--pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all var(--transition-medium);
  position: relative;
}

.service-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: var(--pink-primary);
  transform: scale(0);
  transition: all var(--transition-medium);
  z-index: -1;
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
}

.service-card:hover .service-icon::after {
  transform: scale(1);
  opacity: 0.15;
}

.service-icon i {
  color: var(--pink-primary);
  font-size: 2.2rem;
  transition: all var(--transition-medium);
}

.service-card:hover .service-icon i {
  color: var(--pink-dark);
}

.service-card h3 {
  font-size: 1.6rem;
  color: var(--gray-dark);
  margin-bottom: 15px;
  transition: all var(--transition-medium);
}

.service-card:hover h3 {
  color: var(--pink-primary);
}

.service-card p {
  color: #666;
  margin-bottom: 0;
  transition: all var(--transition-medium);
}

/* About Section */
.about {
  padding: 120px 0;
  background-color: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.about-pattern {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(253, 199, 227, 0.3) 0%,
    rgba(233, 77, 155, 0.3) 100%
  );
  filter: blur(80px);
  z-index: 0;
}

.about-pattern-1 {
  top: -250px;
  right: -200px;
}

.about-pattern-2 {
  bottom: -300px;
  left: -250px;
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 3rem;
  color: var(--gray-dark);
  margin-bottom: 30px;
  text-align: center;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.mission-values {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.mission-item {
  flex: 1 1 50%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.mission-item h3 {
  font-size: 1.5rem;
  color: var(--pink-primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.mission-item h3 i {
  margin-right: 10px;
  font-size: 1.8rem;
}

/* Testimonials */
.testimonials {
  padding: 120px 0;
  background-color: var(--white);
  position: relative;
}

.testimonial-slider {
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  margin: 30px 15px;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: var(--pink-light);
  font-family: Georgia, serif;
}

.testimonial-content {
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--pink-light);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.testimonial-info p {
  color: var(--pink-primary);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-medium);
  margin: 0 5px;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.dot.active,
.dot:hover {
  background-color: var(--pink-primary);
  transform: scale(1.2);
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background-color: var(--gray-light);
  position: relative;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.contact-form-wrapper,
.contact-info-wrapper {
  flex: 1 1 50%;
  padding: 0 15px;
}

.contact-form {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--gray-dark);
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 10px;
  transition: border-color var(--transition-medium),
    box-shadow var(--transition-medium);
}

.form-control:focus {
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 0.25rem rgba(233, 77, 155, 0.25);
}

.form-control::placeholder {
  color: #adb5bd;
  opacity: 1;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--gray-dark);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  min-width: 50px;
  height: 50px;
  background-color: var(--pink-light);
  color: var(--pink-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.3rem;
  transition: all var(--transition-medium);
}

.contact-item:hover .contact-icon {
  background-color: var(--pink-primary);
  color: var(--white);
  transform: scale(1.1) rotate(10deg);
}

.contact-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--gray-dark);
}

.contact-text p,
.contact-text a {
  color: #666;
  margin-bottom: 0;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.contact-text a:hover {
  color: var(--pink-primary);
}

.newsletter {
  margin-top: 40px;
}

.newsletter h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--gray-dark);
}

.newsletter p {
  margin-bottom: 20px;
  color: #666;
}

.newsletter-form {
  display: flex;
  position: relative;
}

.newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid #ced4da;
  border-radius: 50px;
  font-size: 1rem;
  color: #495057;
  transition: all var(--transition-medium);
}

.newsletter-input:focus {
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 0.25rem rgba(233, 77, 155, 0.25);
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: var(--pink-primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all var(--transition-medium);
}

.newsletter-btn:hover {
  background-color: var(--pink-dark);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  padding: 80px 0 30px;
  background-color: var(--gray-dark);
  color: var(--white);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(
    90deg,
    var(--pink-primary),
    var(--pink-dark),
    var(--pink-light),
    var(--pink-primary)
  );
  background-size: 300% 100%;
  animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.footer-info,
.footer-links,
.footer-social {
  padding: 0 15px;
  margin-bottom: 40px;
}

.footer-info {
  flex: 0 0 40%;
}

.footer-links {
  flex: 0 0 20%;
}

.footer-social {
  flex: 0 0 20%;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pink-primary);
  margin-bottom: 20px;
  display: inline-block;
}

.footer-description {
  color: #aaa;
  margin-bottom: 25px;
  line-height: 1.8;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--pink-primary);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #aaa;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
}

.footer-links ul li a i {
  margin-right: 10px;
  font-size: 0.8rem;
}

.footer-links ul li a:hover {
  color: var(--pink-primary);
  transform: translateX(5px);
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.2rem;
  transition: all var(--transition-medium);
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--pink-primary);
  color: var(--white);
  transform: translateY(-5px) rotate(10deg);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: #aaa;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }

  .footer-info {
    flex: 0 0 50%;
  }

  .footer-links,
  .footer-social {
    flex: 0 0 25%;
  }
}

@media (max-width: 992px) {
  .section-padding {
    padding: 100px 0;
  }

  .hero {
    padding: 150px 0 100px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    flex: 0 0 100%;
  }

  .contact-info-wrapper {
    margin-top: 40px;
  }

  .footer-info {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }

  .footer-links,
  .footer-social {
    flex: 0 0 33.33%;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 80px 0;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .hero-image img {
    transform: none;
    margin-top: 40px;
  }

  .hero-image img:hover {
    transform: none;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .mission-item {
    flex: 0 0 100%;
  }

  .footer-links,
  .footer-social {
    flex: 0 0 50%;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .contact-form,
  .contact-info {
    padding: 30px 20px;
  }

  .footer-links,
  .footer-social {
    flex: 0 0 100%;
  }
}

/* Enhanced Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--pink-light) 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader-logo {
  width: 120px;
  height: auto;
  margin-bottom: 30px;
  animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.preloader-inner {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.preloader-inner div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--pink-primary);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.preloader-inner div:nth-child(1) {
  left: 8px;
  animation: preloader1 0.6s infinite;
}

.preloader-inner div:nth-child(2) {
  left: 8px;
  animation: preloader2 0.6s infinite;
}

.preloader-inner div:nth-child(3) {
  left: 32px;
  animation: preloader2 0.6s infinite;
}

.preloader-inner div:nth-child(4) {
  left: 56px;
  animation: preloader3 0.6s infinite;
}

@keyframes preloader1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes preloader3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes preloader2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.preloader-text {
  color: var(--pink-primary);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Enhanced Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(233, 77, 155, 0.5);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: rgba(233, 77, 155, 0.8);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  transition: transform 0.1s ease-out;
}

.custom-cursor.expanded {
  width: 60px;
  height: 60px;
  border-color: rgba(233, 77, 155, 0.8);
  background-color: rgba(233, 77, 155, 0.1);
}

.custom-cursor.clicked {
  transform: translate(-50%, -50%) scale(0.8);
}

/* Enhanced Back to Top Button */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--pink-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(233, 77, 155, 0.4);
  text-decoration: none;
  border: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--pink-dark), #a02d68);
  transform: translateY(-8px) scale(1.1);
  color: #fff;
  box-shadow: 0 15px 35px rgba(233, 77, 155, 0.6);
}

.back-to-top:active {
  transform: translateY(-5px) scale(1.05);
}

/* Enhanced Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 15px 0;
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.navbar-brand:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(233, 77, 155, 0.3));
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--gray-700);
  margin: 0 15px;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.navbar-nav .nav-link:hover {
  color: var(--pink-primary);
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background: var(--pink-gradient);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
}

.navbar-nav .nav-link.active::after {
  width: 100%;
  left: 0;
}

/* Enhanced Buttons */
.btn-primary {
  background: var(--pink-gradient);
  border: none;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(233, 77, 155, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--pink-dark), #a02d68);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(233, 77, 155, 0.6);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.02);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--pink-primary);
  color: var(--pink-primary);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--pink-gradient);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-outline:hover::before {
  left: 0;
}

.btn-outline:hover {
  color: white;
  border-color: var(--pink-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(233, 77, 155, 0.4);
}

/* Enhanced Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #f8e8f0 0%, #ffffff 50%, #f0f8ff 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e94d9b" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23e94d9b" opacity="0.05"/><circle cx="50" cy="10" r="1" fill="%23e94d9b" opacity="0.05"/><circle cx="10" cy="90" r="1" fill="%23e94d9b" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(233, 77, 155, 0.1),
    rgba(233, 77, 155, 0.05)
  );
  animation: float 8s ease-in-out infinite;
  filter: blur(1px);
}

.hero-pattern-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-pattern-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  right: 15%;
  animation-delay: 4s;
}

.hero-pattern-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
    opacity: 1;
  }
  66% {
    transform: translateY(-15px) rotate(240deg);
    opacity: 0.8;
  }
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gray-800);
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content .hero-subtitle {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--pink-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--pink-primary);
  margin-bottom: 2rem;
  min-height: 70px;
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 600px;
}

/* Enhanced Hero Image Animation */
.hero-image-container {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: relative;
  z-index: 3;
  animation: carMove 4s ease-in-out infinite;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
}

.hero-image img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

@keyframes carMove {
  0%,
  100% {
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateX(8px) translateY(-5px) rotate(1deg);
  }
  50% {
    transform: translateX(0px) translateY(-8px) rotate(0deg);
  }
  75% {
    transform: translateX(-8px) translateY(-5px) rotate(-1deg);
  }
}

.wind-particle {
  position: absolute;
  width: 6px;
  height: 25px;
  background: linear-gradient(
    to bottom,
    rgba(233, 77, 155, 0.4),
    rgba(233, 77, 155, 0.1),
    transparent
  );
  border-radius: 3px;
  animation: windFlow 2.5s linear infinite;
  filter: blur(0.5px);
}

.wind-particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  height: 20px;
}
.wind-particle:nth-child(2) {
  left: 20%;
  animation-delay: 0.3s;
  height: 30px;
}
.wind-particle:nth-child(3) {
  left: 30%;
  animation-delay: 0.6s;
  height: 25px;
}
.wind-particle:nth-child(4) {
  left: 40%;
  animation-delay: 0.9s;
  height: 35px;
}
.wind-particle:nth-child(5) {
  left: 50%;
  animation-delay: 1.2s;
  height: 20px;
}
.wind-particle:nth-child(6) {
  left: 60%;
  animation-delay: 1.5s;
  height: 28px;
}
.wind-particle:nth-child(7) {
  left: 70%;
  animation-delay: 1.8s;
  height: 22px;
}
.wind-particle:nth-child(8) {
  left: 80%;
  animation-delay: 2.1s;
  height: 32px;
}

@keyframes windFlow {
  0% {
    transform: translateX(0) translateY(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateX(120px) translateY(-30px) scale(0.5);
    opacity: 0;
  }
}

/* Enhanced Road Animation */
.road-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 2;
}

.road-base {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, #555 0%, #333 50%, #222 100%);
  border-radius: 0 0 30px 30px;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateX(100px); /* Shift slightly to the right */
}

.road-line {
  position: absolute;
  bottom: 40px;
  width: 80px;
  height: 6px;
  background: linear-gradient(to right, #fff, #f0f0f0, #fff);
  border-radius: 3px;
  animation: roadMove 2s linear infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.road-line:nth-child(2) {
  left: 0%;
  animation-delay: 0s;
}
.road-line:nth-child(3) {
  left: 25%;
  animation-delay: 0.5s;
}
.road-line:nth-child(4) {
  left: 50%;
  animation-delay: 1s;
}
.road-line:nth-child(5) {
  left: 75%;
  animation-delay: 1.5s;
}

@keyframes roadMove {
  0% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(50px) scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: translateX(100px) scale(0.8);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-15px);
  }
}

@keyframes arrowMove {
  0% {
    opacity: 0;
    transform: translateY(-15px) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(15px) scale(0.8);
  }
}

/* Enhanced Features Section */
.features {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--pink-light) 0%,
    #ffffff 50%,
    #f0f8ff 100%
  );
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e94d9b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

.feature-item {
  text-align: center;
  padding: 40px 25px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 1px solid rgba(233, 77, 155, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 77, 155, 0.1),
    transparent
  );
  transition: left 0.6s;
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(233, 77, 155, 0.2);
  border-color: var(--pink-primary);
}

.feature-icon {
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.counter-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--pink-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-item p {
  font-weight: 600;
  color: var(--pink-primary);
  font-size: 1.1rem;
}

/* Enhanced Services Section */
.services {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 100px;
}

.section-title h2 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gray-800);
  margin-bottom: 25px;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 6px;
  background: var(--pink-gradient);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(233, 77, 155, 0.3);
}

.section-title p {
  font-size: 1.3rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.service-card {
  background: #fff;
  border-radius: 25px;
  padding: 50px 35px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(233, 77, 155, 0.05),
    rgba(233, 77, 155, 0.02)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(233, 77, 155, 0.15);
  border-color: var(--pink-primary);
}

.service-icon {
  width: 100px;
  height: 100px;
  background: var(--pink-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 35px;
  font-size: 2.5rem;
  color: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(233, 77, 155, 0.3);
  position: relative;
  z-index: 2;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 35px rgba(233, 77, 155, 0.5);
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.service-card p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 35px;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}
.service-icon i {
  color: white;
}
.service-icon i:hover {
  color: white;
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(233, 77, 155, 0.05) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin: 20px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(233, 77, 155, 0.1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 4rem;
  color: var(--pink-primary);
  font-family: serif;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--pink-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-info h5 {
  margin: 0;
  color: var(--gray-800);
  font-weight: 600;
}

.testimonial-info p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.testimonial-stars {
  color: #ffc107;
  margin-bottom: 20px;
}

/* Pricing Section */
.pricing {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--pink-light) 0%, #ffffff 100%);
}

.pricing-card {
  background: white;
  border-radius: 25px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card.featured {
  border-color: var(--pink-primary);
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(233, 77, 155, 0.2);
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink-gradient);
  color: white;
  padding: 8px 25px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(233, 77, 155, 0.15);
}

.pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--pink-primary);
  margin-bottom: 10px;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-features li {
  padding: 10px 0;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--success);
  font-size: 1.1rem;
}

/* FAQ Section */
.faq {
  padding: 120px 0;
  background: #ffffff;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(233, 77, 155, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(233, 77, 155, 0.1);
}

.faq-question {
  padding: 25px 30px;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--pink-primary);
}

.faq-question.active {
  color: var(--pink-primary);
  background: rgba(233, 77, 155, 0.05);
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--pink-primary);
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-answer.active {
  padding: 0 30px 25px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--gray-600);
  line-height: 1.8;
  margin: 0;
}

/* Enhanced About Section */
.about {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-pattern {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(233, 77, 155, 0.08),
    rgba(233, 77, 155, 0.03)
  );
  animation: float 10s ease-in-out infinite;
  filter: blur(2px);
}

.about-pattern-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.about-pattern-2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -10%;
  animation-delay: 5s;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.02);
  box-shadow: 0 25px 60px rgba(233, 77, 155, 0.2);
}

.about-experience {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--pink-gradient);
  color: white;
  padding: 35px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(233, 77, 155, 0.4);
  transition: all 0.3s ease;
}

.about-experience:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(233, 77, 155, 0.6);
}

.about-experience h3 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-experience p {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

.about-content h2 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gray-800);
  margin-bottom: 35px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-content p {
  font-size: 1.2rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 30px;
}

.mission-item {
  background: rgba(233, 77, 155, 0.08);
  padding: 35px;
  border-radius: 20px;
  margin-bottom: 25px;
  border-left: 5px solid var(--pink-primary);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(233, 77, 155, 0.1),
    transparent
  );
  transition: left 0.6s;
}

.mission-item:hover::before {
  left: 100%;
}

.mission-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(233, 77, 155, 0.15);
}

.mission-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink-primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.mission-item h3 i {
  margin-right: 15px;
  font-size: 1.6rem;
}

/* Enhanced How It Works Section */
.how-works {
  padding: 120px 0;
  background: var(--gray-100);
  position: relative;
}

.step-card {
  background: white;
  padding: 60px 35px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  height: 100%;
  text-align: center;
  border: 2px solid transparent;

  /* allow the number to overflow out of the top */
  overflow: visible;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(233, 77, 155, 0.05),
    rgba(233, 77, 155, 0.02)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(233, 77, 155, 0.15);
  border-color: var(--pink-primary);
}

.step-number {
  position: absolute;
  top: 0; /* align at top edge */
  left: 50%; /* center horizontally */
  transform: translate(-50%, -50%);

  width: 60px;
  height: 60px;
  background: var(--pink-gradient);
  color: white;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.8rem;
  font-weight: 900;

  box-shadow: 0 10px 25px rgba(233, 77, 155, 0.4);
  transition: all 0.3s ease;

  z-index: 2; /* sits above the card */
}
.step-number::after {
  content: "";
  position: absolute;
  bottom: -8px; /* tweak for notch depth */
  left: 50%;
  transform: translateX(-50%);

  width: 16px; /* notch width */
  height: 8px; /* notch height */

  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.step-card:hover .step-number {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 15px 35px rgba(233, 77, 155, 0.6);
}

.step-icon {
  color: var(--pink-primary);
  margin-bottom: 35px;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
}

.step-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 25px;
}

.step-card p {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Enhanced Contact Section */
.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--pink-light) 0%, #ffffff 100%);
  position: relative;
}

.contact-form {
  background: white;
  padding: 60px;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(233, 77, 155, 0.1);
}

.contact-form h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 35px;
  text-align: center;
}

.form-group {
  margin-bottom: 30px;
}

.form-control {
  border: 2px solid var(--gray-200);
  border-radius: 15px;
  padding: 18px 25px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
}

.form-control:focus {
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 0.2rem rgba(233, 77, 155, 0.25);
  background-color: #fff;
  transform: translateY(-2px);
}

.contact-info {
  padding: 60px 35px;
}

.contact-info h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 50px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(233, 77, 155, 0.1);
}

.contact-item:hover {
  background: white;
  box-shadow: 0 15px 40px rgba(233, 77, 155, 0.1);
  transform: translateY(-8px);
  border-color: var(--pink-primary);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--pink-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(233, 77, 155, 0.3);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(233, 77, 155, 0.5);
}

.contact-icon i {
  font-size: 1.6rem;
  color: white;
}

.contact-text h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.contact-text p {
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

.contact-text a {
  color: var(--pink-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-text a:hover {
  text-decoration: underline;
  color: var(--pink-dark);
}

.newsletter {
  background: var(--pink-gradient);
  padding: 40px;
  border-radius: 25px;
  color: white;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 15px 40px rgba(233, 77, 155, 0.4);
  transition: all 0.3s ease;
}

.newsletter:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(233, 77, 155, 0.6);
}

.newsletter h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.newsletter p {
  margin-bottom: 30px;
  opacity: 0.9;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 450px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 15px 25px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}

.newsletter-btn {
  background: var(--pink-dark);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.newsletter-btn:hover {
  background: #a02d68;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  color: white;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23e94d9b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--pink-primary);
  text-decoration: none;
  margin-bottom: 25px;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  color: var(--pink-dark);
  transform: scale(1.05);
}

.footer-description {
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 35px;
  font-size: 1.05rem;
}

.footer-social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--pink-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(233, 77, 155, 0.3);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--pink-dark), #a02d68);
  transform: translateY(-5px) scale(1.1);
  color: white;
  box-shadow: 0 10px 25px rgba(233, 77, 155, 0.5);
}

.social-link i {
  font-size: 1.2rem;
}

.footer-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--pink-gradient);
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
}

.footer-links a:hover {
  color: var(--pink-primary);
  padding-left: 15px;
  transform: translateX(5px);
}

.footer-links a i {
  margin-right: 10px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover i {
  color: var(--pink-primary);
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 40px;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-400);
  margin: 0;
  font-size: 1.05rem;
}

.footer-bottom i {
  color: var(--pink-primary);
  margin: 0 5px;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Enhanced Modal Styles */
.modal-content {
  border-radius: 25px;
  border: none;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background: var(--pink-gradient);
  color: white;
  border-bottom: none;
  padding: 30px 40px;
}

.modal-title {
  font-weight: 700;
  font-size: 1.6rem;
}

.modal-body {
  padding: 40px;
}

.modal-footer {
  border-top: none;
  padding: 25px 40px;
  background: rgba(233, 77, 155, 0.05);
}

.btn-close {
  filter: brightness(0) invert(1);
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn {
  position: relative;
  overflow: hidden;
}

/* Loading State */
.btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes button-loading-spinner {
  from {
    transform: translate(-50%, -50%) rotate(0turn);
  }
  to {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .section-title h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content h2 {
    font-size: 1.8rem;
  }
  .section-title h2 {
    font-size: 2.5rem;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .hero-image-container {
    height: 400px;
  }
  .about-experience {
    position: static;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content h2 {
    font-size: 1.5rem;
    min-height: 50px;
  }
  .hero-content .hero-subtitle {
    font-size: 1.8rem;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .contact-form {
    padding: 40px 25px;
  }
  .contact-info {
    padding: 40px 25px;
  }
  .hero-image-container {
    height: 300px;
    margin-top: 50px;
  }
  .scroll-indicator {
    display: none;
  }
  .service-card,
  .step-card {
    padding: 40px 25px;
  }
  .pricing-card {
    padding: 40px 25px;
  }
  .testimonial-card {
    margin: 10px;
    padding: 30px;
  }
  .about-content h2 {
    font-size: 2.5rem;
  }
  .contact-info h3,
  .contact-form h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 100px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content .hero-subtitle {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .service-card,
  .step-card {
    padding: 30px 20px;
  }
  .pricing-card {
    padding: 30px 20px;
  }
  .about-experience {
    padding: 25px;
  }
  .about-experience h3 {
    font-size: 2.5rem;
  }
  .contact-form {
    padding: 30px 20px;
  }
  .contact-info {
    padding: 30px 20px;
  }
  .newsletter {
    padding: 30px 20px;
  }
  .newsletter-input,
  .newsletter-btn {
    width: 100%;
  }
  .footer {
    padding: 60px 0 30px;
  }
  .footer-content {
    gap: 25px;
  }
  .section-padding {
    padding: 80px 0;
  }
  .hero-pattern-1 {
    width: 200px;
    height: 200px;
  }
  .hero-pattern-2 {
    width: 150px;
    height: 150px;
  }
  .hero-pattern-3 {
    width: 100px;
    height: 100px;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles */
.btn:focus,
.form-control:focus,
.nav-link:focus,
.social-link:focus {
  outline: 3px solid var(--pink-primary);
  outline-offset: 3px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .hero {
    background: #ffffff;
  }
  .service-card,
  .step-card,
  .feature-item,
  .pricing-card {
    border: 3px solid var(--gray-800);
  }
  .btn-primary {
    background: var(--gray-800);
  }
}

/* Print Styles */
@media print {
  .navbar,
  .back-to-top,
  .preloader,
  .custom-cursor,
  .cursor-dot {
    display: none !important;
  }
  .hero {
    min-height: auto;
    padding: 50px 0;
  }
  * {
    color: black !important;
    background: white !important;
  }
}

/* Performance Optimizations */
.hero-image img,
.about-image img {
  will-change: transform;
}

.service-card,
.step-card,
.feature-item {
  will-change: transform, box-shadow;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Styles */
::selection {
  background-color: var(--pink-primary);
  color: white;
}

::-moz-selection {
  background-color: var(--pink-primary);
  color: white;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--pink-gradient);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--pink-dark), #a02d68);
}

/* Loading Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Additional Utility Classes */
.text-gradient {
  background: var(--pink-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-pink {
  box-shadow: 0 10px 30px rgba(233, 77, 155, 0.2);
}

.border-gradient {
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--pink-primary), var(--pink-dark)) 1;
}

/* Swiper Customization */
.swiper-pagination-bullet {
  background: var(--pink-primary);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--pink-primary);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--pink-dark);
}
