/* ============================================================
   INSIGHTYMEDIA — Digital Marketing Agency
   Complete Production Stylesheet
   ============================================================ */

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

/* ============================================================
   1. DESIGN TOKENS (Custom Properties)
   ============================================================ */
:root {
  /* ---- Colors ---- */
  --primary: #4F46E5;
  --primary-light: #818CF8;
  --primary-dark: #3730A3;
  --primary-glow: rgba(79, 70, 229, 0.3);
  --secondary: #06B6D4;
  --secondary-light: #67E8F9;
  --accent: #F59E0B;
  --bg-dark: #0F172A;
  --bg-surface: #1E293B;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-light: #FFFFFF;
  --text-body: #64748B;
  --text-dark: #1E293B;
  --border: rgba(255, 255, 255, 0.1);
  --border-light: rgba(0, 0, 0, 0.08);
  --success: #10B981;
  --gradient-primary: linear-gradient(135deg, #4F46E5, #06B6D4);
  --gradient-dark: linear-gradient(135deg, #0F172A, #1E293B);
  --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1a1145 40%, #1E293B 100%);

  /* ---- Typography ---- */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Sora', sans-serif;

  /* ---- Spacing Scale ---- */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  --space-5xl: 7rem;

  /* ---- Shadows ---- */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-primary: 0 8px 30px rgba(79, 70, 229, 0.35);
  --shadow-primary-lg: 0 12px 40px rgba(79, 70, 229, 0.45);

  /* ---- Transitions ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.3s var(--ease-out);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

img,
picture,
video,
svg {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-dark);
}

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

/* ============================================================
   3. HEADER / NAVBAR
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

/* Logo */
.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--primary-light);
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-base);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ---- Dropdown Submenu ---- */
.nav-links li.has-dropdown {
  position: relative;
}

.nav-links li.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links li.has-dropdown > a .dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav-links li.has-dropdown:hover > a .dropdown-arrow {
  transform: rotate(180deg);
}

/* Prevent underline on dropdown trigger */
.nav-links li.has-dropdown > a::after {
  display: none;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 0.75rem;
  min-width: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 999;
}

/* Small arrow pointer */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: rgba(15, 23, 42, 0.98);
  border-left: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
  rotate: 45deg;
}

/* Transparent bridge to prevent menu from closing when mouse passes the 18px gap */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background: transparent;
}

.nav-links li.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  color: rgba(148, 163, 184, 0.9) !important;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown a::after { display: none !important; }

.nav-dropdown a:hover {
  background: rgba(79, 70, 229, 0.15);
  color: var(--primary-light) !important;
}

.nav-dropdown a .dd-icon {
  width: 30px;
  height: 30px;
  border-radius: 0.5rem;
  background: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--primary-light);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.nav-dropdown a:hover .dd-icon {
  background: rgba(79, 70, 229, 0.25);
}

.nav-dropdown .dd-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0.4rem 0;
}

.nav-dropdown a.dd-all {
  background: rgba(79,70,229,0.08);
  color: var(--primary-light) !important;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.nav-dropdown a.dd-all:hover {
  background: rgba(79,70,229,0.2);
}

/* ---- Mobile Submenu ---- */
.nav-mobile-links li.has-mobile-sub > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-sub-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.has-mobile-sub.open .mobile-sub-toggle {
  transform: rotate(180deg);
  background: rgba(79,70,229,0.3);
}

.mobile-sub-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0 0.25rem 1.25rem;
  border-left: 2px solid rgba(79,70,229,0.3);
  margin-top: 0.5rem;
}

.has-mobile-sub.open .mobile-sub-menu {
  display: flex;
}

.mobile-sub-menu a {
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: rgba(148,163,184,0.8) !important;
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
}

.mobile-sub-menu a:hover {
  color: var(--primary-light) !important;
  transform: translateX(4px) !important;
}
.nav-cta {
  background: var(--gradient-primary);
  color: var(--text-light) !important;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-primary);
}

.nav-cta::after {
  display: none !important;
}

@media (max-width: 768px) {
  .nav-cta {
    font-size: 0.8rem !important;
    padding: 0.5rem 1rem !important;
  }
}

@media (max-width: 480px) {
  .header .logo {
    font-size: 1.15rem !important;
  }
  .nav-cta {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.8rem !important;
  }
  .hamburger {
    width: 28px !important;
    height: 28px !important;
    gap: 4px !important;
  }
  .hamburger span {
    height: 2px !important;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  z-index: 1050;
  box-shadow: var(--shadow-xl);
  transition: right 0.4s var(--ease-out);
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  width: 100%;
}

.nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: background var(--transition-base), color var(--transition-base);
}

.nav-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-light);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.nav-mobile-links li {
  width: 100%;
}

.nav-mobile-links a {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
  transition: color var(--transition-base), transform var(--transition-base);
}

.nav-mobile-links a:hover {
  color: var(--primary-light);
  transform: translateX(8px);
}

.nav-mobile-cta {
  background: var(--gradient-primary);
  color: var(--text-light) !important;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-primary);
}

.nav-mobile-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  width: 100%;
}

.nav-mobile-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.nav-mobile-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.1rem;
  transition: background var(--transition-base), transform var(--transition-base), color var(--transition-base);
}

.nav-mobile-socials a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
  color: var(--text-light);
}

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

/* ============================================================
   4. HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 5rem;
}

/* Hero Background Decorations */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

/* Hero Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  background: rgba(79, 70, 229, 0.08);
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-badge i,
.hero-badge svg {
  font-size: 0.75rem;
}

/* Hero Heading */
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-light);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  opacity: 0.8;
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-primary);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: none;
  cursor: pointer;
}

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

.btn-ghost {
  background: transparent;
  color: var(--text-light);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--text-light);
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
  cursor: pointer;
}

.btn-ghost:hover {
  background: var(--text-light);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: var(--text-body);
  font-size: 0.875rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Hero Floating Cards */
.hero-floating-card {
  position: absolute;
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.hero-floating-card:nth-child(1) {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero-floating-card:nth-child(2) {
  bottom: 15%;
  left: -8%;
  animation-delay: 1s;
}

.hero-floating-card:nth-child(3) {
  bottom: 5%;
  right: -5%;
  animation-delay: 0.5s;
}

.hero-floating-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-floating-card .card-info h4 {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.hero-floating-card .card-info p {
  color: var(--text-body);
  font-size: 0.75rem;
}

/* ============================================================
   5. CLIENT LOGOS
   ============================================================ */
.clients {
  padding: 4rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.clients-label {
  text-align: center;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.logo-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.logo-track img {
  height: 40px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity var(--transition-base), filter var(--transition-base);
  flex-shrink: 0;
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============================================================
   6. SERVICES
   ============================================================ */
.services {
  padding: var(--space-5xl) 0;
  background: var(--bg-light);
}

/* Shared Section Header */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

.section-label {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-body);
  font-size: 1.2rem;
  line-height: 1.7;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  background: rgba(79, 70, 229, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card .service-link {
  margin-top: auto;
  color: var(--primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-base), transform var(--transition-base), color var(--transition-base);
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

.service-link:hover {
  color: var(--primary-dark);
}

.service-link i,
.service-link svg {
  transition: transform var(--transition-base);
}

.service-link:hover i,
.service-link:hover svg {
  transform: translateX(4px);
}


/* ============================================================
   6b. SHOWCASE SERVICE CARDS (.svc-card)
   ============================================================ */
.svc-card {
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  display: block;
  text-decoration: none;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  box-shadow: var(--shadow-md);
}

.svc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.45s ease;
  filter: brightness(0.75);
}

.svc-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.55);
}

.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 30%,
    rgba(15, 23, 42, 0.75) 65%,
    rgba(15, 23, 42, 0.97) 100%
  );
  transition: opacity 0.4s ease;
}

.svc-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
  text-align: left;
}

.svc-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  background: rgba(79, 70, 229, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(79, 70, 229, 0.35);
  width: fit-content;
}

.svc-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.svc-card-body p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.svc-card:hover .svc-card-body p {
  max-height: 80px;
  opacity: 1;
}

.svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.svc-card:hover .svc-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   7. WHY CHOOSE US
   ============================================================ */
.why-us {
  padding: var(--space-5xl) 0;
  background: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-card {
  padding: 1.75rem;
  background: var(--bg-light);
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.why-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.why-card h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Why Visual */
.why-visual {
  position: relative;
}

.why-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.why-stats-float {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  gap: 2rem;
  border: 1px solid var(--border);
}

.why-stats-float .float-stat h4 {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.why-stats-float .float-stat p {
  color: var(--text-body);
  font-size: 0.8rem;
}

/* ============================================================
   8. PORTFOLIO
   ============================================================ */
.portfolio {
  padding: var(--space-5xl) 0;
  background: var(--bg-light);
}

.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.portfolio-tab {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-body);
  transition: all var(--transition-base);
}

.portfolio-tab:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.portfolio-tab.active {
  background: var(--gradient-primary);
  color: var(--text-light);
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

/* Portfolio Overlay */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay .tag {
  background: rgba(79, 70, 229, 0.25);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 50px;
  padding: 0.3rem 1rem;
  width: fit-content;
  margin-bottom: 0.75rem;
}

.portfolio-overlay h3 {
  color: var(--text-light);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.portfolio-overlay p {
  color: var(--text-light);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* ============================================================
   9. TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--space-5xl) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials .section-label {
  color: var(--secondary);
}

.testimonials .section-title {
  color: var(--text-light);
}

.testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

/* ─── NEW: Testimonial 3-Card Horizontal Slider ─── */

/* Wrapper: tombol prev | viewport | tombol next */
.testi-slider-wrap {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 3rem;
}

/* Viewport — hanya area ini yang terlihat */
.testi-viewport {
  flex: 1;
  overflow: hidden;
}

/* Track — semua kartu berjajar ke kanan */
.testi-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Kartu Testimoni */
.testi-card {
  flex-shrink: 0;
  flex-grow: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 1.5rem 1.5rem 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 70, 229, 0.4);
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.2);
}

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

/* Bagian atas kartu: foto + bintang */
.testi-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Foto avatar */
.testi-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(79, 70, 229, 0.5);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

/* Bintang rating */
.testi-stars {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* Teks kutipan */
.testi-quote {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  position: relative;
  padding-left: 1.25rem;
}

.testi-quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -0.3em;
  font-size: 2.5rem;
  color: var(--primary-light);
  font-style: normal;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.7;
}

/* Nama & jabatan di bawah */
.testi-author {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  margin-top: auto;
}

.testi-name {
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 0.2rem;
}

.testi-role {
  color: var(--primary-light);
  font-size: 0.82rem;
  margin: 0;
  font-weight: 500;
}

/* Tombol navigasi prev / next */
.testi-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  min-width: 46px;
  align-self: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.testi-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.testi-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  box-shadow: none;
}

/* Dot indicators */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.testi-dot.active {
  background: var(--primary-light);
  width: 30px;
  border-radius: 5px;
}

.testi-dot:hover {
  background: rgba(255, 255, 255, 0.45);
}

/* Responsive */
@media (max-width: 1024px) {
  .testi-card { /* 2 visible on tablet — handled by JS */ }
}

@media (max-width: 600px) {
  .testi-slider-wrap { gap: 10px; }
  .testi-card { padding: 1.5rem; }
  .testi-avatar { width: 56px; height: 56px; }
  .testi-btn { width: 38px; height: 38px; min-width: 38px; font-size: 0.85rem; }
}

/* ============================================================
   10. CTA SECTION
   ============================================================ */
.cta-section {
  padding: var(--space-5xl) 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -8%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section > .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--text-light);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-white {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: none;
  cursor: pointer;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   11. FAQ
   ============================================================ */
.faq {
  padding: var(--space-5xl) 0;
  background: var(--bg-light);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item.active {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  transition: color var(--transition-base);
  gap: 1rem;
  user-select: none;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i,
.faq-question svg {
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--text-body);
}

.faq-item.active .faq-question i,
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  color: var(--text-body);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================================
   12. FOOTER
   ============================================================ */
.footer {
  padding: 5rem 0 0;
  background: var(--bg-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

/* Footer Brand */
.footer-brand .logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-brand .logo span {
  color: var(--primary-light);
}

.footer-brand p {
  color: rgba(148, 163, 184, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Footer Socials */
.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(148, 163, 184, 0.8);
  font-size: 1rem;
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.footer-socials a:hover {
  background: var(--gradient-primary);
  color: var(--text-light);
  transform: translateY(-3px);
}

/* Footer Columns */
.footer-col h4 {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

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

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(148, 163, 184, 0.8);
  font-size: 0.9rem;
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.footer-col a:hover {
  color: var(--primary-light);
  padding-left: 6px;
}

/* Footer Contact List */
.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact i,
.footer-contact svg {
  color: var(--primary-light);
  margin-top: 0.25rem;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.footer-contact span,
.footer-contact a {
  color: rgba(148, 163, 184, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact a:hover {
  color: var(--primary-light);
  padding-left: 0;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-body);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--text-body);
  font-size: 0.85rem;
  transition: color var(--transition-base);
}

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

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

/* ============================================================
   13. UTILITIES & ANIMATIONS
   ============================================================ */

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered Reveal Delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Keyframes */
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
  0%   { box-shadow: 0 0 0 0 var(--primary-glow); }
  70%  { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

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

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

/* Gradient Text Utility */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* ============================================================
   14. RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    max-width: 540px;
    margin: 0 auto;
  }

  .hero-floating-card:nth-child(1) {
    right: -4%;
  }

  .hero-floating-card:nth-child(2) {
    left: -4%;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-visual {
    order: -1;
    max-width: 540px;
    margin: 0 auto;
  }

  .why-content .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .why-features {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider-arrow.prev {
  left: 0;
}
}

/* ============================================================
   TEAM SLIDER (Global Styles)
   ============================================================ */
.team {
  padding: var(--space-5xl) 0;
  background: var(--bg-light);
}

/* Outer wrapper: flex baris, tombol di kiri-kanan viewport */
.team-slider-outer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Viewport: area yang terlihat, sisanya tersembunyi */
.team-viewport {
  flex: 1;
  overflow: hidden;
}

/* Track: flex row WAJIB satu baris, tidak boleh wrap */
.team-track {
  display: flex;
  flex-wrap: nowrap;          /* ← kunci: kartu tidak boleh turun ke bawah */
  flex-direction: row;        /* horizontal */
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Kartu: lebar diset oleh JS, jangan shrink/grow */
.team-card {
  flex: 0 0 auto;             /* JS akan set width secara eksplisit */
  min-width: 0;
  background: var(--bg-white);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-primary);
}

/* Gambar profil dengan rasio 4:5 */
.team-card-img {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Info di bawah gambar */
.team-card-info {
  padding: 1rem 1rem 1.25rem;
  text-align: center;
}

.team-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.team-card-info p {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
}

/* Tombol panah */
.team-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background 0.3s, color 0.3s, border-color 0.3s, opacity 0.3s;
}

.team-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.team-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ============================================================
   RESPONSIVE OVERRIDES — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .slider-arrow.next {
    right: 0;
  }

  .why-stats-float {
    right: 0;
    bottom: -20px;
  }

  .services,
  .why-us,
  .portfolio,
  .testimonials,
  .cta-section,
  .faq {
    padding: 5rem 0;
  }

  .team-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

/* ============================================================
   15. RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Header Mobile */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .header .container {
    height: 70px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .hero-stats .stat-item {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .hero-floating-card {
    display: none;
  }

  /* Grids Single Column */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Team Slider Mobile */
  .team-card {
    flex: 0 0 100%;
  }

  .team-nav-prev { left: 0; }
  .team-nav-next { right: 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  /* Section Sizing */
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .services,
  .why-us,
  .portfolio,
  .testimonials,
  .cta-section,
  .faq {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Service Cards */
  .service-card {
    padding: 2rem;
  }

  .service-card .service-link {
    opacity: 1;
    transform: translateY(0);
  }

  /* Testimonials */
  .testimonial-card {
    padding: 2rem 0.5rem;
  }

  .testimonial-card .quote {
    font-size: 1.05rem;
  }

  .slider-arrow {
    display: none;
  }

  /* FAQ */
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.25rem;
  }

  /* Footer Bottom */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* CTA Section */
  .cta-section h2 {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }

  .btn-primary,
  .btn-ghost,
  .btn-white {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }

  /* Portfolio Overlay always visible on touch */
  .portfolio-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
  }
}

/* ============================================================
   16. RESPONSIVE — Small Mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

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

  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero-stats .stat-item {
    flex: 1 1 100%;
    text-align: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .hero-stats .stat-item:last-child {
    border-bottom: none;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .why-card {
    padding: 1.25rem;
  }

  .portfolio-tabs {
    gap: 0.5rem;
  }

  .portfolio-tab {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .why-stats-float {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 1.5rem;
    justify-content: center;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .footer-brand p {
    font-size: 0.9rem;
  }
}

/* ============================================================
   17. SERVICE DETAIL PAGES
   ============================================================ */
.service-hero {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 150px 0 6rem;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.service-hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.service-hero > .container {
  position: relative;
  z-index: 1;
}

.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  background: rgba(79, 70, 229, 0.08);
}

.service-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-light);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.service-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.service-detail-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 4rem;
}

.service-main-content {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.service-intro {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-main-content h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--bg-light);
  padding-bottom: 0.5rem;
}

.service-main-content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Benefit List */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 500;
}

.benefit-list li i {
  color: var(--success);
  font-size: 1.3rem;
  margin-top: 0.15rem;
}

/* Workflow Timeline */
.workflow-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  margin: 2.5rem 0;
}

.workflow-timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--border-light);
}

.workflow-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.step-content {
  padding-top: 0.5rem;
}

.step-content h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Sticky Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.sidebar-menu li.active a,
.sidebar-menu li a:hover {
  background: var(--gradient-primary);
  color: var(--text-light);
  border-color: transparent;
}

.sidebar-cta-widget {
  background: var(--gradient-dark);
  color: var(--text-light);
  border: none;
}

.sidebar-cta-widget h4 {
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-cta-widget p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.sidebar-cta-widget .btn-primary {
  width: 100%;
  justify-content: center;
}

/* Pricing Grid */
.pricing-section {
  padding: 6rem 0;
  background: var(--bg-white);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 1.25rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.price-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.price-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-card .price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.price-card .price span {
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 400;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.price-features li i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.price-features li.disabled {
  color: var(--text-body);
  opacity: 0.5;
}

.price-features li.disabled i {
  color: var(--text-body);
}

.price-card .btn-primary,
.price-card .btn-ghost {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* Responsive adjustments for service pages */
@media (max-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .service-sidebar {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-main-content {
    padding: 2rem;
  }

  .price-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============================================================
   18. PRINT STYLES (optional but professional)
   ============================================================ */
@media print {
  .header,
  .hamburger,
  .nav-mobile,
  .cta-section,
  .hero-floating-card,
  .slider-arrow,
  .slider-dots {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    background: none !important;
    color: #000;
  }

  .hero h1,
  .hero-subtitle,
  .stat-item h3,
  .stat-item p {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
  }

  .section-title,
  .section-label,
  .section-subtitle {
    color: #000 !important;
  }
}

/* ============================================================
   18. RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .hamburger {
    display: flex;
  }
  .nav-desktop {
    display: none;
  }
}

/* ============================================================
   19. ACTIVITY GALLERY (Galeri Kegiatan)
   ============================================================ */
.activity-gallery {
  padding: 7rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  overflow: hidden;
}

/* Tabs Folder */
.folder-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--border-light);
  position: relative;
}

.folder-tabs {
  display: flex;
  gap: 12px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.folder-tabs::-webkit-scrollbar {
  display: none; /* Safari & Chrome */
}

.folder-tab {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-body);
  position: relative;
  border-radius: 8px 8px 0 0;
  transition: all 0.3s var(--ease-out);
  border: 1px solid transparent;
  border-bottom: none;
  margin-bottom: -2px;
}

.folder-tab:hover {
  color: var(--primary);
}

.folder-tab.active {
  color: var(--primary);
  background: var(--bg-light);
  border-color: var(--border-light);
  border-bottom: 2px solid var(--bg-light);
  z-index: 2;
}

.folder-tab .folder-icon {
  font-size: 1.25rem;
  transition: transform 0.3s;
  color: var(--text-body);
}

.folder-tab.active .folder-icon {
  color: var(--primary);
  transform: scale(1.1);
}

/* Content wrapper */
.gallery-contents {
  position: relative;
}

.gallery-folder-content {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.gallery-folder-content.active {
  display: block;
  opacity: 1;
}

/* Outer slider */
.gallery-slider-outer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gallery-viewport {
  flex: 1;
  overflow: hidden;
  padding: 10px 0;
}

.gallery-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Card */
.gallery-card {
  flex: 0 0 calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  background: var(--bg-white);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  cursor: pointer;
  border: 1px solid var(--border-light);
}

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

.gallery-img-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* Buttons */
.gallery-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease-out);
  z-index: 10;
}

.gallery-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}

.gallery-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  box-shadow: none;
  background: var(--bg-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-card {
    flex: 0 0 calc((100% - 24px) / 2);
    width: calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}

@media (max-width: 600px) {
  .gallery-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .folder-tab {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  .gallery-btn {
    width: 38px;
    height: 38px;
  }
}

/* ────────────────────────────────────────────────────────────
   19. PRICING EXPLORER & PROPOSAL FORM SECTION
   ──────────────────────────────────────────────────────────── */

.pricing-explorer-section {
  padding: 7rem 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.pricing-explorer-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  align-items: start;
}

/* Left Column: Navigation and Category Tabs */
.pe-left {
  position: sticky;
  top: 100px; /* Keeps tabs visible while scrolling cards */
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pe-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 0.75rem;
}

.pe-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pe-tab {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pe-tab-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.07);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.pe-tab:hover {
  border-color: var(--primary-light);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.pe-tab.active {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

.pe-tab.active .pe-tab-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.pe-left-cta {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.pe-left-cta p {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.pe-left-cta .btn-primary {
  width: 100%;
  justify-content: center;
}

/* Right Column: Pricing Cards */
.pe-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 400px;
}

.pe-horizontal-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.25rem;
  padding: 2.25rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.pe-horizontal-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-xl);
}

/* Left Card Part: Meta info */
.pe-card-meta {
  flex: 1.1;
  min-width: 170px;
}

.pe-card-meta h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pe-card-meta p {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-body);
}

/* Center Card Part: Feature List */
.pe-card-features {
  flex: 2;
  min-width: 230px;
}

.pe-card-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
}

.pe-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.35;
}

.pe-card-features li i {
  color: #22c55e;
  font-size: 0.95rem;
  margin-top: 0.15rem;
}

.pe-card-features li.disabled {
  color: var(--text-body);
  opacity: 0.45;
}

.pe-card-features li.disabled i {
  color: var(--text-body);
}

/* Right Card Part: Price & Call to Action */
.pe-card-action {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  border-left: 1px solid var(--border-light);
  padding-left: 1.5rem;
}

.pe-card-action .pe-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

.pe-card-action .pe-price span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-body);
  font-weight: 500;
  margin-top: 0.25rem;
}

.pe-card-action .btn-ghost,
.pe-card-action .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.88rem;
  border-radius: 50px;
}

/* Featured Card (Popular/Growth) Style */
.pe-horizontal-card.popular {
  background: linear-gradient(135deg, #100e2b 0%, #1e293b 100%);
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pe-horizontal-card.popular::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pe-horizontal-card.popular .pe-card-meta h4 {
  color: #fff;
}

.pe-horizontal-card.popular .pe-card-meta p {
  color: rgba(255, 255, 255, 0.65);
}

.pe-horizontal-card.popular .pe-card-features li {
  color: rgba(255, 255, 255, 0.9);
}

.pe-horizontal-card.popular .pe-card-features li i {
  color: #06b6d4; /* Cyan accent for checks */
}

.pe-horizontal-card.popular .pe-card-features li.disabled {
  color: rgba(255, 255, 255, 0.4);
}

.pe-horizontal-card.popular .pe-card-features li.disabled i {
  color: rgba(255, 255, 255, 0.4);
}

.pe-horizontal-card.popular .pe-card-action {
  border-left-color: rgba(255, 255, 255, 0.12);
}

.pe-horizontal-card.popular .pe-card-action .pe-price {
  color: #fff;
}

.pe-horizontal-card.popular .pe-card-action .pe-price span {
  color: rgba(255, 255, 255, 0.6);
}

.pe-horizontal-card.popular .pe-card-action .btn-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.pe-horizontal-card.popular .pe-card-action .btn-ghost:hover {
  background: #fff;
  border-color: #fff;
  color: #0f172a;
}

.pe-horizontal-card .popular-badge-card {
  position: absolute;
  top: 12px;
  right: 20px;
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

/* ────────────────────────────────────────────────────────────
   PROPOSAL FORM SECTION
   ──────────────────────────────────────────────────────────── */

.proposal-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
  border-top: 1px solid var(--border-light);
}

.proposal-inner {
  background: var(--bg-white);
  border-radius: 2rem;
  padding: 4.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xl);
}

.proposal-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.proposal-header .section-subtitle {
  margin-top: 0.75rem;
  line-height: 1.65;
}

.proposal-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

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

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group label i {
  color: var(--primary);
  font-size: 0.95rem;
}

.form-group label .required {
  color: #ef4444;
  margin-left: 0.15rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.95rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-light);
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

/* Custom Select styling arrow */
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.1rem;
  padding-right: 2.75rem;
}

.form-group textarea {
  resize: vertical;
}

.form-submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 3.5rem;
  font-size: 1.05rem;
  border-radius: 50px;
  cursor: pointer;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  filter: brightness(1.05);
}

.form-security-note {
  font-size: 0.8rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.form-security-note i {
  color: #22c55e;
}

/* ────────────────────────────────────────────────────────────
   PROPOSAL SUCCESS MODAL
   ──────────────────────────────────────────────────────────── */

.proposal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.proposal-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.proposal-modal-card {
  background: var(--bg-white);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: translateY(40px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-light);
}

.proposal-modal-overlay.active .proposal-modal-card {
  transform: translateY(0);
}

.proposal-modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.25rem;
  margin: 0 auto 1.75rem;
}

.proposal-modal-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.proposal-modal-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

.proposal-modal-card .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
   ──────────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .pe-horizontal-card {
    gap: 1.5rem;
    padding: 1.75rem;
  }
  .pe-card-meta {
    min-width: 150px;
  }
  .pe-card-features {
    min-width: 200px;
  }
}

@media (max-width: 991px) {
  .pricing-explorer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .pe-left {
    position: static;
  }
  
  .pe-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .pe-tab {
    flex: 1 1 calc(50% - 0.75rem);
    justify-content: center;
  }
  
  .pe-left-cta {
    display: none; /* Hide custom proposal link on desktop sidebar since form is below */
  }
}

@media (max-width: 768px) {
  .pe-tabs {
    flex-direction: column;
  }
  
  .pe-tab {
    flex: 1 1 100%;
    justify-content: flex-start;
  }
  
  .pe-horizontal-card {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  
  .pe-card-meta,
  .pe-card-features,
  .pe-card-action {
    min-width: 0;
    text-align: left;
    align-items: flex-start;
  }
  
  .pe-card-action {
    border-left: none;
    border-top: 1px solid var(--border-light);
    padding-left: 0;
    padding-top: 1.5rem;
    align-items: stretch;
  }
  
  .pe-horizontal-card.popular .pe-card-action {
    border-top-color: rgba(255, 255, 255, 0.12);
  }
  
  .pe-card-action .pe-price {
    text-align: left;
  }
  
  .pe-card-action .pe-price span {
    display: inline;
    margin-left: 0.5rem;
  }
  
  .proposal-inner {
    padding: 2.5rem 1.75rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .form-group.full-width {
    grid-column: auto;
  }
}

/* ────────────────────────────────────────────────────────────
   20. CUSTOM WHY CHOOSE US & OMNI CHANNEL MARKETING STYLES
   ──────────────────────────────────────────────────────────── */

.why-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.why-card-custom {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 3rem 2.25rem;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.why-card-custom:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-xl);
}

.why-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.why-card-custom:hover .why-icon-wrap {
  background: var(--gradient-primary);
  color: #fff;
  transform: rotate(360deg);
}

.why-card-custom h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.why-card-custom p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* ---- Omni Channel Section ---- */
.omni-section {
  padding: 7rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.omni-desc {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
}

.omni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.omni-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.omni-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.8;
}

.omni-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
}

.omni-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.omni-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .why-cards-row,
  .omni-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}



/* ==========================================================================
   ADMIN LOGIN & DASHBOARD STYLES (BACKEND PANEL)
   ========================================================================== */

/* Header Admin Action Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light, #ffffff) !important;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.nav-login:hover {
  background: var(--gradient-primary, linear-gradient(135deg, #4F46E5, #06B6D4));
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
}

.nav-mobile-admin-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 1rem;
}

.nav-mobile-admin-row .nav-mobile-cta {
  margin-top: 0 !important;
}

.nav-mobile-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light, #ffffff) !important;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  text-align: center;
}

.nav-mobile-login:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-light, #818CF8) !important;
}

/* Admin Auth Layout */
.admin-auth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: radial-gradient(circle at 10% 20%, #1e1b4b 0%, #0f172a 90%);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.admin-auth-container::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.admin-auth-container::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.admin-login-card {
  width: 100%;
  max-width: 440px;
  background: rgba(30, 41, 59, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
  position: relative;
}

.admin-login-logo {
  text-align: center;
  margin-bottom: 2.5rem;
}

.admin-login-logo .logo {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
}

.admin-login-logo .logo span {
  color: var(--primary-light, #818CF8);
}

.admin-login-logo p {
  color: var(--text-body, #94a3b8);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.admin-login-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.admin-login-form .form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-login-form label {
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 500;
}

.admin-login-form input {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.85rem 1.25rem;
  border-radius: 0.75rem;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.admin-login-form input:focus {
  outline: none;
  border-color: var(--primary-light, #818CF8);
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.25);
  background: rgba(15, 23, 42, 0.8);
}

.admin-btn {
  background: var(--gradient-primary, linear-gradient(135deg, #4F46E5, #06B6D4));
  color: #ffffff;
  border: none;
  padding: 0.95rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  margin-top: 1rem;
}

.admin-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
  opacity: 0.95;
}

.admin-error-msg {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Admin Dashboard Layout */
.admin-dashboard-container {
  min-height: 100vh;
  background: #0b0f19;
  font-family: 'Inter', sans-serif;
  color: #f8fafc;
}

.admin-navbar {
  background: #111827;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
}

.admin-navbar .container-admin {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-navbar .logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
}

.admin-navbar .logo span {
  color: var(--primary-light, #818CF8);
}

.admin-nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.admin-user-info {
  font-size: 0.9rem;
  color: #94a3b8;
}

.admin-logout-btn {
  background: transparent;
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
}

.admin-logout-btn:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
}

.admin-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.admin-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.admin-page-title h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.admin-page-title p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.admin-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-search-wrapper {
  position: relative;
  width: 320px;
}

.admin-search-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 0.9rem;
}

.admin-search-input {
  width: 100%;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.admin-search-input:focus {
  outline: none;
  border-color: var(--primary-light, #818CF8);
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.2);
}

/* Dashboard Cards (Stats) */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.admin-stat-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.admin-stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
}

.admin-stat-icon.blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.admin-stat-icon.green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.admin-stat-icon.purple { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }

.admin-stat-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Outfit', sans-serif;
}

.admin-stat-info p {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0.25rem 0 0;
}

/* Dashboard Table Panel */
.admin-panel {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.admin-panel-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-panel-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.admin-table-wrapper {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.admin-table th {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.2rem 1.5rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: #e2e8f0;
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-client-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.admin-client-name {
  font-weight: 600;
  color: #ffffff;
}

.admin-client-company {
  font-size: 0.8rem;
  color: #94a3b8;
}

.admin-client-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.admin-client-contact a {
  color: #94a3b8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.admin-client-contact a:hover {
  color: var(--primary-light, #818CF8);
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.admin-badge.seo { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.admin-badge.sosmed { background: rgba(236, 72, 153, 0.15); color: #f472b6; }
.admin-badge.ads { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.admin-badge.web-dev { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.admin-badge.video { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.admin-badge.other { background: rgba(100, 116, 139, 0.15); color: #94a3b8; }

.admin-budget {
  font-weight: 600;
  color: #34d399;
}

.admin-brief-box {
  max-width: 320px;
  white-space: normal;
  word-break: break-word;
  color: #cbd5e1;
  line-height: 1.5;
  font-size: 0.85rem;
}

.admin-date {
  color: #64748b;
  font-size: 0.8rem;
}

.admin-empty-state {
  padding: 5rem 2rem;
  text-align: center;
  color: #64748b;
}

.admin-empty-state i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #334155;
}

.admin-empty-state p {
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .admin-page-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .admin-tools {
    width: 100%;
  }
  
  .admin-search-wrapper {
    width: 100%;
  }
}

/* ==========================================================================
   CMS ADMIN PANEL — SIDEBAR LAYOUT
   ========================================================================== */

/* -- Layout Root -- */
.cms-layout {
  display: flex;
  min-height: 100vh;
  background: #0b0f19;
  font-family: 'Inter', sans-serif;
}

/* -- Sidebar -- */
.cms-sidebar {
  width: 260px;
  min-height: 100vh;
  background: #111827;
  border-right: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0; top: 0; bottom: 0;
  z-index: 200;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.cms-sidebar-logo {
  padding: 2rem 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cms-sidebar-logo .logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
}

.cms-sidebar-logo .logo span { color: #818CF8; }

.cms-sidebar-logo p {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cms-sidebar-nav {
  flex: 1;
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cms-sidebar-footer {
  padding: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cms-nav-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #94a3b8;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  width: 100%;
  text-align: left;
}

.cms-nav-item:hover {
  background: rgba(255,255,255,0.05);
  color: #e2e8f0;
}

.cms-nav-item.active {
  background: rgba(79,70,229,0.15);
  color: #818CF8;
}

.cms-nav-item.active .cms-nav-icon { color: #818CF8; }
.cms-nav-item.logout { color: #f87171; }
.cms-nav-item.logout:hover { background: rgba(239,68,68,0.08); }

.cms-nav-icon {
  width: 18px;
  text-align: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* -- Main wrapper -- */
.cms-main-wrapper {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* -- Top bar -- */
.cms-topbar {
  position: sticky; top: 0; z-index: 100;
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cms-sidebar-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: #e2e8f0;
  width: 38px; height: 38px;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
}

.cms-topbar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #e2e8f0;
  flex: 1;
}

.cms-topbar-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.875rem;
}

/* -- Page content -- */
.cms-page-content {
  flex: 1;
  padding: 2.5rem 2rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

/* -- CMS Action Buttons -- */
.cms-btn-add {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #4F46E5, #06B6D4);
  color: #ffffff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.cms-btn-add:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(79,70,229,0.3);
}

.cms-action-btns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cms-btn-edit, .cms-btn-del {
  width: 34px; height: 34px;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.cms-btn-edit {
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
}
.cms-btn-edit:hover { background: rgba(59,130,246,0.25); }

.cms-btn-del {
  background: rgba(239,68,68,0.12);
  color: #f87171;
}
.cms-btn-del:hover { background: rgba(239,68,68,0.22); }

/* -- Modal -- */
.cms-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cms-modal {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.cms-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cms-modal-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.cms-modal-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 0.4rem;
  transition: color 0.2s;
}
.cms-modal-close:hover { color: #e2e8f0; }

.cms-modal-body { padding: 1.5rem 2rem 2rem; }

/* -- Form inside Modal -- */
.cms-form { display: flex; flex-direction: column; gap: 1.25rem; }

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

.cms-form-group label {
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
}

.cms-form-group input, .cms-form-group textarea, .cms-form-group select {
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
  resize: vertical;
}

.cms-form-group input:focus, .cms-form-group textarea:focus, .cms-form-group select:focus {
  outline: none;
  border-color: #818CF8;
  box-shadow: 0 0 10px rgba(79,70,229,0.2);
}

.cms-form-group select option { background: #1e293b; }

.cms-form-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.cms-btn-cancel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}
.cms-btn-cancel:hover { background: rgba(255,255,255,0.1); color: #e2e8f0; }

.cms-btn-save {
  background: linear-gradient(135deg, #4F46E5, #06B6D4);
  border: none;
  color: #ffffff;
  padding: 0.7rem 1.75rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}
.cms-btn-save:hover { opacity: 0.92; transform: translateY(-1px); }
.cms-btn-save:disabled { opacity: 0.6; cursor: not-allowed; }

/* -- Gallery Grid (CMS view) -- */
.gallery-grid-admin {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  padding: 1.5rem;
}

.gallery-card-admin {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.85rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-card-admin:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.gallery-card-img {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: #0f172a;
}

.gallery-card-info { padding: 1rem; }

.gallery-folder-badge {
  display: inline-block;
  background: rgba(99,102,241,0.15);
  color: #818CF8;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-card-title {
  font-weight: 600;
  color: #e2e8f0;
  font-size: 0.9rem;
  margin: 0 0 0.25rem;
}

.gallery-card-desc {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* -- Sidebar overlay on mobile -- */
.cms-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 199;
}

/* -- Responsive -- */
@media (max-width: 1024px) {
  .cms-sidebar {
    transform: translateX(-100%);
  }
  .cms-sidebar.open {
    transform: translateX(0);
  }
  .cms-main-wrapper {
    margin-left: 0;
  }
  .cms-sidebar-toggle {
    display: flex;
  }
  .cms-sidebar-overlay {
    display: block;
  }
  .cms-page-content {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 640px) {
  .admin-page-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .cms-btn-add {
    width: 100%;
    justify-content: center;
  }
  .gallery-grid-admin {
    grid-template-columns: 1fr;
  }
}

/* ── HERO VIDEO LINK OVERLAY ── */
.hero-video-link {
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}
.hero-video-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.25) !important;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.video-play-overlay i {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #4F46E5; /* --primary */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  padding-left: 6px; /* center play triangle */
  box-shadow: 0 0 35px rgba(79, 70, 229, 0.7);
  transition: all 0.3s ease;
}
.hero-video-link:hover .video-play-overlay i {
  transform: scale(1.12);
  background: #fff;
  color: #4F46E5;
  box-shadow: 0 0 45px rgba(255, 255, 255, 0.95);
}
@media (max-width: 768px) {
  .video-play-overlay i {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
}


/* ── SERVICES PAGE SPECIFIC STYLES ── */
.services-page-hero {
      background: var(--gradient-hero);
      padding: 150px 0 6rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .services-page-hero::before {
      content: '';
      position: absolute;
      top: -20%; right: -10%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .services-page-hero .container { position: relative; z-index: 1; }
    .services-page-hero h1 {
      font-family: var(--font-heading);
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      color: var(--text-light);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }
    .services-page-hero p {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.75);
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Services list section */
    .services-list-section {
      padding: 6rem 0;
      background: var(--bg-light);
    }
    .services-full-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }
    .service-card-full {
      background: var(--bg-white);
      border: 1px solid var(--border-light);
      border-radius: 1.5rem;
      padding: 2.5rem 2rem;
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .service-card-full::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 4px;
      background: var(--gradient-primary);
      transform: scaleX(0);
      transition: transform 0.35s ease;
    }
    .service-card-full:hover { box-shadow: var(--shadow-xl); transform: translateY(-8px); }
    .service-card-full:hover::after { transform: scaleX(1); }
    .service-card-full.featured {
      background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1145 100%);
      border-color: rgba(79,70,229,0.3);
      grid-column: span 1;
    }
    .service-card-full.featured h3,
    .service-card-full.featured p { color: var(--text-light); }
    .service-card-full.featured p { opacity: 0.75; }
    .service-card-full.featured .scf-icon { background: rgba(79,70,229,0.2); }
    .service-card-full.featured .scf-link { color: var(--primary-light); }
    .featured-badge {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      background: var(--accent);
      color: var(--bg-dark);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.3rem 0.9rem;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .scf-icon {
      width: 60px; height: 60px;
      border-radius: 1rem;
      background: rgba(79,70,229,0.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      color: var(--primary);
      margin-bottom: 1.5rem;
    }
    .service-card-full h3 {
      font-family: var(--font-heading);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.75rem;
    }
    .service-card-full p {
      font-size: 0.93rem;
      color: var(--text-body);
      line-height: 1.7;
      flex: 1;
      margin-bottom: 1.75rem;
    }
    .scf-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--primary);
      font-weight: 600;
      font-size: 0.9rem;
      transition: gap 0.3s ease, color 0.3s ease;
    }
    .scf-link:hover { gap: 0.8rem; }

    @media (max-width: 1024px) {
      .services-full-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .services-full-grid { grid-template-columns: 1fr; }
    }

/* ── PELATIHAN PAGE SPECIFIC STYLES ── */
/* =========================================================
       PELATIHAN PAGE – Custom Styles (Matched to design system)
       ========================================================= */

    /* --- Problem Section --- */
    .problem-section {
      background: var(--bg-dark);
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }
    .problem-section::before {
      content: '';
      position: absolute;
      top: -40%;
      left: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .problem-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .problem-section .section-label { color: var(--primary-light); }
    .problem-section h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3.5vw, 2.75rem);
      color: var(--text-light);
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 1rem;
    }
    .problem-section h2 em {
      font-style: normal;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .problem-section > .container > .problem-grid > div:first-child > p {
      color: rgba(148,163,184,0.9);
      margin-bottom: 2rem;
    }
    .problem-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2rem;
    }
    .problem-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 0.75rem;
      transition: border-color 0.3s ease;
    }
    .problem-item:hover { border-color: rgba(79,70,229,0.4); }
    .problem-item .icon-x {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(239,68,68,0.15);
      color: #EF4444;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      flex-shrink: 0;
    }
    .problem-item p {
      color: rgba(148,163,184,0.9);
      font-size: 0.95rem;
      margin: 0;
      line-height: 1.5;
    }
    .problem-quote-card {
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 1.25rem;
      padding: 3rem 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .emoji-block {
      font-size: 3.5rem;
      text-align: center;
    }
    .quote-text {
      font-size: 1.1rem;
      color: rgba(148,163,184,0.9);
      line-height: 1.8;
      text-align: center;
    }
    .quote-text strong {
      color: var(--text-light);
      display: block;
      margin-top: 0.5rem;
      font-size: 1.2rem;
    }
    .quote-highlight {
      background: rgba(79,70,229,0.15);
      border: 1px solid rgba(79,70,229,0.3);
      border-radius: 1rem;
      padding: 1.5rem;
      text-align: center;
    }
    .quote-highlight p {
      color: var(--primary-light);
      font-size: 1rem;
      line-height: 1.7;
      margin: 0;
    }
    .quote-highlight em {
      font-style: normal;
      color: var(--text-light);
      font-weight: 600;
    }

    /* --- Solution Section --- */
    .solution-section {
      padding: 6rem 0;
      background: var(--bg-light);
    }
    .solution-intro {
      max-width: 700px;
      margin: 0 auto 4rem;
      text-align: center;
    }
    .solution-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.75rem;
    }
    .solution-card {
      background: var(--bg-white);
      border: 1px solid var(--border-light);
      border-radius: 1.25rem;
      padding: 2.25rem 2rem;
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }
    .solution-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--gradient-primary);
      transform: scaleX(0);
      transition: transform 0.35s ease;
    }
    .solution-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
    .solution-card:hover::after { transform: scaleX(1); }
    .solution-card .sol-icon {
      width: 56px; height: 56px;
      border-radius: 1rem;
      background: rgba(79,70,229,0.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      color: var(--primary);
      margin-bottom: 1.25rem;
    }
    .solution-card h3 {
      font-size: 1.15rem;
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.75rem;
    }
    .solution-card p {
      font-size: 0.92rem;
      color: var(--text-body);
      line-height: 1.7;
      margin: 0;
    }

    /* --- Stats Row --- */
    .stats-row {
      background: var(--bg-dark);
      padding: 4rem 0;
    }
    .stats-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }
    .stat-box h3 {
      font-family: var(--font-heading);
      font-size: 2.75rem;
      font-weight: 800;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.5rem;
    }
    .stat-box p { color: rgba(148,163,184,0.8); font-size: 0.9rem; }

    /* --- Platform Section --- */
    .platform-section {
      padding: 5rem 0;
      background: var(--bg-white);
      text-align: center;
    }
    .platform-grid {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .platform-pill {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 2rem;
      border: 1.5px solid var(--border-light);
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      color: var(--text-dark);
      transition: all 0.3s ease;
    }
    .platform-pill i { font-size: 1.4rem; }
    .platform-pill:hover {
      border-color: var(--primary);
      color: var(--primary);
      box-shadow: var(--shadow-md);
    }
    .platform-pill.meta i { color: #1877F2; }
    .platform-pill.tiktok i { color: #010101; }
    .platform-pill.google i { color: #EA4335; }
    .platform-pill.seo i { color: #10B981; }

    /* --- Process Section --- */
    .process-section {
      padding: 6rem 0;
      background: var(--bg-light);
    }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: var(--gradient-primary);
      opacity: 0.3;
    }
    .process-step {
      text-align: center;
      padding: 2rem 1rem;
      background: var(--bg-white);
      border-radius: 1.25rem;
      border: 1px solid var(--border-light);
      transition: all 0.3s ease;
    }
    .process-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
    .process-num {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: var(--gradient-primary);
      color: #fff;
      font-weight: 800;
      font-size: 1.2rem;
      font-family: var(--font-heading);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem;
      box-shadow: var(--shadow-primary);
    }
    .process-step h4 {
      font-family: var(--font-heading);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }
    .process-step p {
      font-size: 0.82rem;
      color: var(--text-body);
      line-height: 1.5;
      margin: 0;
    }

    /* --- Pricing Section --- */
    .pricing-section .section-label { color: var(--primary); }
    .pricing-note {
      text-align: center;
      margin-top: 2rem;
      font-size: 0.9rem;
      color: var(--text-body);
    }

    /* --- FAQ Konten --- */
    .faq-sm { padding: 5rem 0; background: var(--bg-white); }

    /* --- Final CTA --- */
    .final-cta {
      background: var(--gradient-hero);
      padding: 6rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      top: -40%;
      left: 50%;
      transform: translateX(-50%);
      width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(79,70,229,0.15) 0%, transparent 60%);
      border-radius: 50%;
    }
    .final-cta .container { position: relative; z-index: 1; }
    .final-cta h2 {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--text-light);
      font-weight: 800;
      margin-bottom: 1.25rem;
      letter-spacing: -0.02em;
    }
    .final-cta p {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.75);
      max-width: 550px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }
    .final-cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 1rem 2rem;
      border-radius: 50px;
      background: #25D366;
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .btn-whatsapp:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    }

    /* --- Responsive --- */
    @media (max-width: 1024px) {
      .solution-cards { grid-template-columns: repeat(2, 1fr); }
      .process-steps { grid-template-columns: repeat(3, 1fr); }
      .process-steps::before { display: none; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .problem-grid { grid-template-columns: 1fr; gap: 3rem; }
      .solution-cards { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .process-steps { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: 1fr; }
    }

    /* --- Gallery Slider Section --- */
    .gallery-section {
      padding: 6rem 0;
      background: var(--bg-white);
      position: relative;
      overflow: hidden;
    }
    .gallery-intro {
      max-width: 700px;
      margin: 0 auto 3rem;
      text-align: center;
    }
    .gallery-viewport {
      overflow: hidden;
      width: 100%;
      position: relative;
      border-radius: 1.5rem;
    }
    .gallery-track {
      display: flex;
      gap: 1.5rem;
      transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: transform;
    }
    .gallery-card {
      position: relative;
      border-radius: 1.25rem;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .gallery-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
    }
    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .gallery-card:hover img {
      transform: scale(1.05);
    }
    .gallery-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .gallery-arrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1.5px solid var(--border-light);
      background: var(--bg-white);
      color: var(--text-dark);
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    }
    .gallery-arrow:hover {
      background: var(--gradient-primary);
      color: #fff;
      border-color: transparent;
      box-shadow: 0 8px 25px rgba(79, 70, 229, 0.35);
    }
    .gallery-arrow:disabled {
      opacity: 0.35;
      cursor: not-allowed;
      box-shadow: none;
    }
    .gallery-dots {
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }
    .gallery-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(79, 70, 229, 0.2);
      border: 1.5px solid rgba(79, 70, 229, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
    }
    .gallery-dot.active {
      background: var(--primary);
      border-color: var(--primary);
      width: 24px;
      border-radius: 50px;
    }

/* ============================================================
   GALLERY SKELETON SHIMMER LOADER
   ============================================================ */
.gallery-skeleton-card {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.gallery-skeleton-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  animation: galleryShimmer 1.5s infinite;
}

@keyframes galleryShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
