/* ============================================================
   eCommerce Shopping Cart Audit – V3
   Modern, Vibrant, Glassmorphism, Premium Aesthetic
   ============================================================ */
@font-face {
  font-family: 'Mona Sans';
  src: url('https://cdn.jsdelivr.net/npm/@github/mona-sans@1.0.1/dist/variable/Mona-Sans.woff2') format('woff2 supports variations'),
       url('https://cdn.jsdelivr.net/npm/@github/mona-sans@1.0.1/dist/variable/Mona-Sans.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mona Sans';
  src: url('https://cdn.jsdelivr.net/npm/@github/mona-sans@1.0.1/dist/variable/Mona-Sans-Italic.woff2') format('woff2 supports variations'),
       url('https://cdn.jsdelivr.net/npm/@github/mona-sans@1.0.1/dist/variable/Mona-Sans-Italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --primary: #4343ED;       /* CommerceShop Secondary Color */
  --primary-light: #7B7BF5;
  --primary-dark: #2E2EC7;
  --accent: #4343ED;        /* Rose */
  --accent-light: #7B7BF5;
  --navy: #07056A;          /* CommerceShop Main Color */
  --bg-main: #F7F9FB;       /* CommerceShop Section Soft */
  --bg-light: #ffffff;      /* CommerceShop Background */
  --bg-dark: #07056A;       /* CommerceShop Main Color (dark sections) */
  --text-dark: #0A0B2C;     /* CommerceShop Headline Ink */
  --text-body: #525680;     /* CommerceShop Body Text */
  --text-muted: #6B6E9A;
  --border: #E2E3EF;        /* CommerceShop Border/Divider */
  --blue-tint: #EEF1FF;     /* CommerceShop Blue Tint */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-primary: 0 10px 25px -5px rgba(67, 67, 237, 0.4);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-hero: linear-gradient(135deg, #EEF1FF 0%, #e0e0ff 100%);
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #6060F5 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Mona Sans', sans-serif;
  background: var(--bg-main);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Mona Sans', sans-serif;
  color: var(--navy);
  line-height: 1.2;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }

/* Utilities */
.section-pad { padding: 100px 0;background: #efefff; }
section { overflow-x: hidden; position: relative; }
.bg-light-blue { background: #F7F9FB; }
.bg-navy { background: var(--bg-dark); }
.text-primary-light { color: var(--primary-light) !important; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(67, 67, 237, 0.1);
  color: var(--primary);
  border: 1px solid rgba(67, 67, 237, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; }

.divider-line {
  height: 4px;
  width: 60px;
  background: var(--gradient-primary);
  border-radius: 4px;
  margin: 20px 0;
}
.divider-line.center { margin: 20px auto; }

/* Buttons */
.btn-primary-custom {
  background: var(--gradient-primary);
  color: #fff;
  font-family: 'Mona Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 36px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(67, 67, 237, 0.5);
  color: #fff;
}

/* NAVBAR */
#navbar {
  /* background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5); */
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, 0.95); }
#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  #navbar .container {
    justify-content: center;
  }
}

.navbar-brand-logo {
  font-family: 'Mona Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy) !important;
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-brand-logo .logo-icon {
  width: 42px; height: 42px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff;
  box-shadow: var(--shadow-primary);
}
.navbar-brand-logo span { color: var(--primary); }

.nav-contact {
  display: flex; align-items: center; gap: 20px;
  font-size:1.1rem; font-weight: 600;
  color: var(--text-dark);
}
.nav-contact a { color: var(--text-dark); }
.nav-contact a:hover { color: var(--primary); }
.nav-contact i { color: var(--primary); margin-right: 6px; }

/* HERO */
#hero {
  position: relative;
  background: var(--gradient-hero);
  /*padding: 40px 0 50px;
  min-height: 100vh;*/
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -90px;
    padding-top: 40px;
}
@media (min-width: 768px) {
  #hero {
    /* padding: 60px 0 80px; */
  }
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2.5L25 17l-5 3.5zM40 20.5V18H20v-2h20v-2.5L45 17l-5 3.5z' fill='%234343ED' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.hero-container {
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .hero-container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .hero-container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.hero-grid-bg {
  position: absolute; 
  width: 400px; 
  height: 400px;
  background: radial-gradient(circle, rgba(67,67,237,0.15) 0%, transparent 70%);
  top: -100px; 
  right: -50px;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero-grid-bg {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .highlight {
  color: var(--primary);
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-bullets { list-style: none; padding: 0; margin: 0 0 32px; }
.hero-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.1rem; font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
}
.hero-bullets li i { color: #10b981; font-size: 1.2rem; }
.hero-subtitle { font-size: 1.2rem; font-weight: 500; color: var(--text-body); }

/* Form Card (Glassmorphism) */
.hero-form-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
  background: var(--gradient-primary);
}
.hero-form-card .form-title {
  font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 8px;
}
.hero-form-card .form-sub { font-size:1.1rem; color: var(--text-muted); margin-bottom: 24px; }

.form-control-custom {
  width: 100%;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  font-family: 'Mona Sans', sans-serif;
  font-size: 1.1rem;
  padding: 12px 18px;
  border-radius: 12px;
  outline: none;
  transition: var(--transition);
  margin-bottom: 12px;
}
.form-control-custom:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(67, 67, 237, 0.15);
}
.form-label-custom {
  display: block;
  font-size: 0.85rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-group-custom .help-block.with-errors{
    color: #ef4444;
    font-size: 14px;
    margin-top: -6px !important;
    font-weight: 500;
    display: block;
    line-height: 1.4;
    margin-bottom: 4px !important;
}
.required-star { color: var(--accent); }

/* TRUST BAR */
.trust-bar-section {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.02);
  position: relative;
  z-index: 10;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 10px;
}
.trust-item i { font-size: 2rem; color: var(--primary); opacity: 0.9; }
.trust-item span { font-size: 1.1rem; font-weight: 700; color: var(--navy); }

/* AUDIT CARDS */
.audit-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.audit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(67,67,237,0.3);
}
.audit-card::after {
  content: ''; position: absolute; top: 0; right: 0; width: 80px; height: 80px;
  background: radial-gradient(circle top right, rgba(67,67,237,0.1) 0%, transparent 70%);
}
.audit-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(67,67,237,0.1), rgba(67,67,237,0.02));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--primary);
  margin-bottom: 20px;
}
.audit-card h5 { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; }
.audit-card p { font-size:1.1rem; color: var(--text-muted); margin-bottom: 20px; }
.audit-list { list-style: none; padding: 0; }
.audit-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem; font-weight: 500; color: var(--navy);
  padding: 6px 0; border-bottom: 1px dashed var(--border);
}
.audit-list li:last-child { border: none; }
.audit-list li i { color: #10b981; font-size: 0.85rem; }

/* REPORT MOCKUP */
.pdf-mockup {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  position: relative;
  transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
  transition: var(--transition);
}
.pdf-mockup:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.pdf-scroll-indicator {
  position: absolute; top: -20px; right: -20px;
  background: var(--accent); color: white;
  padding: 10px 20px; border-radius: 30px;
  font-size: 0.85rem; font-weight: 700;
  box-shadow: 0 10px 20px rgba(244,63,94,0.3);
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.pdf-content {
  background: #F7F9FB; border-radius: 12px; border: 1px solid var(--border);
  height: 400px; padding: 20px; overflow: hidden;
}
.pdf-header { font-family: 'Mona Sans', sans-serif; font-size: 1.2rem; font-weight: 800; border-bottom: 2px solid var(--border); padding-bottom: 10px; margin-bottom: 20px; }
.skeleton-line { height: 12px; background: #E2E3EF; border-radius: 6px; margin-bottom: 12px; width: 100%; }
.skeleton-line.short { width: 60%; }
.skeleton-box { height: 120px; background: #E2E3EF; border-radius: 12px; margin: 20px 0; }

.deliverables-grid { display: flex; flex-direction: column; gap: 24px; }
.deliverable-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg-light); padding: 20px; border-radius: var(--radius);
  border: 1px solid var(--border); transition: var(--transition);
}
.deliverable-item:hover { transform: translateX(10px); border-color: rgba(67,67,237,0.3); box-shadow: var(--shadow-sm); }
.deliv-icon { font-size: 2rem; line-height: 1; }
.deliverable-item h6 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.deliverable-item p { font-size:1.1rem; margin: 0; color: var(--text-body); }

/* PDF PREVIEW MOBILE */
.pdf-preview-card {
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.pdf-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.pdf-thumbnail-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  background: #F7F9FB;
  overflow: hidden;
}
.pdf-thumbnail-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}
.pdf-tap-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}
.pdf-tap-overlay:hover {
  background: rgba(15, 23, 42, 0.85);
}
.pdf-overlay-content {
  text-align: center;
  color: white;
  padding: 20px;
}
.pdf-overlay-content i {
  color: #f43f5e;
  display: block;
  margin-bottom: 10px;
}
.pdf-overlay-text {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}
.pdf-info {
  padding: 24px;
  text-align: left;
  background: var(--bg-light);
}
.pdf-info h5 {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.pdf-info p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* TESTIMONIALS */
.testimonial-card {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px;
  position: relative; height: 100%; transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.quote-icon {
  font-family: Georgia, serif; font-size: 4rem; color: rgba(67,67,237,0.1);
  position: absolute; top: 10px; left: 20px; line-height: 1;
}
.testimonial-text { font-size: 1.1rem; font-style: italic; color: var(--navy); margin-bottom: 30px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gradient-primary); display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 1.1rem;
}
.author-name { font-weight: 800; color: var(--navy); font-size: 1.1rem; }
.author-title { font-size: 0.85rem; color: var(--text-muted); }

/* FAQ */
.faq-accordion .accordion-item {
  background: var(--bg-light); border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important; margin-bottom: 16px; overflow: hidden;
}
.faq-accordion .accordion-button {
  font-family: 'Mona Sans', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--navy); padding: 24px 30px; box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) { background: rgba(67,67,237,0.05); color: var(--primary); }
.faq-accordion .accordion-body { font-size: 1.1rem; color: var(--text-body); padding:30px 30px 30px 24px; border-top: 1px solid var(--border); margin-top: 10px; }

/* BOTTOM FORM */
.bottom-deliverables-list { list-style: none; padding: 0; margin-bottom: 30px; }
.bottom-deliverables-list li {
  display: flex; align-items: center; gap: 12px; font-size: 1.1rem;
  color: rgba(255,255,255,0.8); margin-bottom: 12px;
}
.bottom-deliverables-list li i { color: #34d399; font-size: 1.2rem; }

/* Footer Form Horizontal Layout */
#footerForm {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

#footerForm .form-group-custom {
  flex: 1;
  min-width: 180px;
  margin-bottom: 0;
}

#footerForm .form-label-custom {
  display: none;
}

#footerForm .form-control-custom {
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 1rem;
}

#footerForm .form-control-custom::placeholder {
  color:#fff !important;
  font-weight: 400;
}

#footerForm .form-control-custom:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(67, 67, 237, 0.2);
  color: #fff;
}

#footerForm .btn-submit {
  flex: 0 0 auto;
  min-width: 180px;
  margin-top: 0 !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 auto;
}

#footerForm .form-success-area {
  flex: 1 1 100%;
}

#footerForm .help-block.with-errors {
  color: #fca5a5;
  font-size: 13px;
  margin-top: 6px !important;
  padding-left: 20px;
}

@media (max-width: 991px) {
  #footerForm {
    flex-direction: column;
  }
  
  #footerForm .form-group-custom,
  #footerForm .btn-submit {
    width: 100%;
    min-width: 100%;
  }
  
  #footerForm .form-label-custom {
    display: block;
  }
  
  #footerForm .form-control-custom {
    border-radius: 12px;
  }
  
  #footerForm .btn-submit {
    border-radius: 12px;
  }
}

/* FOOTER */
#footer { background: #07056A; padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.1); }
#footer p, #footer a { color: rgba(255,255,255,0.6); font-size:1.1rem; margin: 0; }
#footer a:hover { color: white; }

/* MOBILE FORM POPUP MODAL */
.mobile-form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: flex-end;
}
.mobile-form-modal.active {
  display: flex;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}
.modal-content {
  position: relative;
  width: 100%;
  max-height: 90vh;
  background: var(--bg-light);
  border-radius: 24px 24px 0 0;
  overflow-y: auto;
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}
.modal-header {
  position: sticky;
  top: 0;
  background: var(--bg-light);
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}
.modal-title {
  font-family: 'Mona Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  padding-right: 40px;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
  font-size: 1.2rem;
}
.modal-close:active {
  transform: scale(0.95);
  background: rgba(0, 0, 0, 0.1);
}
.modal-body {
  padding: 24px 20px 32px;
}
.modal-subtitle {
  color: var(--text-muted);
  font-size:1.1rem;
  margin-bottom: 24px;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* STICKY MOBILE CTA */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 80%, rgba(255,255,255,0) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transform: translateY(0);
  transition: var(--transition);
}
.sticky-mobile-cta.hidden {
  transform: translateY(100%);
}
.sticky-cta-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Mona Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(67,67,237,0.4);
  transition: var(--transition);
  cursor: pointer;
}
.sticky-cta-btn:active {
  transform: scale(0.98);
}
.sticky-cta-btn i {
  font-size: 1.2rem;
}

/* BACK TO TOP */
#backToTop {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 50px; height: 50px; background: var(--gradient-primary);
  border: none; border-radius: 50%; color: white; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none; transition: var(--transition);
  box-shadow: var(--shadow-primary);
}
#backToTop.show { opacity: 1; pointer-events: auto; }
#backToTop:hover { transform: translateY(-5px); }
@media (max-width: 991.98px) {
  #backToTop {
    bottom: 90px;
  }
}

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.calendly
{
  padding:60px 0px;
}

.tcsForms .form-group .help-block {
    position: absolute;
    margin: 0;
    font-size: 12px;
    color: red;
    top: 43px;
    left: 17px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .section-pad { padding: 80px 0; }
  .hero-form-card { 
    display: none !important;
  }
}
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .col-md-5ths { width: 50%; }
}
@media (min-width: 768px) {
  .col-md-5ths { flex: 0 0 auto; width: 20%; }
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .38);
    font-size: 13px;
}

.proof-avatars {
    display: flex;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--main);
    margin-left: -7px;
    font-weight: 700;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.av1 {
    background: #5f5fef;
}

.avatar:first-child {
    margin-left: 0;
}

.av2 {
    background: #343CED;
}

.av3 {
    background: #2127a9;
}

.av4 {
    background: #17175c;
}

/* CALENDLY WIDGET STYLES */
.calendly-inline-widget {
  min-width: 320px;
  height: 500px !important;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .calendly-inline-widget {
    height: 600px;
  }
}

/* Hide Calendly timezone and cookie settings by masking bottom portion */
.calendly-inline-widget::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0px !important;
  background: white;
  z-index: 10;
  pointer-events: none;
}

/* Adjust iframe to show more content at top */
.calendly-inline-widget iframe {
  pointer-events: auto;
  position: relative;
  height: 100% !important;
  margin-bottom: 0;
}

/* Spotpicker min-height adjustment */
.spotpicker {
  min-height: 0 !important;
}

/* Calendly booking kit spot picker wrapper height fix */
[class*="booking-kit_spot-picker-wrapper_"] {
  height: 0px !important;
  min-height: 0 !important;
  max-height: 0px !important;
  overflow: hidden !important;
  display: none !important;
}

[class*="booking-kit_spot-picker-wrapper"] {
  height: 0px !important;
  min-height: 0 !important;
  max-height: 0px !important;
  overflow: hidden !important;
}

