/* =========================================================
   GrowVision Media — Custom Styles
   Premium dark creative-agency aesthetic on top of Bootstrap 5
   ========================================================= */

:root {
  --bg-void: #06050c;
  --bg-dark: #0b0a16;
  --bg-dark-2: #121026;
  --bg-card: #14132a;
  --bg-card-hover: #1b1938;
  --border-soft: rgba(255, 255, 255, 0.08);
  --text-main: #f5f4fb;
  --text-muted: #a3a0bf;
  --text-faint: #726f95;
  --accent-purple: #8b5cf6;
  --accent-purple-2: #a855f7;
  --accent-pink: #ec4899;
  --accent-blue: #6366f1;
  --gradient-main: linear-gradient(135deg, #8b5cf6 0%, #d946ef 55%, #ec4899 100%);
  --gradient-soft: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(236, 72, 153, 0.12));
  --shadow-glow: 0 20px 60px -20px rgba(139, 92, 246, 0.45);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-heading: 'Plus Jakarta Sans', 'Manrope', sans-serif;
  --font-body: 'Manrope', 'Plus Jakarta Sans', sans-serif;
}

* {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 90px;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-void);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.65;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  color: var(--text-muted);
}

.text-accent {
  color: var(--accent-purple-2);
}

.text-accent-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-py {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 767.98px) {
  .section-py { padding: 70px 0; }
}

@media (max-width: 575.98px) {
  .section-py { padding: 60px 0; }
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e9d5ff;
  background: var(--gradient-soft);
  border: 1px solid rgba(168, 85, 247, 0.35);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
}

@media (max-width: 767.98px) {
  .section-head {
    margin: 0 auto 44px;
    padding: 0 20px;
  }
  
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 14px;
    line-height: 1.25;
  }
  
  .section-sub {
    font-size: 0.98rem;
    line-height: 1.6;
  }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 28px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-gradient {
  background: var(--gradient-main);
  border: none;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(217, 70, 239, 0.55);
}

.btn-gradient:hover,
.btn-gradient:focus {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -8px rgba(217, 70, 239, 0.7);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25d366;
  border: none;
  color: #06301b;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: #22c15e;
  color: #06301b;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -8px rgba(37, 211, 102, 0.65);
}

@media (max-width: 575.98px) {
  .btn {
    padding: 11px 24px;
    font-size: 0.92rem;
    white-space: normal;
  }
  
  .btn-lg {
    padding: 13px 26px;
    font-size: 0.95rem;
  }
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-nav {
  padding: 18px 0;
  background: rgba(6, 5, 12, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
  z-index: 1050;
}

.site-nav.scrolled {
  padding: 12px 0;
  background: rgba(8, 7, 16, 0.75);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.6);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 8px 20px -6px rgba(168, 85, 247, 0.6);
}

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
}

.hamburger-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

.navbar-toggler {
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 8px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(10, 9, 20, 0.98);
    border-radius: var(--radius-md);
    margin-top: 14px;
    padding: 18px;
    border: 1px solid var(--border-soft);
    max-width: 100%;
  }
  .navbar-nav {
    gap: 6px;
  }
  .nav-item .btn {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }
  .site-nav {
    overflow-x: hidden;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  position: relative;
  padding: 170px 0 110px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(139, 92, 246, 0.28), transparent 60%), var(--bg-void);
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(139, 92, 246, 0.18), transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(236, 72, 153, 0.14), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 560px;
}

.hero-trust {
  font-size: 0.9rem;
}

.trust-point {
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-point i {
  color: var(--accent-purple-2);
  font-size: 1.05rem;
}

@media (max-width: 575.98px) {
  .hero-trust {
    justify-content: center;
  }
}

.hero-video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--border-soft);
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: inherit;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.video-thumb:hover img {
  transform: scale(1.06);
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(6, 5, 12, 0.55) 100%);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(217, 70, 239, 0.5);
  animation: pulseRing 2.4s infinite;
  transition: transform 0.3s ease;
}

.video-thumb:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn-sm {
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(217, 70, 239, 0.45); }
  70% { box-shadow: 0 0 0 18px rgba(217, 70, 239, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 70, 239, 0); }
}

.video-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
}

.video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
}

.video-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.video-progress span {
  display: block;
  width: 32%;
  height: 100%;
  background: var(--gradient-main);
}

@media (max-width: 575.98px) {
  .hero-video-card {
    margin-top: 20px;
  }
  
  .video-badge {
    top: 10px;
    left: 10px;
    font-size: 0.7rem;
    padding: 4px 10px;
  }
  
  .video-duration {
    bottom: 10px;
    right: 10px;
    font-size: 0.74rem;
    padding: 3px 8px;
  }
  
  .play-btn {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }
  
  .play-btn-sm {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  animation: bounceDown 2s infinite;
  z-index: 2;
}

@keyframes bounceDown {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 140px 0 90px;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 130px 0 80px;
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  
  .hero-sub {
    margin: 0 auto;
  }
  
  .hero-section .d-flex.flex-wrap {
    justify-content: center;
  }
  
  .scroll-indicator {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

/* =========================================================
   SERVICES
   ========================================================= */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.4);
  background: var(--bg-card-hover);
  box-shadow: 0 24px 50px -20px rgba(139, 92, 246, 0.35);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--gradient-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  box-shadow: 0 10px 24px -8px rgba(168, 85, 247, 0.55);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.learn-more {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-purple-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}

.learn-more:hover {
  gap: 12px;
  color: #fff;
}

@media (max-width: 767.98px) {
  .service-card {
    padding: 32px 26px;
  }
  
  .service-card h3 {
    font-size: 1.15rem;
  }
  
  .service-card p {
    font-size: 0.92rem;
  }
}

/* =========================================================
   GROWTH / STATS
   ========================================================= */
.growth-section {
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.05), transparent);
}

.growth-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.growth-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.98rem;
}

.growth-list li i {
  color: var(--accent-purple-2);
  font-size: 1.15rem;
}

@media (max-width: 575.98px) {
  .growth-list { 
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .growth-list li {
    font-size: 0.95rem;
  }
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.4);
}

.stat-icon {
  font-size: 1.4rem;
  color: var(--accent-purple-2);
  margin-bottom: 10px;
  display: block;
}

.stat-card h3 {
  font-size: 2.1rem;
  margin-bottom: 6px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card p {
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.stat-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 10px;
  border-radius: 50px;
}

@media (max-width: 767.98px) {
  .stat-card {
    padding: 22px 16px;
  }
  
  .stat-card h3 {
    font-size: 1.9rem;
  }
  
  .stat-card p {
    font-size: 0.8rem;
  }
}

.stats-disclaimer {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-top: 18px;
  text-align: center;
}

@media (max-width: 767.98px) {
  .stats-disclaimer {
    padding: 0 16px;
    margin-top: 24px;
  }
}

/* =========================================================
   PROCESS / HOW IT WORKS
   ========================================================= */
.process-timeline {
  position: relative;
}

.process-line {
  display: none;
}

@media (min-width: 992px) {
  .process-line {
    display: block;
    position: absolute;
    top: 66px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.4), transparent);
    z-index: 0;
  }
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.process-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-purple-2);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--bg-void);
}

.process-step:hover .process-icon {
  background: var(--gradient-main);
  transform: scale(1.08);
  transition: all 0.3s ease;
}

.process-step h4 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  max-width: 240px;
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  .process-step {
    padding: 0 20px;
  }
  
  .process-step h4 {
    font-size: 1rem;
  }
  
  .process-step p {
    font-size: 0.88rem;
  }
}

/* =========================================================
   PORTFOLIO / OUR WORK
   ========================================================= */
.work-section {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(217, 70, 239, 0.08), transparent 60%);
}

.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  transition: all 0.3s ease;
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 20px 40px -20px rgba(139, 92, 246, 0.4);
}

.portfolio-card .video-thumb {
  aspect-ratio: 4 / 5;
  border-radius: 0;
}

.portfolio-info {
  padding: 16px 18px 20px;
}

.portfolio-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-purple-2);
}

.portfolio-info h5 {
  font-size: 1rem;
  margin: 6px 0 0;
  color: var(--text-main);
}

@media (max-width: 767.98px) {
  .portfolio-info {
    padding: 14px 16px 18px;
  }
  
  .portfolio-cat {
    font-size: 0.7rem;
  }
  
  .portfolio-info h5 {
    font-size: 0.94rem;
  }
}

/* =========================================================
   SOCIAL MEDIA SECTION
   ========================================================= */
.social-section {
  background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.05), transparent);
}

.platform-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.platform-pill i {
  font-size: 1.2rem;
  color: var(--accent-purple-2);
}

.platform-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.45);
  background: var(--bg-card-hover);
}

@media (max-width: 767.98px) {
  .platform-pill {
    padding: 10px 20px;
    font-size: 0.88rem;
  }
  
  .platform-pill i {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .platform-pill {
    padding: 9px 18px;
    font-size: 0.85rem;
    gap: 8px;
  }
  
  .platform-pill i {
    font-size: 1rem;
  }
}

.content-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 26px 16px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.content-type-card i {
  font-size: 1.6rem;
  color: var(--accent-purple-2);
  display: block;
  margin-bottom: 12px;
}

.content-type-card span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
}

.content-type-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.4);
  background: var(--bg-card-hover);
}

@media (max-width: 767.98px) {
  .content-type-card {
    padding: 20px 12px;
  }
  
  .content-type-card i {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .content-type-card span {
    font-size: 0.85rem;
  }
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.4);
  background: var(--bg-card-hover);
}

.why-card i {
  font-size: 1.9rem;
  color: var(--accent-purple-2);
  margin-bottom: 16px;
  display: block;
}

.why-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .why-card {
    padding: 30px 24px;
  }
  
  .why-card i {
    font-size: 1.7rem;
    margin-bottom: 14px;
  }
  
  .why-card h4 {
    font-size: 1.08rem;
  }
  
  .why-card p {
    font-size: 0.88rem;
  }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.about-badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 9, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge-float i {
  font-size: 1.6rem;
  color: var(--accent-purple-2);
}

.about-badge-float strong {
  display: block;
  font-size: 1.2rem;
}

.about-badge-float span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 575.98px) {
  .about-badge-float {
    bottom: 14px;
    left: 14px;
    padding: 10px 14px;
  }
  
  .about-badge-float i {
    font-size: 1.3rem;
  }
  
  .about-badge-float strong {
    font-size: 1rem;
  }
  
  .about-badge-float span {
    font-size: 0.7rem;
  }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section {
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(139, 92, 246, 0.08), transparent 60%);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 2.4rem;
  color: var(--accent-purple-2);
  opacity: 0.6;
}

.testimonial-card p {
  font-size: 1.15rem;
  color: var(--text-main);
  margin: 18px 0 28px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168, 85, 247, 0.4);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: 2px solid rgba(168, 85, 247, 0.4);
  flex-shrink: 0;
}

.testimonial-author div {
  text-align: left;
}

.testimonial-author strong {
  display: block;
  font-size: 0.98rem;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 575.98px) {
  .testimonial-card {
    padding: 36px 28px;
  }
  
  .testimonial-card p {
    font-size: 1.05rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-author div {
    text-align: center;
  }
  
  .stars {
    width: 100%;
    text-align: center;
  }
}

.stars {
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.sample-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  padding: 4px 10px;
  border-radius: 50px;
}

.carousel-control-prev,
.carousel-control-next {
  position: static;
  width: auto;
  opacity: 1;
}

.carousel-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  color: #fff;
  transition: all 0.3s ease;
}

.carousel-nav-btn:hover {
  background: var(--gradient-main);
  border-color: transparent;
}

.testimonials-section .carousel-inner {
  margin-bottom: 24px;
}

.testimonial-indicators {
  position: static;
  margin: 0;
}

.testimonial-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-faint);
  opacity: 1;
  border: none;
}

.testimonial-indicators .active {
  background: var(--accent-purple-2);
  width: 22px;
  border-radius: 50px;
}

.testimonial-controls-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* =========================================================
   PRICING
   ========================================================= */
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  position: relative;
  transition: all 0.35s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.4);
}

.price-card-popular {
  background: var(--bg-card-hover);
  border: 1px solid rgba(168, 85, 247, 0.5);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}

@media (max-width: 991.98px) {
  .price-card-popular { transform: none; }
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.4rem;
  margin: 10px 0 6px;
}

.price-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 26px;
}

.price-value span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-faint);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.94rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-features li i {
  color: var(--accent-purple-2);
}

@media (max-width: 767.98px) {
  .price-card {
    padding: 36px 28px;
  }
  
  .price-card h3 {
    font-size: 1.3rem;
  }
  
  .price-value {
    font-size: 2rem;
    margin-bottom: 22px;
  }
  
  .price-features li {
    font-size: 0.9rem;
    padding: 8px 0;
  }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-accordion .accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-button {
  background: transparent;
  color: var(--text-main);
  font-weight: 700;
  font-size: 1rem;
  padding: 20px 24px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(168, 85, 247, 0.08);
  color: #fff;
}

.accordion-button::after {
  filter: invert(1) brightness(1.6);
}

.accordion-body {
  padding: 4px 24px 22px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

@media (max-width: 767.98px) {
  .accordion-button {
    font-size: 0.94rem;
    padding: 18px 20px;
  }
  
  .accordion-body {
    padding: 4px 20px 20px;
    font-size: 0.9rem;
  }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section {
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(139, 92, 246, 0.1), transparent 60%);
}

.contact-info-card {
  background: var(--gradient-soft);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.contact-info-card h3 {
  margin-bottom: 10px;
}

.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-main);
  transition: color 0.25s ease;
}

@media (max-width: 575.98px) {
  .contact-info-card {
    padding: 36px 24px;
  }
  
  .contact-info-grid {
    flex-direction: column;
    gap: 8px;
  }
  
  .contact-info-item {
    padding: 10px 0;
    font-size: 0.9rem;
    justify-content: center;
  }
}

.contact-info-item:hover {
  color: var(--accent-purple-2);
}

.contact-info-item i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple-2);
  flex-shrink: 0;
}

.contact-info-item i.icon-whatsapp {
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
}

.contact-divider {
  border-color: var(--border-soft);
  margin: 20px 0;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--gradient-main);
  border-color: transparent;
  transform: translateY(-4px);
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta-section {
  position: relative;
  padding: 110px 0;
  background: url('../assets/images/final-cta-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 5, 12, 0.92), rgba(30, 10, 40, 0.85));
}

.final-cta-section h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.25;
}

@media (max-width: 767.98px) {
  .final-cta-section {
    padding: 90px 0;
  }
  
  .final-cta-section h2 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    margin-bottom: 28px;
    padding: 0 20px;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--bg-dark);
  padding: 70px 0 30px;
  border-top: 1px solid var(--border-soft);
}

.footer-tag {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 0.94rem;
}

.site-footer h6 {
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.94rem;
  display: flex;
  align-items: center;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--accent-purple-2);
}

.footer-divider {
  border-color: var(--border-soft);
  margin: 40px 0 24px;
}

.footer-bottom p {
  font-size: 0.88rem;
  color: var(--text-faint);
  margin: 0;
}

@media (max-width: 767.98px) {
  .site-footer {
    padding: 60px 0 30px;
  }
  
  .footer-tag {
    font-size: 0.9rem;
  }
  
  .site-footer h6 {
    font-size: 0.82rem;
    margin-bottom: 16px;
  }
  
  .footer-links li {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }
  
  .footer-bottom p {
    font-size: 0.84rem;
  }
}

/* =========================================================
   GLIGHTBOX OVERRIDES
   ========================================================= */
.glightbox-clean .gslide-media {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gscrollbar-fixer { margin-right: 0 !important; }

/* =========================================================
   MISC
   ========================================================= */
::selection {
  background: var(--accent-purple);
  color: #fff;
}

.aos-init {
  will-change: transform, opacity;
}

/* Prevent temporary scrollbar on mobile */
@media (max-width: 991.98px) {
  html,
  body {
    overflow-x: hidden !important;
    width: 100%;
  }
  
  #root,
  .main-wrapper,
  main {
    overflow-x: hidden;
    width: 100%;
  }
  
  /* Prevent transform from causing overflow */
  [data-aos] {
    overflow: hidden;
  }
  
  /* Disable hover transforms on mobile to prevent scroll issues */
  .service-card:hover,
  .portfolio-card:hover,
  .why-card:hover,
  .stat-card:hover,
  .price-card:hover,
  .content-type-card:hover,
  .platform-pill:hover {
    transform: none !important;
  }
  
  /* Keep container widths constrained */
  .container-fluid {
    overflow-x: hidden;
  }
}

/* =========================================================
   RESPONSIVE CONTAINER ADJUSTMENTS
   ========================================================= */
@media (max-width: 767.98px) and (min-width: 576px) {
  .section-head {
    padding: 0 16px;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 991.98px) {
  /* Center content on tablet/mobile */
  .growth-section .col-lg-6,
  .about-section .col-lg-6 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .about-section .col-lg-6:last-child {
    margin-bottom: 0;
  }
  
  .section-badge {
    display: inline-block;
  }
}


@media (max-width: 575.98px) {
  .text-center {
    text-align: center !important;
  }
  
  .d-flex.flex-wrap.gap-3 {
    gap: 0.75rem !important;
  }
  
  .d-flex.flex-wrap.gap-4 {
    gap: 0.875rem !important;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px !important;
  }
  
  /* Prevent horizontal scroll */
  * {
    max-width: 100%;
  }
  
  section,
  .section-py,
  header {
    overflow-x: hidden !important;
    width: 100%;
  }
  
  .container {
    max-width: 100% !important;
    overflow-x: hidden;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Fix content alignment */
  .hero-section {
    text-align: center;
  }
  
  .hero-section .col-lg-6 {
    text-align: center;
  }
  
  .growth-section .col-lg-6,
  .about-section .col-lg-6 {
    text-align: center;
  }
  
  .section-badge {
    display: inline-block;
  }
  
  /* Ensure proper button alignment */
  .d-flex.flex-wrap {
    justify-content: center;
  }
  
  /* Additional fixes for content alignment */
  .hero-sub,
  .section-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .growth-list {
    text-align: left;
    max-width: 100%;
  }
  
  /* Prevent any element from causing horizontal scroll */
  .navbar,
  .site-nav,
  footer,
  .site-footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
}
