/* style.css */

:root {
  /* upsellecommerce.com colors */
  --primary: #7243f2;
  --primary-dark: #5b35c2;
  --accent-orange: #f8991d;
  --accent-yellow: #ffd813;

  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-slate: #32373c;
  --bg-dark: #1e2124;
  --bg-darker: black;

  --text-main: #333333;
  --text-muted: #666666;
  --text-light: #f8f9fa;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 35px rgba(114, 67, 242, 0.15);

  --radius: 8px;
  --radius-lg: 16px;

  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--bg-slate);
}

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

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

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

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

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

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

.highlight-purple {
  color: var(--primary);
}

.highlight-yellow {
  color: var(--accent-yellow);
}

.bg-slate {
  background-color: var(--bg-slate);
  color: var(--text-light);
}
.bg-darker {
  background-color: var(--bg-darker);
}
/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--bg-slate);
}

.btn-primary:hover {
  background-color: #e69a00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 171, 0, 0.3);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-outline {
  border: 2px solid black;
  color: black;
  background: transparent;
}

.btn-outline:hover {
  background: black;
  color: var(--bg-white);
}

.btn-text {
  background: transparent;
  color: var(--primary);
  padding: 12px 0;
}

.btn-text:hover {
  color: var(--primary-dark);
}

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

/* Header */
.site-header {
  background: #ffd813;
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-badges {
  display: flex;
  align-items: center;
  gap: 20px;
}

.spn-badge img {
  height: 35px;
  border-radius: 4px;
}

/* Hero Section */
.hero {
  padding: 160px 0 80px;
  background: var(--bg-white);

  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.alert-badge {
  display: inline-block;
  background: black;
  color: var(--accent-orange);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: center;
}

.hero-spn-featured {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--bg-white);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-spn-featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(114, 67, 242, 0.15);
}

.spn-logo-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.spn-text strong {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
}

.spn-text span {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.icon-check {
  color: var(--primary);
  font-weight: bold;
}

.floating-img {
  animation: float 6s ease-in-out infinite;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.floating-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 16px 24px;
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
}

.floating-card.c1 {
  top: -20px;
  right: -20px;
}

.floating-card.c2 {
  bottom: -30px;
  left: -20px;
  animation-delay: 3s;
}

.fc-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.fc-icon.red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.fc-text h4 {
  color: var(--primary);
  margin: 0;
  font-size: 1rem;
}

.fc-text p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Marquee */
.marquee-wrapper {
  overflow: hidden;
  background: var(--bg-slate);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
}
.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: scroll-marquee 20s linear infinite;
}
.marquee-item {
  color: var(--bg-white);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0 40px;
}
@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Achievements */
.achievements {
  padding: 60px 0;
  background: var(--bg-darker);
  color: var(--bg-white);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  color: var(--bg-white);
  margin-bottom: 5px;
}

.achievements p {
  font-weight: 500;
  opacity: 0.9;
}

/* Process Section */
.process {
  padding: 100px 0;
  background: var(--bg-white);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-heading p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Process Timeline Redesign */
.process-timeline-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.timeline-column {
  position: relative;
  padding-left: 30px;
}

.timeline-column::before {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 0;
  left: 5px;
  width: 2px;
  background: #ffab00; /* Using theme yellow */
}

.timeline-step {
  position: relative;
  margin-bottom: 30px;
}

.timeline-marker {
  position: absolute;
  left: -32.5px;
  top: 25px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  border: 4px solid #ffab00;
  z-index: 2;
}

.timeline-card {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 6px solid #ffab00;
  padding: 25px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.timeline-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(255, 216, 19, 0.15); /* Yellow tint */
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--bg-slate);
}

.timeline-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .process-timeline-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
}

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

@media (max-width: 992px) {
  .testimonial-layout {
    grid-template-columns: 1fr;
  }
}

/* Slider */
.browser-mockup {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
}

.browser-chrome {
  background: #e2e2e2;
  padding: 12px 15px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f56;
}

.dot-yellow {
  background: #ffbd2e;
}

.dot-green {
  background: #27c93f;
}

.slider-container {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 500px;
  background: var(--bg-white);
}

.slider-wrapper {
  display: flex;
  align-items: flex-start;
  transition: transform 0.5s ease-in-out;
}

.slider-slide {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
}

.slider-slide img {
  width: 100%;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.slider-slide img:hover {
  opacity: 0.9;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-white);
  color: var(--primary);
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 50%;
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.slider-btn:hover {
  background: #ffd813;
  color: black;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -60px;
}

.next-btn {
  right: -60px;
}

.slider-dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #555;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent-orange);
}

.case-study {
  padding: 100px 0;
  background: var(--bg-darker);
  color: var(--text-light);
}

.case-study-header {
  max-width: 800px;
  margin: 0 auto 50px;
}

.case-study-header h2 {
  font-size: 2.8rem;
  color: var(--bg-white);
  margin-bottom: 25px;
}

.case-desc {
  font-size: 1.15rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.case-metrics-centered {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.case-metrics-centered .metric span {
  font-size: 1rem;
  color: #ccc;
  display: block;
  margin-bottom: 5px;
}

.case-metrics-centered .metric strong {
  font-size: 2rem;
  color: var(--accent-orange);
}

.transformation-timeline {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
}

.timeline-step {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.step-header h3 {
  color: var(--bg-slate);
  margin: 0;
  font-size: 1.3rem;
}

.status-indicator {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.red-dot {
  background-color: #dc3545;
  box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
}

.green-dot {
  background-color: #28a745;
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.timeline-img-wrapper {
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-img-wrapper img {
  width: 100%;

  border-radius: var(--radius);
  border: 1px solid #eee;
  cursor: pointer;
  transition: opacity 0.3s;
}

.timeline-img-wrapper img:hover {
  opacity: 0.8;
}

.timeline-arrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
}

.arrow-icon {
  background: transparent;
  color: var(--accent-yellow);
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0;
  z-index: 2;
  position: relative;
}

.shadow-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item strong {
  display: block;
  color: var(--bg-slate);
  margin-bottom: 5px;
}

.info-item span {
  color: var(--text-muted);
}

.contact-form-wrapper {
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(114, 67, 242, 0.1);
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 15px;
}

/* Footer */
.site-footer {
  background: black;
  color: var(--text-light);
  padding: 80px 0 30px;
}

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

.footer-brand p {
  margin-top: 20px;
  opacity: 0.8;
  max-width: 300px;
}

.footer-links h4 {
  color: var(--bg-white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaaaaa;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.amazon-disclaimer {
  max-width: 600px;
  text-align: right;
}

/* Marquee Testimonials */
.marquee-testimonials {
  padding: 60px 0;
  overflow: hidden;
  background-color: var(--bg-light);
}

.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.marquee-row {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  /* Make full width */
  overflow: hidden;
  display: flex;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 20px;
  padding: 0 10px;
  white-space: nowrap;
  width: max-content;
}

.track-right {
  animation: marquee-right 40s linear infinite;
}

.track-left {
  animation: marquee-left 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 25px;
  width: 350px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  white-space: normal;
  flex-shrink: 0;
  transition: var(--transition);
}

.marquee-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.marquee-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.marquee-card .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  overflow: hidden;
}

.marquee-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee-card .user-info {
  display: flex;
  flex-direction: column;
}

.marquee-card .user-info strong {
  color: var(--text-main);
  font-size: 1.1rem;
  line-height: 1.2;
}

.marquee-card .user-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.marquee-card .stars {
  color: var(--accent-yellow);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.marquee-card p {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@keyframes marquee-right {
  0% {
    transform: translateX(calc(-50% - 10px));
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hide-on-mobile {
    display: none !important;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-inner,
  .case-study-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-image,
  .case-visual {
    order: -1;
  }

  .achievements-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .amazon-disclaimer {
    text-align: center;
  }

  .transformation-timeline {
    flex-direction: column;
  }

  .timeline-arrow {
    flex-direction: column;
    margin: 20px 0;
  }

  .arrow-line {
    width: 4px;
    height: 40px;
  }

  .arrow-icon {
    margin-left: 0;
    margin-top: -10px;
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 8px 0 !important;
  }

  .logo img {
    height: 45px !important;
  }

  .header-inner {
    gap: 10px !important;
  }

  .header-badges {
    gap: 10px !important;
  }

  .header-actions-wrapper {
    align-items: center !important;
  }

  .header-actions {
    gap: 8px !important;
  }

  .header-actions .btn {
    display: flex !important;
    padding: 8px 12px !important;
    font-size: 0.85rem !important;
  }

  .header-actions .btn i {
    font-size: 1.1rem !important;
    margin-right: 4px !important;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch !important;
    gap: 15px !important;
  }

  .btn-large {
    padding: 12px 24px !important;
    font-size: 1rem !important;
    text-align: center;
  }

  .hero-ctas .btn-text {
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .case-metrics-centered {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 15px !important;
  }

  .case-metrics-centered .metric strong {
    font-size: 1.8rem !important;
  }

  .timeline-card {
    padding: 15px !important;
    gap: 12px !important;
  }

  .timeline-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
  }

  .timeline-step {
    padding: 15px !important;
  }

  .arrow-icon {
    font-size: 2.5rem !important;
  }

  .hero-form-box,
  .contact-form-wrapper {
    padding: 25px 20px !important;
  }

  .slider-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 1rem !important;
  }

  .prev-btn {
    left: 10px !important;
  }

  .next-btn {
    right: 10px !important;
  }

  .testimonials {
    padding: 40px 0 !important;
  }

  .testimonial-content {
    margin-bottom: 20px !important;
  }

  .testimonial-content h2 {
    font-size: 1.8rem !important;
    margin-bottom: 10px !important;
  }

  .testimonial-content p {
    font-size: 1rem !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
  }

  .testimonial-content ul {
    margin-bottom: 15px !important;
    gap: 8px !important;
  }

  .testimonial-content li {
    font-size: 0.95rem !important;
  }

  .btn-whatsapp {
    padding: 8px 10px !important;
    gap: 0 !important;
  }

  .btn-whatsapp .wa-text {
    display: none !important;
  }

  .btn-whatsapp i {
    margin: 0 !important;
  }

  .hero-spn-featured {
    padding: 10px 15px !important;
    max-width: 100% !important;
    gap: 10px !important;
    display: flex !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content !important;
  }

  .hero-spn-featured .spn-logo-box {
    width: 110px !important;
  }

  .stat-number {
    font-size: 1.65rem !important;
  }

  .stat-card p {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
  }

  .achievements-grid {
    gap: 12px !important;
  }

  .reviews-container {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }

  .reviews-carousel-wrapper {
    padding-bottom: 55px !important;
  }

  .reviews-carousel-wrapper .slider-btn {
    top: auto !important;
    bottom: 0px !important;
    transform: none !important;
  }

  .reviews-carousel-wrapper .prev-btn {
    left: calc(50% - 45px) !important;
  }

  .reviews-carousel-wrapper .next-btn {
    right: calc(50% - 45px) !important;
  }

  .image-modal {
    overflow-x: auto !important;
  }

  .image-modal .modal-content {
    width: auto !important;
    min-width: 600px !important;
    max-width: 200% !important;
    margin: 40px auto !important;
  }
}

@media (max-width: 480px) {
  .hero-spn-featured {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 15px !important;
  }

  .hero-spn-featured .spn-logo-box {
    width: 130px !important;
    margin-bottom: 8px !important;
  }

  .hero-spn-featured .spn-text {
    text-align: center !important;
  }
}

/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.96);
  overflow-y: auto;
}

/* Fullscreen Readable Image */
.image-modal .modal-content {
  display: block;
  width: 90%;
  max-width: 1200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.6);
  margin: 60px auto;
}

/* Close Button */
.close-modal {
  position: fixed;
  top: 15px;
  right: 25px;

  color: white;
  font-size: 50px;
  font-weight: bold;

  cursor: pointer;
  z-index: 100000;

  transition: 0.3s;
}

.close-modal:hover {
  color: #ffcc00;
}

#reviewsCarousel::-webkit-scrollbar {
  display: none;
}

.review-carousel-card {
  flex: 0 0 calc(50% - 12.5px);
  scroll-snap-align: start;
  min-width: 350px;
  max-width: none;
}

@media (max-width: 768px) {
  .review-carousel-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* Form Feedback & Success Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.submission-success {
  animation: fadeIn 0.5s ease-out forwards;
}

.submission-error {
  animation: shake 0.3s ease-in-out;
}
