@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --primary: #0D5DFF;
  --primary-light: rgba(13, 93, 255, 0.15);
  --primary-dark: #0847CC;
  --accent: #6366F1;
  --lavender: #A78BFA;
  --secondary: #F97316;
  --secondary-light: rgba(249, 115, 22, 0.12);
  --success: #34D399;
  --success-light: rgba(52, 211, 153, 0.15);
  --danger: #F87171;
  --warning: #FBBF24;
  
  /* Backgrounds */
  --bg-primary: #050B1A;
  --bg-secondary: #0A1628;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-elevated: rgba(255, 255, 255, 0.08);
  
  /* Text */
  --text-primary: #F0F4FF;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-light: rgba(255, 255, 255, 0.35);
  --white: #FFFFFF;
  
  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.04);
  --border-active: rgba(13, 93, 255, 0.4);
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Glows */
  --shadow-glow: 0 0 25px rgba(13, 93, 255, 0.25);
  --shadow-glow-lavender: 0 0 25px rgba(167, 139, 250, 0.2);
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Glowing mesh background lights */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(13, 93, 255, 0.15) 0%, rgba(5, 11, 26, 0) 60%),
    radial-gradient(circle at 90% 70%, rgba(99, 102, 241, 0.12) 0%, rgba(5, 11, 26, 0) 60%);
  z-index: -1;
  pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--lavender) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Common Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(13, 93, 255, 0.4);
  filter: brightness(1.1);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-light);
  transform: translateY(-2px);
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Navigation Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 11, 26, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(5, 11, 26, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
  box-shadow: var(--shadow-glow);
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px 0;
  position: relative;
  overflow: hidden;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--lavender);
  border: 1px solid rgba(13, 93, 255, 0.3);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: rgba(13, 93, 255, 0.3); }
  50% { border-color: rgba(167, 139, 250, 0.6); }
}

.hero-title {
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
}

.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Floating interactive dashboard representation */
.hero-glass-card {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.glow-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 93, 255, 0.25) 0%, rgba(99, 102, 241, 0) 70%);
  filter: blur(40px);
  z-index: 1;
  top: 10%;
  left: 20%;
  animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(15px, -15px) scale(1.1); }
}

.booking-snippet {
  margin-top: 16px;
}

.service-badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 6px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--success);
  margin-bottom: 12px;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-tag {
  color: var(--primary);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 40px;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 16px;
}

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

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(13, 93, 255, 0.08), transparent 80%), rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 93, 255, 0.35);
  box-shadow: 0 0 30px rgba(13, 93, 255, 0.2);
}

.service-icon-box {
  width: 54px;
  height: 54px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 0 15px var(--primary);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.service-features li i {
  color: var(--success);
  font-size: 14px;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  margin-top: auto;
}

.service-price-tag {
  font-family: var(--font-title);
  font-size: 13px;
  color: var(--text-light);
}

.service-price-tag span {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.btn-card-action {
  background: transparent;
  color: var(--primary);
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.btn-card-action:hover {
  color: var(--lavender);
  gap: 8px;
}

/* Interactive Calculator Section */
.calc-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.calc-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-top: 40px;
}

.calc-selectors {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-service-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.calc-tab {
  padding: 16px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.calc-tab i {
  font-size: 20px;
  color: var(--text-light);
}

.calc-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.calc-tab.active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 0 15px rgba(13, 93, 255, 0.15);
}

.calc-tab.active i {
  color: var(--primary);
}

.calc-options-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  min-height: 250px;
}

.calc-group {
  margin-bottom: 24px;
}

.calc-group:last-child {
  margin-bottom: 0;
}

.calc-label {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

/* Custom Select & Range controls */
.calc-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  cursor: pointer;
  transition: border 0.3s ease;
}

.calc-select:focus {
  border-color: var(--primary);
}

/* Range input styling */
.range-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.calc-range {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary);
  transition: transform 0.1s ease;
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.range-val {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--lavender);
  min-width: 40px;
  text-align: right;
}

/* Estimate Summary Box */
.calc-summary {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-color: var(--border-active);
  position: sticky;
  top: 100px;
}

.calc-summary-title {
  font-size: 22px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.calc-details {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.calc-details li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.calc-details li.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  border-top: 1px dashed var(--border);
  padding-top: 16px;
  margin-top: 16px;
}

.price-glow {
  font-size: 32px;
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--text-primary);
  text-shadow: 0 0 15px rgba(13, 93, 255, 0.4);
}

/* Booking Section */
.booking-section {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.booking-info h3 {
  font-size: 30px;
  margin-bottom: 16px;
}

.booking-info p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 1px solid rgba(13, 93, 255, 0.3);
  color: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-title);
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Form Styles */
.booking-form-wrapper {
  border-color: rgba(255, 255, 255, 0.08);
}

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

.form-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: var(--text-light);
}

.form-control:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(13, 93, 255, 0.1);
}

/* Grid layout for services checkbox */
.service-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
}

.service-check-label:hover {
  background: rgba(255, 255, 255, 0.05);
}

.service-check-label input {
  accent-color: var(--primary);
}

.service-check-label input:checked + span {
  color: var(--white);
}

.service-check-label:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-light);
}

/* Testimonials / Feedback Section */
.feedback-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.feedback-card {
  position: relative;
}

.stars {
  color: var(--secondary);
  font-size: 16px;
  margin-bottom: 16px;
}

.feedback-text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-title);
  border: 1px solid rgba(13, 93, 255, 0.2);
}

.reviewer-name {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
}

.reviewer-service {
  font-size: 12px;
  color: var(--text-light);
}

/* Footer Section */
footer {
  background: #020610;
  border-top: 1px solid var(--border);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-desc p {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 24px;
  height: 2px;
  background: var(--primary);
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-col p i {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  font-size: 13px;
  color: var(--text-light);
}

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

.footer-legal-links a {
  color: var(--text-light);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--text-secondary);
}

/* Premium Confirmation Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 11, 26, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.confirm-modal {
  width: 90%;
  max-width: 480px;
  border-color: var(--success);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 50px rgba(52, 211, 153, 0.15);
}

.modal-overlay.active .confirm-modal {
  transform: scale(1);
}

.success-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
  border: 2px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  font-size: 32px;
  margin: 0 auto 24px auto;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
  animation: scale-up 0.5s ease;
}

@keyframes scale-up {
  0% { transform: scale(0); }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.confirm-modal h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.confirm-modal p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}

.receipt-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  margin-bottom: 30px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.receipt-row:last-child {
  margin-bottom: 0;
}

.receipt-row.total {
  font-weight: 700;
  color: var(--text-primary);
  border-top: 1px dashed var(--border);
  padding-top: 8px;
  margin-top: 8px;
}

.receipt-label {
  color: var(--text-light);
}

/* Animations for Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .calc-layout {
    grid-template-columns: 1fr;
  }
  
  .calc-summary {
    position: static;
  }
  
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-primary);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: left 0.3s ease;
    border-top: 1px solid var(--border);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .calc-service-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-full {
    grid-column: span 1;
  }
  
  .service-check-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   ADDITIONAL PREMIUM STYLES
   ═══════════════════════════════════════════════════ */

/* Particle Canvas Background */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

/* Hero Dashboard Mini Card */
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.hero-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: blink 2s infinite;
}

.hero-card-dot.green {
  background: var(--success);
  box-shadow: 0 0 6px var(--success);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-card-services {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-mini-service {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.hero-mini-service:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border);
  transform: translateX(4px);
}

.mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-name {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
}

.mini-price {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.mini-time {
  color: var(--text-light);
}

.mini-status {
  margin-left: auto;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}

.mini-status.booked {
  background: rgba(13, 93, 255, 0.12);
  color: #60A5FA;
}

.mini-status.confirmed {
  background: rgba(52, 211, 153, 0.12);
  color: var(--success);
}

.mini-status.pending {
  background: rgba(251, 191, 36, 0.12);
  color: var(--warning);
}

/* Second glow orb */
.glow-orb-2 {
  background: radial-gradient(circle, rgba(167, 139, 250, 0.2) 0%, rgba(99, 102, 241, 0) 70%);
  top: auto;
  bottom: -10%;
  left: auto;
  right: 10%;
  animation-delay: -3s;
  animation-direction: alternate-reverse;
}

/* Trust Strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
}

.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge strong {
  font-family: var(--font-title);
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
}

.trust-badge span {
  font-size: 12px;
  color: var(--text-light);
}

/* Process / How It Works Section */
.process-section {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process-number {
  font-family: var(--font-title);
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(13, 93, 255, 0.3) 0%, rgba(13, 93, 255, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: -10px;
  z-index: 1;
}

.process-line {
  position: absolute;
  top: 50%;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(13, 93, 255, 0.3), rgba(167, 139, 250, 0.1));
  z-index: 0;
}

.process-card {
  width: 100%;
  text-align: center;
  padding: 30px 24px;
}

.process-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.process-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* CTA Banner Section */
.cta-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(13, 93, 255, 0.08) 0%, rgba(99, 102, 241, 0.06) 50%, rgba(167, 139, 250, 0.04) 100%);
  border: 1px solid rgba(13, 93, 255, 0.2);
  border-radius: 24px;
  padding: 70px 50px;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 93, 255, 0.15), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-card h2 {
  font-size: 36px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-card p {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* Large button variant */
.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 14px;
}

/* Responsive additions */
@media (max-width: 992px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-line {
    display: none;
  }

  .process-number {
    font-size: 40px;
  }

  .hero-graphic {
    display: none;
  }

  .cta-card {
    padding: 50px 30px;
  }

  .cta-card h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .section-title {
    font-size: 30px;
  }

  .cta-card h2 {
    font-size: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════
   DOWNLOAD APP SECTION
   ═══════════════════════════════════════════════════ */

.download-section {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.download-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.download-info h3 {
  font-size: 34px;
  margin-bottom: 16px;
}

.download-info p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 500px;
}

.app-perks {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.app-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.app-store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  text-decoration: none;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.store-btn:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.store-label {
  display: block;
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.store-name {
  display: block;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
}

/* Phone Mockup */
.download-graphic {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  border-radius: 32px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(13, 93, 255, 0.1);
}

.phone-notch {
  width: 100px;
  height: 22px;
  background: var(--bg-primary);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 16px auto;
  border: 1px solid var(--border);
  border-top: none;
}

.phone-screen {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 20px 16px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.phone-header {
  margin-bottom: 24px;
}

.phone-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.phone-svc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.phone-svc-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
}

.phone-cta-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(13, 93, 255, 0.3);
}

/* btn-card-action as anchor */
a.btn-card-action {
  text-decoration: none;
}

/* Responsive for download section */
@media (max-width: 992px) {
  .download-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-info p {
    margin-left: auto;
    margin-right: auto;
  }

  .app-perks {
    align-items: center;
  }

  .app-store-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .download-info h3 {
    font-size: 26px;
  }

  .app-store-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .phone-mockup {
    width: 240px;
  }
}

/* ═══════════════════════════════════════════════════
   PREMIUM FLOATING BADGES & ANIMATIONS
   ═══════════════════════════════════════════════════ */

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10;
  pointer-events: none;
  transition: all 0.3s ease;
}

.fb-1 {
  top: 20%;
  left: -20%;
  animation: float-y 4s ease-in-out infinite alternate;
}

.fb-2 {
  top: 50%;
  right: -25%;
  animation: float-y 5s ease-in-out infinite alternate-reverse;
}

.fb-3 {
  bottom: 10%;
  left: -15%;
  animation: float-x 6s ease-in-out infinite alternate;
}

@keyframes float-y {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

@keyframes float-x {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(10px) translateY(-10px); }
}

/* ═══════════════════════════════════════════════════
   SERVICE DETAIL MODAL OVERLAYS
   ═══════════════════════════════════════════════════ */

.detail-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 11, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.detail-modal {
  width: 90%;
  max-width: 650px;
  max-height: 85vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(13, 93, 255, 0.15);
}

.detail-modal-overlay.active .detail-modal {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.modal-header-section {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.modal-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 0 20px rgba(13, 93, 255, 0.2);
}

.modal-title-desc h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.modal-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 6px;
  background: rgba(167, 139, 250, 0.15);
  color: var(--lavender);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-body-section {
  margin-bottom: 30px;
}

.modal-body-section p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal-list-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.modal-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
  margin-bottom: 24px;
}

@media (max-width: 576px) {
  .modal-checklist {
    grid-template-columns: 1fr;
  }
}

.modal-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.modal-checklist li i {
  color: var(--success);
  flex-shrink: 0;
}

/* Hide floating badges on mobile viewports for a cleaner screen space */
@media (max-width: 992px) {
  .floating-badge {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════
   PREMIUM DYNAMIC EFFECT UPGRADES
   ═══════════════════════════════════════════════════ */

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--lavender));
  z-index: 2100;
  box-shadow: 0 0 10px var(--primary);
  transition: width 0.1s ease-out;
}

/* 3D Laser Glow Border Card override */
.service-card {
  border: 1px solid transparent !important;
  background: 
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    radial-gradient(180px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(13, 93, 255, 0.4) 0%, rgba(167, 139, 250, 0.1) 40%, transparent 80%) border-box;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
}

/* Phone Screen Slide Carousel */
.phone-screen {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.phone-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  justify-content: space-between;
}

.phone-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
}

.phone-header-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

/* Tech Tracking Map screen mock */
.phone-map-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.phone-map-container::before {
  content: '';
  position: absolute;
  width: 140%;
  height: 140%;
  background: 
    radial-gradient(circle at 50% 50%, rgba(13, 93, 255, 0.06) 10%, transparent 60%),
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 100% 100%, 12px 12px, 12px 12px;
  animation: grid-drift 10s linear infinite;
}

@keyframes grid-drift {
  0% { transform: translate(-10px, -10px); }
  100% { transform: translate(5px, 5px); }
}

.map-pointer {
  font-size: 24px;
  z-index: 2;
  animation: map-bounce 1.5s ease-in-out infinite alternate;
  text-shadow: 0 4px 10px rgba(13, 93, 255, 0.4);
}

@keyframes map-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

/* Confirmed Receipt screen mock */
.phone-receipt {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  justify-content: center;
}

.receipt-item {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-secondary);
}

.receipt-item span:first-child {
  color: var(--text-light);
}

.receipt-item span:last-child {
  font-family: var(--font-title);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   FLOATING MESH AMBIENT BLOBS
   ═══════════════════════════════════════════════════ */

.mesh-blob {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  filter: blur(80px);
  will-change: transform, border-radius;
}

.blob-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(13, 93, 255, 0.15) 0%, rgba(13, 93, 255, 0) 70%);
  top: -100px;
  left: -100px;
  animation: float-morph-1 22s infinite alternate ease-in-out;
}

.blob-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, rgba(167, 139, 250, 0) 70%);
  bottom: -150px;
  right: -150px;
  animation: float-morph-2 28s infinite alternate ease-in-out;
}

@keyframes float-morph-1 {
  0% {
    transform: translate(0px, 0px) scale(1) rotate(0deg);
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  }
  33% {
    transform: translate(150px, 120px) scale(1.1) rotate(120deg);
    border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%;
  }
  66% {
    transform: translate(-50px, 200px) scale(0.95) rotate(240deg);
    border-radius: 48% 52% 35% 65% / 40% 65% 35% 60%;
  }
  100% {
    transform: translate(0px, 0px) scale(1) rotate(360deg);
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  }
}

@keyframes float-morph-2 {
  0% {
    transform: translate(0px, 0px) scale(1) rotate(0deg);
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
  }
  50% {
    transform: translate(-150px, -120px) scale(1.15) rotate(-180deg);
    border-radius: 30% 70% 70% 30% / 50% 30% 70% 50%;
  }
  100% {
    transform: translate(0px, 0px) scale(1) rotate(-360deg);
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
  }
}
