/* ==========================================================================
   VitaLab Theme Stylesheet - Light & Colorful Modern Aesthetic
   ========================================================================== */

/* 1. Global Reset & Base
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.site {
  display: flex;
  flex-direction: column;
  min-h: 100vh;
}

.site-content {
  flex: 1 0 auto;
}

container, .container {
  width: 100%;
  max-width: var(--container-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

p {
  color: var(--text-secondary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-secondary);
}

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

/* Screen Reader / Keyboard Skip Link */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f5f9;
  clip: auto !important;
  clip-path: none;
  color: #0f172a;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px;
  position: absolute;
  top: 5px;
  text-decoration: none;
  width: auto;
  z-index: 100000;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* 2. Global Components
   ========================================================================== */
.section {
  padding: 5rem 0;
  position: relative;
}

.bg-light {
  background-color: var(--bg-secondary);
}

.bg-gradient-hero {
  background: var(--gradient-hero);
}

.section-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-lg {
  padding: 0.875rem 2.25rem;
  font-size: 1rem;
  border-radius: 30px;
}

.btn-primary {
  background: var(--gradient-brand);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: white;
}

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

.btn-outline:hover {
  background-color: var(--bg-tertiary);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--gradient-brand);
  color: white;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: white;
}

/* Colorful Badges */
.badge-colorful {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(65, 65, 166, 0.1);
  color: var(--color-primary);
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.825rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1.5px solid rgba(65, 65, 166, 0.25);
}

/* 3. Header Styling (Sticky, Blur, Text Logo)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.site-header.transparent-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

/* Scrolled/sticky active state (Ewebot Style) */
.site-header.scrolled {
  height: 80px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: var(--container-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Brand Text Styles */
.site-branding {
  display: flex;
  align-items: center;
}

.text-logo-link, .logo-link {
  display: block;
  text-decoration: none;
}

.site-logo-img {
  max-height: 52px;
  width: auto;
  display: block;
  transition: transform var(--transition-fast);
}

.site-logo-img:hover {
  transform: scale(1.02);
}

@media (max-width: 767px) {
  .site-logo-img {
    max-height: 42px;
  }
}

.site-title-container {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--text-primary);
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-tagline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.675rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

/* Nav Menu */
.main-navigation {
  display: none;
}

@media (min-width: 768px) {
  .main-navigation {
    display: block;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 750; /* Bolder links like Ewebot */
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--gradient-brand);
  transition: width var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 16px; /* Elegant mini-pill indicator (Ewebot style) */
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-cta-btn {
  display: none;
}

@media (min-width: 768px) {
  .header-cta-btn {
    display: inline-flex;
  }
}

/* Header Contact Info (Ewebot Style) */
.header-contact-info-block {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-right: 2rem;
}

@media (min-width: 992px) {
  .header-contact-info-block {
    display: flex;
  }
}

.header-phone-icon {
  color: var(--color-primary);
  background: rgba(79, 70, 229, 0.06);
  padding: 8px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.header-phone-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.header-phone-number {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.header-phone-number:hover {
  color: var(--color-primary);
}

.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.close-icon.hidden, .burger-icon.hidden {
  display: none;
}

/* Mobile Nav Menu Dropdown */
.mobile-navigation-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  z-index: 999;
}

.mobile-navigation-menu.hidden {
  display: none;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--text-primary);
  display: block;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--color-primary);
}

.mobile-cta-link {
  color: var(--color-primary);
  font-weight: 600;
}

/* 4. Hero Section
   ========================================================================== */
.hero-section {
  min-height: calc(100vh - 100px);
  padding-top: calc(var(--header-height-desktop) + 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  /* Premium modern soft-gradient cloud background (Ewebot-style) - Made more vivid */
  background: radial-gradient(circle at 15% 20%, rgba(65, 65, 166, 0.16) 0%, rgba(255, 255, 255, 0) 45%),
              radial-gradient(circle at 85% 75%, rgba(61, 175, 182, 0.16) 0%, rgba(255, 255, 255, 0) 50%),
              radial-gradient(circle at 50% 50%, rgba(244, 63, 94, 0.08) 0%, rgba(255, 255, 255, 0) 60%),
              var(--bg-primary);
  overflow: hidden;
}

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

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

@media (min-width: 576px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  position: relative;
  border: 1px solid var(--border-color);
}


/* Page Load Animations */
.hero-badge-anim {
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  animation: badgeSlideDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes badgeSlideDown {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-title-anim {
  opacity: 0;
  transform: translateY(30px);
  animation: textSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

@keyframes textSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle-anim {
  opacity: 0;
  transform: translateY(25px);
  animation: textSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.hero-actions-anim {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  animation: actionsFadeScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

@keyframes actionsFadeScale {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-visual-anim {
  opacity: 0;
  transform: translateY(40px);
  animation: visualSlideUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

@keyframes visualSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Flying & Floating Objects Styles */
.floating-clip {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 3;
}

.floating-clip svg {
  width: 100%;
  height: 100%;
}

.clip-1 {
  top: 15%;
  right: 18%;
  transform: rotate(45deg);
}

.clip-2 {
  bottom: 22%;
  left: 10%;
  transform: rotate(-30deg);
}

.floating-coin {
  position: absolute;
  width: 32px;
  height: 32px;
  z-index: 3;
}

.floating-coin svg {
  width: 100%;
  height: 100%;
}

.coin-1 {
  top: 35%;
  left: -8%;
}

.floating-bubble {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(61, 175, 182, 0.3);
  z-index: 3;
}

.bubble-1 {
  bottom: 8%;
  right: 15%;
}

.star-4 {
  top: 8%;
  left: 42%;
  width: 20px;
  height: 20px;
}

/* Ambient glow */
.glow-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 1;
}

.glow-1 {
  width: 300px;
  height: 300px;
  background-color: var(--color-primary);
  top: -50px;
  right: -50px;
}

.glow-2 {
  width: 250px;
  height: 250px;
  background-color: var(--color-secondary);
  bottom: -50px;
  left: -50px;
}

.hero-scroll-indicator {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
  margin-top: auto;
}

.scroll-down-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
  transition: transform var(--transition-fast);
}

.scroll-down-arrow:hover {
  transform: translateY(3px);
  color: var(--color-secondary);
}

.bounce-icon {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* 5. About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 576px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 2.25rem 1.75rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.2);
}

.card-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Pastel backgrounds for cards */
.bg-primary-light { background-color: rgba(79, 70, 229, 0.08); }
.bg-secondary-light { background-color: rgba(14, 165, 233, 0.08); }
.bg-teal-light { background-color: rgba(13, 148, 136, 0.08); }
.bg-purple-light { background-color: rgba(168, 85, 247, 0.08); }

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

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-teal { color: var(--color-accent-teal); }
.text-purple { color: var(--color-accent-purple); }

.card-image-wrapper {
  width: 100%;
  height: 160px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.about-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

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

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.925rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* 6. Advantages Section & 8. Process Section
   ========================================================================== */
.advantages-section,
.process-section {
  background: 
    linear-gradient(to bottom, #ffffff 0%, transparent 120px),
    linear-gradient(to top, #ffffff 0%, transparent 120px),
    linear-gradient(-45deg, #eff1ff, #f0f9ff, #e6fcf5, #f3e8ff);
  background-size: 100% 100%, 100% 100%, 400% 400%;
  animation: advantagesGradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .advantages-section,
  .process-section {
    padding: 7rem 0;
  }
}

.advantages-section::before,
.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(79, 70, 229, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
  pointer-events: none;
  z-index: 1;
  /* Smoothly fade out the grid lines at the top and bottom */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 120px, #000 calc(100% - 120px), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 120px, #000 calc(100% - 120px), transparent 100%);
}

.advantages-section .container,
.process-section .container {
  position: relative;
  z-index: 2;
}

@keyframes advantagesGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .advantages-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.adv-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 2rem 1.5rem;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.15);
  border-color: var(--color-primary);
}

.adv-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  box-shadow: var(--shadow-sm);
}

.bg-gradient-primary { background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%); }
.bg-gradient-secondary { background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%); }
.bg-gradient-teal { background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%); }
.bg-gradient-purple { background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%); }

.adv-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.adv-desc {
  font-size: 0.825rem;
  line-height: 1.4;
  color: var(--text-secondary);
  max-width: 90%;
  margin: 0 auto;
}

/* 7. Services Section
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 3rem 2.25rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border-top-width: 3px; /* Distinct styling border top */
}

/* Colorful top border colors for services */
.service-card.border-primary { border-top-color: var(--color-primary); }
.service-card.border-secondary { border-top-color: var(--color-secondary); }
.service-card.border-teal { border-top-color: var(--color-accent-teal); }
.service-card.border-purple { border-top-color: var(--color-accent-purple); }
.service-card.border-rose { border-top-color: var(--color-accent-rose); }
.service-card.border-orange { border-top-color: var(--color-accent-orange); }

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

/* Individual card hover glows */
.service-card.border-primary:hover { box-shadow: 0 15px 30px rgba(79, 70, 229, 0.08); }
.service-card.border-secondary:hover { box-shadow: 0 15px 30px rgba(14, 165, 233, 0.08); }
.service-card.border-teal:hover { box-shadow: 0 15px 30px rgba(13, 148, 136, 0.08); }
.service-card.border-purple:hover { box-shadow: 0 15px 30px rgba(168, 85, 247, 0.08); }
.service-card.border-rose:hover { box-shadow: 0 15px 30px rgba(244, 63, 94, 0.08); }
.service-card.border-orange:hover { box-shadow: 0 15px 30px rgba(249, 115, 22, 0.08); }

.service-icon {
  margin-bottom: 1.75rem;
  display: inline-block;
}

.service-icon svg {
  stroke-width: 1.5px;
}

.text-rose { color: var(--color-accent-rose); }
.text-orange { color: var(--color-accent-orange); }

.service-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Mobile App Featured Banner */
.service-mobile-banner {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--color-primary);
  border-radius: 24px;
  padding: 3rem 2rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  gap: 2.5rem;
}

.service-mobile-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.service-mobile-banner:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.08);
}

.service-mobile-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.service-mobile-content .badge-colorful {
  background: rgba(14, 165, 233, 0.1);
  color: var(--color-secondary);
  border-color: rgba(14, 165, 233, 0.25);
  margin-bottom: 1.25rem;
}

.service-mobile-title {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  color: var(--text-primary);
}

.service-mobile-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.service-mobile-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
  background: var(--bg-secondary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.platform-item:hover {
  background: var(--bg-tertiary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.platform-item:nth-child(1) .platform-icon {
  color: #1c1c1e; /* Apple dark */
}
.platform-item:nth-child(2) .platform-icon {
  color: #3ddc84; /* Android green */
}
.platform-item:nth-child(3) .platform-icon {
  color: #02569b; /* Flutter blue */
}

.service-mobile-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.service-mobile-img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-mobile-banner:hover .service-mobile-img {
  transform: scale(1.03) rotate(1deg);
}

@media (min-width: 992px) {
  .service-mobile-banner {
    flex-direction: row;
    padding: 4rem 3.5rem;
    gap: 4rem;
    align-items: center;
  }

  .service-mobile-content {
    flex: 1.2;
  }

  .service-mobile-visual {
    flex: 0.8;
  }
}

/* 8. Process Section (Vertical Timeline)
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-rainbow);
  border-radius: 999px;
  opacity: 0.25;
}

@media (min-width: 768px) {
  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 100%;
  padding-left: 50px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline-item {
    width: 50%;
    padding-left: 0;
    margin-bottom: 4rem;
  }
  
  .timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
  }
  
  .timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
  }
}

.timeline-badge {
  position: absolute;
  left: 2px;
  top: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
  z-index: 5;
}

@media (min-width: 768px) {
  .timeline-badge {
    left: auto;
    top: 6px;
  }
  
  .timeline-item:nth-child(even) .timeline-badge {
    left: -20px;
  }
  
  .timeline-item:nth-child(odd) .timeline-badge {
    right: -20px;
  }
}

.timeline-content {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 70, 229, 0.2);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.925rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.bg-teal { background-color: var(--color-accent-teal); }
.bg-rose { background-color: var(--color-accent-rose); }
.bg-orange { background-color: var(--color-accent-orange); }
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-purple { background-color: var(--color-accent-purple); }

/* 9. Tech Stack Section
   ========================================================================== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .tech-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.tech-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.tech-card:hover {
  background-color: var(--bg-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.825rem;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.bg-gradient-rose { background: linear-gradient(135deg, #f43f5e 0%, #fda4af 100%); }
.bg-gradient-orange { background: linear-gradient(135deg, #f97316 0%, #fed7aa 100%); }
.bg-gradient-purple { background: linear-gradient(135deg, #a855f7 0%, #d8b4fe 100%); }
.bg-gradient-teal { background: linear-gradient(135deg, #0d9488 0%, #99f6e4 100%); }

.tech-name {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.tech-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* 10. Contact Section
   ========================================================================== */
.contact-form-container {
  max-width: 680px;
  margin: 0 auto;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 576px) {
  .contact-form-container {
    padding: 4rem 3rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.form-control {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
  transition: all var(--transition-fast);
  color: var(--text-primary);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-primary);
  background-color: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

textarea.form-control {
  resize: vertical;
}

/* Status message style */
.form-status-msg {
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

.form-status-msg.success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status-msg.error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.btn-submit {
  border-radius: var(--border-radius-sm);
  position: relative;
}

.btn-spinner {
  position: absolute;
  right: 1.5rem;
  animation: spin 1s linear infinite;
}

.btn-spinner.hidden {
  display: none;
}

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

/* 11. Footer Section (4 Columns, Newsletter Top, Ewebot Style)
   ========================================================================== */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
}

.footer-container {
  width: 100%;
  max-width: var(--container-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

/* Footer Top Bar: Logo & Newsletter */
.footer-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-logo-link {
  display: block;
}

.footer-logo-img {
  max-height: 65px;
  width: auto;
  display: block;
  transition: transform var(--transition-fast);
}

.footer-logo-img:hover {
  transform: scale(1.02);
}

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.625rem;
  color: var(--text-primary);
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.footer-tagline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.675rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

.footer-newsletter {
  flex: 1 1 400px;
  max-width: 520px;
}

.newsletter-input-wrap {
  display: flex;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 99px;
  padding: 4px;
  overflow: hidden;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.newsletter-input-wrap:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  font-size: 0.925rem;
}

.newsletter-submit {
  background-color: var(--text-primary);
  color: white;
  border: none;
  border-radius: 99px;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 850;
  font-size: 0.825rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.newsletter-submit:hover {
  background-color: var(--color-primary);
  transform: translateY(-1px);
}

.newsletter-consent {
  margin-top: 0.6rem;
  display: block;
}

.newsletter-checkbox-label {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  cursor: pointer;
}

.newsletter-checkbox {
  margin-top: 0.2rem;
  cursor: pointer;
}

.newsletter-consent-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.footer-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 2rem 0;
  opacity: 0.6;
}

/* 4 Columns Row */
.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 576px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-columns {
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  }
}

.info-col {
  max-width: 340px;
}

.footer-desc-text {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-simple-socials {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.footer-simple-socials a {
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer-simple-socials a:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 750;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 24px;
  height: 2px;
  background: var(--gradient-brand);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.925rem;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--text-secondary);
}

.footer-contact-info a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-contact-info a:hover {
  color: var(--color-primary);
}

.contact-icon {
  color: var(--color-primary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
}

@media (min-width: 576px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

/* 11.5. Legal / Page Layout (page.php template)
   ========================================================================== */
.legal-page-layout {
  padding-bottom: 5rem;
}

.page-banner {
  padding: 6rem 0 3.5rem;
  text-align: center;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border-color);
  margin-top: 0; /* Align perfectly under header */
}

/* Adjust top margin for sticky header offset */
.transparent-header + #primary .page-banner {
  padding-top: calc(var(--header-height-desktop) + 4rem);
}

.page-banner-title {
  font-size: 2.5rem;
  font-weight: 850;
  margin-bottom: 0.75rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1.15;
}

.breadcrumbs {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

.breadcrumbs a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}

.breadcrumbs .sep {
  color: var(--text-muted);
  margin: 0 0.25rem;
}

.breadcrumbs .current {
  color: var(--text-primary);
  font-weight: 500;
}

.page-content-wrapper {
  padding: 4.5rem 0;
}

.page-content-container {
  display: flex;
  justify-content: center;
}

.rich-text-block {
  max-width: 840px;
  width: 100%;
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.rich-text-block h2 {
  font-size: 1.75rem;
  margin: 2.25rem 0 1rem;
  color: var(--text-primary);
}

.rich-text-block h3 {
  font-size: 1.35rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--text-primary);
}

.rich-text-block p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
}

.rich-text-block ul, .rich-text-block ol {
  margin: 0 0 1.5rem 1.5rem;
}

.rich-text-block li {
  margin-bottom: 0.5rem;
}

.rich-text-block strong {
  color: var(--text-primary);
}

/* 12. Animation reveals (Scroll Animations)
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Specific reveal delays for grid items */
.about-grid .about-card:nth-child(1) { transition-delay: 0.1s; }
.about-grid .about-card:nth-child(2) { transition-delay: 0.2s; }
.about-grid .about-card:nth-child(3) { transition-delay: 0.3s; }
.about-grid .about-card:nth-child(4) { transition-delay: 0.4s; }

.advantages-grid .adv-card:nth-child(1) { transition-delay: 0.1s; }
.advantages-grid .adv-card:nth-child(2) { transition-delay: 0.2s; }
.advantages-grid .adv-card:nth-child(3) { transition-delay: 0.3s; }
.advantages-grid .adv-card:nth-child(4) { transition-delay: 0.4s; }

.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.4s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.5s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.6s; }

.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-item:nth-child(4) { transition-delay: 0.4s; }
.timeline-item:nth-child(5) { transition-delay: 0.5s; }
.timeline-item:nth-child(6) { transition-delay: 0.6s; }

/* 13. Ewebot Megaphone Hero & Floating Objects
   ========================================================================== */
.hero-img-illustration {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  animation: floatIllustration 6s ease-in-out infinite;
}

/* Floating Avatar Bubbles */
.floating-avatar {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--bg-primary);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.floating-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-1 {
  width: 76px;
  height: 76px;
  top: 15%;
  left: -5%;
}

.avatar-2 {
  width: 68px;
  height: 68px;
  bottom: 25%;
  left: -8%;
}

.avatar-3 {
  width: 84px;
  height: 84px;
  bottom: -2%;
  right: -5%;
}

/* Floating Spark Stars */
.floating-star {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 3;
}

.star-1 {
  top: 28%;
  left: -18%;
  width: 32px;
  height: 32px;
}

.star-2 {
  bottom: 12%;
  left: 32%;
  width: 24px;
  height: 24px;
}

.star-3 {
  bottom: -6%;
  right: 38%;
  width: 28px;
  height: 28px;
}

/* SVGs inside stars */
.star-svg-orange path {
  fill: var(--color-accent-orange);
}
.star-svg-black path {
  fill: var(--text-primary);
}

/* Floating Blurred Blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  -webkit-filter: blur(80px);
  opacity: 0.28; /* More vivid background glow for isometric graphic */
  z-index: 1;
}

.blob-purple {
  width: 280px;
  height: 280px;
  background-color: var(--color-accent-purple);
  top: 25%;
  left: 20%;
}

.blob-green {
  width: 320px;
  height: 320px;
  background-color: var(--color-accent-teal);
  bottom: 5%;
  right: -10%;
}

.blob-blue {
  width: 220px;
  height: 220px;
  background-color: var(--color-secondary);
  top: -5%;
  left: -5%;
}

/* Ewebot Floating Animations */
@keyframes floatIllustration {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.bubble-float-1 {
  animation: floatBubble1 5s ease-in-out infinite;
}

.bubble-float-2 {
  animation: floatBubble2 6s ease-in-out infinite;
}

.bubble-float-3 {
  animation: floatBubble3 5.5s ease-in-out infinite;
}

@keyframes floatBubble1 {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
  100% { transform: translateY(0px) scale(1); }
}

@keyframes floatBubble2 {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(12px) scale(0.98); }
  100% { transform: translateY(0px) scale(1); }
}

@keyframes floatBubble3 {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
  100% { transform: translateY(0px) scale(1); }
}

/* Star Rotating Animations */
.star-rotate-1 {
  animation: spinStar1 12s linear infinite;
}

.star-rotate-2 {
  animation: floatBubble2 7s ease-in-out infinite;
}

.star-rotate-3 {
  animation: spinStar2 18s linear infinite;
}

@keyframes spinStar1 {
  from { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(180deg) translateY(-4px); }
  to { transform: rotate(360deg) translateY(0); }
}

@keyframes spinStar2 {
  from { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(-180deg) translateY(3px); }
  to { transform: rotate(-360deg) translateY(0); }
}

/* ==========================================================================
   14. Contact Form 7 Integration Styling
   ========================================================================== */
.wpcf7 {
  width: 100%;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wpcf7-form p {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Fields Styling */
.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container input[type="number"],
.contact-form-container textarea,
.contact-form-container select,
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-textarea,
.wpcf7-form-control.wpcf7-number,
.wpcf7-form-control.wpcf7-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
  transition: all var(--transition-fast);
  color: var(--text-primary);
  outline: none;
}

.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container input[type="tel"]:focus,
.contact-form-container input[type="number"]:focus,
.contact-form-container textarea:focus,
.contact-form-container select:focus,
.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-textarea:focus,
.wpcf7-form-control.wpcf7-number:focus,
.wpcf7-form-control.wpcf7-select:focus {
  border-color: var(--color-primary);
  background-color: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

/* Submit Button Styling */
.contact-form-container input[type="submit"],
.contact-form-container button[type="submit"],
.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  background: var(--gradient-brand);
  color: white;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.contact-form-container input[type="submit"]:hover,
.contact-form-container button[type="submit"]:hover,
.wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: white;
}

/* Mobile Menu CTA Button */
.mobile-menu-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  width: 100%;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--transition-normal);
  z-index: 999;
}

.back-to-top svg {
  transition: transform var(--transition-normal);
}

.back-to-top:hover {
  background-color: var(--color-secondary);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
  transform: translateY(-2px);
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

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



