/* ============================================
   WEBSITE STYLES
   ============================================ */

:root {
  --primary: #667eea;
  --primary-dark: #764ba2;
  --secondary: #f093fb;
  --accent: #f5576c;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a2e;
  --border-color: #e0e0e0;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--text-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

/* ============================================
   TOP HEADER BAR
   ============================================ */

.top-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.header-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.header-icon {
  font-size: 1rem;
}

.header-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.header-item a:hover {
  opacity: 0.8;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  background: #ffffff;
  padding: 0.5rem 0;
  position: static;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--text-dark);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
}

.logo-img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(102, 126, 234, 0.4)) brightness(1.1) saturate(1.2);
  transition: all 0.3s ease;
  transform: scale(1);
}

.logo-img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 16px rgba(102, 126, 234, 0.5)) brightness(1.15) saturate(1.3);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  opacity: 0.8;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   IMAGE CAROUSEL
   ============================================ */

.image-carousel {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: var(--text-light);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245, 87, 108, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
  display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  padding: 120px 2rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bubbles-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 0;
}

.bubbles-background::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 70%);
  border-radius: 50%;
  top: -50px;
  left: -50px;
  animation: float 20s ease-in-out infinite;
}

.bubbles-background::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 10%, transparent 70%);
  border-radius: 50%;
  bottom: -30px;
  right: -30px;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  animation: slideUp 0.8s ease-out;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.4s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  animation: slideUp 0.8s ease-out 0.6s both;
}

.feature-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.feature-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.feature-badge span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.feature-badge p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 1;
  color: rgba(255, 255, 255, 0.95);
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--text-light);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
  background: var(--text-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  transform: scale(1.05);
  border-color: transparent;
}

.pricing-card.featured:hover {
  transform: scale(1.1);
}

.price-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transform: rotate(45deg);
  display: none;
}

.pricing-card.featured .price-badge {
  display: block;
}

.package-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.package-description {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  line-height: 1.5;
}

.price-display {
  font-size: 3rem;
  font-weight: 800;
  margin: 2rem 0;
}

.price-display .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.price-display .period {
  font-size: 0.9rem;
  opacity: 0.7;
}

.package-benefits {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.package-benefits li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-card.featured .package-benefits li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.package-benefits li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.pricing-card.featured .package-benefits li::before {
  color: var(--accent);
}

.discount-tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.subscribe-btn {
  width: 100%;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.pricing-card .subscribe-btn {
  background: var(--primary);
  color: white;
  margin-top: 1.5rem;
}

.pricing-card .subscribe-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.pricing-card.featured .subscribe-btn {
  background: var(--accent);
}

.pricing-card.featured .subscribe-btn:hover {
  background: #e63d52;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
  background: var(--bg-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step-card {
  background: var(--text-light);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.step-card p {
  color: #666;
  line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  background: var(--text-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.about-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-list {
  list-style: none;
}

.about-list li {
  padding: 0.75rem 0;
  font-size: 1.05rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.placeholder-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  opacity: 0.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  background: var(--bg-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
}

.contact-icon {
  font-size: 2rem;
  min-width: 50px;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.contact-item p {
  color: #666;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 1rem;
  position: relative;
  overflow: hidden;
}

/* Bubble container backgrounds */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    /* Large bubbles */
    radial-gradient(circle at 80px 80px, rgba(102, 126, 234, 0.2) 20px, transparent 20px),
    radial-gradient(circle at 200px 150px, rgba(118, 75, 162, 0.15) 30px, transparent 30px),
    radial-gradient(circle at 500px 50px, rgba(102, 126, 234, 0.18) 25px, transparent 25px),
    /* Medium bubbles */
    radial-gradient(circle at 150px 300px, rgba(200, 150, 255, 0.12) 15px, transparent 15px),
    radial-gradient(circle at 600px 200px, rgba(150, 120, 200, 0.14) 18px, transparent 18px),
    radial-gradient(circle at 100px 500px, rgba(102, 126, 234, 0.16) 22px, transparent 22px),
    /* Small bubbles */
    radial-gradient(circle at 300px 400px, rgba(200, 150, 255, 0.1) 10px, transparent 10px),
    radial-gradient(circle at 700px 300px, rgba(150, 120, 200, 0.11) 12px, transparent 12px),
    radial-gradient(circle at 400px 100px, rgba(118, 75, 162, 0.13) 8px, transparent 8px);
  background-size: 800px 600px;
  background-position: 0% 0%;
  animation: bubbleFloat 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    /* Additional bubble layer for depth */
    radial-gradient(circle at 250px 200px, rgba(102, 126, 234, 0.1) 28px, transparent 28px),
    radial-gradient(circle at 650px 100px, rgba(118, 75, 162, 0.12) 35px, transparent 35px),
    radial-gradient(circle at 50px 350px, rgba(200, 150, 255, 0.09) 20px, transparent 20px),
    radial-gradient(circle at 550px 450px, rgba(150, 120, 200, 0.11) 16px, transparent 16px),
    radial-gradient(circle at 350px 550px, rgba(102, 126, 234, 0.13) 24px, transparent 24px),
    radial-gradient(circle at 750px 450px, rgba(200, 150, 255, 0.08) 14px, transparent 14px);
  background-size: 800px 600px;
  background-position: 100% 100%;
  animation: bubbleFloat 25s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

@keyframes bubbleFloat {
  0% {
    background-position: 0% 0%;
    opacity: 0.8;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    background-position: 50% 100%;
    opacity: 0.9;
  }
  75% {
    opacity: 0.7;
  }
  100% {
    background-position: 100% 0%;
    opacity: 0.8;
  }
}

/* Ensure content is above background */
.footer .container {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--text-light);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   RESPONSIVE DESIGN - COMPREHENSIVE MOBILE
   ============================================ */

/* Large Screens (1600px+) - Ultra-wide desktops */
@media (min-width: 1600px) {
  .nav-container {
    padding: 0 3rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero p {
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 3rem;
  }

  .section-header p {
    font-size: 1.3rem;
  }

  .service-card {
    padding: 3rem;
  }

  .container {
    padding: 0 3rem;
  }
}

/* Desktop (1200px - 1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
  .nav-container {
    padding: 0 2.5rem;
  }

  .container {
    padding: 0 2.5rem;
  }
}

/* Tablet Large (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .nav-menu {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .about-content {
    gap: 2.5rem;
  }

  .contact-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .navbar {
    padding: 0.8rem 0;
  }

  .image-carousel {
    height: 400px;
  }

  .nav-menu {
    display: none;
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 0.5rem 0;
    gap: 0;
    z-index: 999;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex !important;
    animation: slideDown 0.3s ease-out;
  }

  .nav-menu li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px 1.5rem;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
  }

  .nav-link::after {
    display: none;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .nav-container {
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .nav-logo {
    font-size: 1.3rem;
    gap: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo-img {
    width: 80px;
    height: 80px;
  }

  .hamburger {
    order: -1;
    position: relative;
    z-index: 1001;
  }

  .nav-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    order: 1;
  }

  .btn {
    white-space: nowrap;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero {
    padding: 80px 1.5rem;
    min-height: 85vh;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 3rem;
  }

  .btn {
    width: 100%;
  }

  .btn-lg {
    padding: 14px 32px;
  }

  .hero-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .feature-badge {
    padding: 1.2rem;
    font-size: 0.95rem;
  }

  section {
    padding: 80px 1.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .step-card {
    padding: 2rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-list li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .placeholder-image {
    font-size: 4rem;
    height: 250px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .contact-form {
    gap: 1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
    font-size: 0.95rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: scale(1.02);
  }
}

/* Large Mobile (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
  .navbar {
    padding: 0.7rem 0;
  }

  .image-carousel {
    height: 280px;
  }

  .nav-menu {
    display: none;
    position: fixed;
    left: 0;
    top: 56px;
    width: 100%;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 0.5rem 0;
    gap: 0;
    z-index: 999;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex !important;
    animation: slideDown 0.3s ease-out;
  }

  .nav-menu li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 1rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
  }

  .nav-link::after {
    display: none;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .nav-container {
    padding: 0 1rem;
  }

  .nav-logo {
    font-size: 1.2rem;
    gap: 6px;
  }

  .logo-img {
    width: 36px;
    height: 36px;
  }

  .nav-buttons {
    display: flex;
    gap: 0.6rem;
    align-items: center;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-buttons .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .hero {
    padding: 60px 1rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
  }

  .btn {
    width: 100%;
    padding: 11px 20px;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .feature-badge {
    padding: 1rem;
  }

  .feature-badge span {
    font-size: 1.8rem;
  }

  .feature-badge p {
    font-size: 0.9rem;
  }

  section {
    padding: 50px 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-card h3 {
    font-size: 1.2rem;
  }

  .pricing-list li {
    font-size: 0.9rem;
  }

  .price {
    font-size: 1.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-card {
    padding: 1.5rem;
    text-align: center;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.8rem;
  }

  .step-card h3 {
    font-size: 1.1rem;
  }

  .step-card p {
    font-size: 0.9rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .about-text p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .about-list {
    margin-top: 1rem;
  }

  .about-list li {
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
  }

  .placeholder-image {
    font-size: 3rem;
    height: 200px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
  }

  .contact-item h4 {
    font-size: 1rem;
  }

  .contact-item p {
    font-size: 0.9rem;
  }

  .contact-form {
    gap: 0.8rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px;
    font-size: 0.9rem;
    border-radius: 6px;
  }

  .contact-form button {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-section h4 {
    font-size: 1rem;
  }

  .footer-section p,
  .footer-section ul li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .footer-section a {
    color: rgba(255, 255, 255, 0.9);
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

/* Small Mobile (375px - 479px) */
@media (min-width: 375px) and (max-width: 479px) {
  .navbar {
    padding: 0.6rem 0;
  }

  .image-carousel {
    height: 240px;
  }

  .nav-menu {
    display: none;
    position: fixed;
    left: 0;
    top: 52px;
    width: 100%;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 0.4rem 0;
    gap: 0;
    z-index: 999;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-height: calc(100vh - 52px);
    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex !important;
    animation: slideDown 0.3s ease-out;
  }

  .nav-menu li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 1.2rem;
  }

  .nav-link::after {
    display: none;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
    margin: 4px 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-container {
    padding: 0.7rem 0.8rem;
  }

  .nav-logo {
    font-size: 1.1rem;
    gap: 5px;
  }

  .logo-img {
    width: 34px;
    height: 34px;
  }

  .nav-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .btn {
    padding: 8px 12px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-buttons {
    flex-direction: column;
    gap: 0.3rem;
  }

  .nav-buttons .btn {
    padding: 7px 14px;
    font-size: 0.8rem;
  }

  .hero {
    padding: 50px 0.8rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
  }

  .btn {
    width: 100%;
    padding: 10px 18px;
    font-size: 0.85rem;
    border-radius: 40px;
  }

  .btn-lg {
    padding: 11px 22px;
    font-size: 0.9rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .feature-badge {
    padding: 0.8rem;
    border-radius: 12px;
  }

  .feature-badge span {
    font-size: 1.5rem;
  }

  .feature-badge p {
    font-size: 0.85rem;
  }

  section {
    padding: 40px 0.8rem;
  }

  .container {
    padding: 0 0.8rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.2rem;
  }

  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .pricing-card {
    padding: 1.2rem;
  }

  .pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  .pricing-list {
    margin-bottom: 0.8rem;
  }

  .pricing-list li {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .price {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .step-card {
    padding: 1.2rem;
    text-align: center;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.8rem;
    line-height: 40px;
  }

  .step-card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .step-card p {
    font-size: 0.85rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .about-text h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .about-text p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }

  .about-list {
    margin-top: 0.8rem;
  }

  .about-list li {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }

  .placeholder-image {
    font-size: 2.5rem;
    height: 180px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
  }

  .contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1.4;
  }

  .contact-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }

  .contact-item p {
    font-size: 0.8rem;
  }

  .contact-form {
    gap: 0.8rem;
  }

  .form-group {
    margin-bottom: 0.8rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 9px;
    font-size: 0.85rem;
    border-radius: 5px;
  }

  .contact-form button {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .footer-section h4 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }

  .footer-section p,
  .footer-section ul li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .footer-section a {
    color: rgba(255, 255, 255, 0.9);
  }

  .social-icon {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

/* Extra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
  .image-carousel {
    height: 200px;
  }

  .nav-menu {
    display: none;
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 1rem 0;
    gap: 0;
    z-index: 999;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu li {
    width: 100%;
    padding: 0;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 10px 0.6rem;
    color: var(--text-light);
    font-size: 0.95rem;
  }

  .nav-link::after {
    display: none;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .hamburger span {
    width: 20px;
    height: 2.2px;
    margin: 3.5px 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-container {
    padding: 1.6rem 1.6rem;
  }

  .nav-logo {
    font-size: 1.95rem;
    gap: 4px;
  }

  .logo-img {
    width: 1000px;
    height: 1000px;
  }

  .nav-buttons {
    display: flex;
    gap: 0.4rem;
    align-items: center;
  }

  .nav-buttons .btn {
    padding: 6px 10px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .hero {
    padding: 40px 0.6rem;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    line-height: 1.1;
  }

  .hero p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .btn {
    width: 100%;
    padding: 9px 16px;
    font-size: 0.8rem;
    border-radius: 35px;
  }

  .btn-lg {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 1.2rem;
  }

  .feature-badge {
    padding: 0.6rem;
    border-radius: 10px;
  }

  .feature-badge span {
    font-size: 1.3rem;
  }

  .feature-badge p {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  section {
    padding: 35px 0.6rem;
  }

  .container {
    padding: 0 0.6rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }

  .section-header p {
    font-size: 0.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .service-card {
    padding: 1rem;
  }

  .service-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .service-card p {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .service-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .pricing-card {
    padding: 1rem;
  }

  .pricing-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .pricing-list {
    margin-bottom: 0.6rem;
  }

  .pricing-list li {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
  }

  .price {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .step-card {
    padding: 1rem;
    text-align: center;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.6rem;
    line-height: 36px;
  }

  .step-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .step-card p {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-text h2 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }

  .about-text p {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }

  .about-list {
    margin-top: 0.6rem;
  }

  .about-list li {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .placeholder-image {
    font-size: 2rem;
    height: 150px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .contact-item {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
  }

  .contact-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1.3;
  }

  .contact-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }

  .contact-item p {
    font-size: 0.75rem;
  }

  .contact-form {
    gap: 0.6rem;
  }

  .form-group {
    margin-bottom: 0.6rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 8px;
    font-size: 0.8rem;
    border-radius: 4px;
  }

  .contact-form button {
    padding: 9px 16px;
    font-size: 0.85rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-section h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .footer-section p,
  .footer-section ul li {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .footer-section a {
    color: rgba(255, 255, 255, 0.9);
  }

  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}
/* Bounce Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Card Bounce Animation */
@keyframes cardBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Rotate Icon Soft Animation */
@keyframes rotateIconSoft {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

/* Scale Icon Pulse Animation */
@keyframes scaleIconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

/* Float Icon Gentle Animation */
@keyframes floatIconGentle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Slide Icon Horizontal Animation */
@keyframes slideIconHorizontal {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

/* Tap Icon Animation */
@keyframes tapIconAnimation {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.05);
  }
  75% {
    transform: scale(0.98);
  }
}

/* Bell Ring Animation */
@keyframes bellRingAnimation {
  0%, 100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-8deg);
  }
  20% {
    transform: rotate(8deg);
  }
  30% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

/* ============================================
   TESTIMONIALS CAROUSEL ANIMATIONS
   ============================================ */

.testimonials-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-carousel {
  display: flex;
  gap: 30px;
  animation: slideLeftContinuous 40s linear infinite;
  width: max-content;
}

@keyframes slideLeftContinuous {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   SERVICES CAROUSEL STYLES
   ============================================ */

.services-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.services-carousel {
  display: flex;
  gap: 30px;
  animation: slideLeftContinuous 50s linear infinite;
  width: max-content;
}

/* ============================================
   TESTIMONIALS ANIMATIONS
   ============================================ */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card {
  transition: all 0.3s ease;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   ADDITIONAL MOBILE RESPONSIVENESS FIXES
   ============================================ */

/* Fix inline styled 3-column grids for mobile */
@media (max-width: 767px) {
  /* Why Choose Us section - 3 columns to 1 column */
  section > .container > div[style*="grid-template-columns: repeat(3, 1fr)"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Process steps - Convert arrow layout to vertical stack */
  .process-steps-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  .process-steps-grid > div[style*="font-size: 32px"] {
    display: none !important;
  }

  /* Excellence section - 2 column to 1 column */
  section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  /* Features cards below image - 3 columns to 1 column */
  section > .container > div[style*="grid-template-columns: 1fr 1fr 1fr"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Image container sizing */
  section > .container > div > div[style*="min-height: 400px"] {
    min-height: 250px !important;
  }

  .process-step-card {
    padding: 2rem 1rem !important;
  }

  .process-step-card .step-circle {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 16px !important;
  }

  .process-step-card span {
    font-size: 35px !important;
  }

  .process-step-card h3 {
    font-size: 1rem !important;
  }

  .process-step-card p {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 480px) {
  /* Additional small mobile fixes */
  section > .container > div[style*="grid-template-columns: repeat(3, 1fr)"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .process-steps-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  /* Text sizing for "Why Choose Us" features */
  section > .container > div > div > h3[style*="font-size: 1.3rem"] {
    font-size: 1.1rem !important;
  }

  section > .container > div > div > p[style*="font-size: 0.95rem"] {
    font-size: 0.9rem !important;
  }

  /* Process cards */
  .process-step-card {
    padding: 1.5rem 1rem !important;
  }

  .process-step-card .step-circle {
    width: 70px !important;
    height: 70px !important;
  }

  .process-step-card span {
    font-size: 30px !important;
  }

  /* Section padding */
  section {
    padding: 50px 0 !important;
  }

  .container {
    padding: 0 1rem !important;
  }

  /* Image container */
  section > .container > div > div[style*="min-height: 400px"] {
    min-height: 200px !important;
  }

  /* Cards below image on small screens */
  section > .container > div[style*="grid-template-columns: 1fr 1fr 1fr"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }

  section > .container > div[style*="grid-template-columns: 1fr 1fr 1fr"] > div {
    padding: 1.2rem !important;
  }

  /* Icon sizing in cards */
  section > .container > div[style*="grid-template-columns: 1fr 1fr 1fr"] > div > div[style*="font-size: 32px"] {
    font-size: 24px !important;
  }

  section > .container > div[style*="grid-template-columns: 1fr 1fr 1fr"] > div > h4[style*="font-size: 0.95rem"] {
    font-size: 0.9rem !important;
  }

  section > .container > div[style*="grid-template-columns: 1fr 1fr 1fr"] > div > p[style*="font-size: 0.85rem"] {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 374px) {
  /* Extra small mobile adjustments */
  section > .container > div[style*="grid-template-columns: repeat(3, 1fr)"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }

  .process-step-card {
    padding: 1rem !important;
  }

  section {
    padding: 40px 0 !important;
  }
}