/* ==========================================================================
   NIKAHBOX LANDING PAGE - MAIN STYLESHEET
   Design System: Modern Wedding SaaS
   Framework: Bootstrap 5.3
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --primary: #3B82F6;
  --primary-hover: #2563EB;
  --primary-light: rgba(59, 130, 246, 0.08);
  --primary-glow: rgba(59, 130, 246, 0.25);
  --secondary: #60A5FA;
  --bg-main: #F8FBFF;
  --bg-surface: #FFFFFF;
  --dark: #1E293B;
  --dark-heading: #0F172A;
  --gray: #64748B;
  --gray-light: #94A3B8;
  --border: #E5E7EB;
  --border-focus: #BFDBFE;

  /* Status Colors */
  --success: #22C55E;
  --danger: #EF4444;
  --warning: #F59E0B;
  --accent-gold: #D97706;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Border Radius */
  --radius-btn: 14px;
  --radius-card: 20px;
  --radius-img: 24px;
  --radius-hero-phone: 36px;
  --radius-badge: 50px;

  /* Shadows */
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 10px 30px rgba(30, 41, 59, 0.04);
  --shadow-hover: 0 25px 70px rgba(59, 130, 246, 0.12);
  --shadow-btn: 0 10px 25px rgba(59, 130, 246, 0.3);

  /* Spacing */
  --section-padding: 100px 0;
  --card-padding: 32px;
  --container-max-width: 1320px;

  /* Transitions */
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL & RESET STYLES
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

p {
  color: var(--gray);
  margin-bottom: 1rem;
}

a {
  text-decoration: none !important;
  transition: var(--transition-fast);
}

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

/* Custom Container */
@media (min-width: 1400px) {
  .container {
    max-width: var(--container-max-width);
  }
}

/* Section Spacing */
.section-padding {
  padding: var(--section-padding);
}

/* Section Header Utility */
.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--primary);
  border-radius: var(--radius-badge);
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-title .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   3. BUTTONS & BADGES
   -------------------------------------------------------------------------- */
.btn {
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #FFFFFF !important;
  box-shadow: var(--shadow-btn);
}

.btn-primary-custom:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
  color: #FFFFFF !important;
}

.btn-secondary-custom {
  background: var(--bg-surface);
  color: var(--dark) !important;
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.btn-secondary-custom:hover {
  background: var(--bg-main);
  border-color: var(--primary);
  color: var(--primary) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
}

.btn-lg-custom {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   4. NAVBAR STYLES
   -------------------------------------------------------------------------- */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  padding: 20px 0;
  transition: var(--transition-normal);
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.navbar-brand-custom {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark-heading) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-img {
  height: 38px !important;
  max-height: 38px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain;
}

.navbar-brand-icon {
  font-size: 1.6rem;
  color: var(--danger);
  display: inline-block;
  animation: heartPulse 2s infinite ease-in-out;
}

@keyframes heartPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.nav-link-custom {
  font-weight: 500;
  color: var(--gray) !important;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  transition: var(--transition-fast);
  border-radius: 8px;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 130px;
  padding-bottom: 110px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(96, 165, 250, 0.08) 0%, transparent 40%);
}

.hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(96, 165, 250, 0.02) 70%, transparent 100%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  pointer-events: none;
  filter: blur(40px);
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 3rem);
  letter-spacing: -1px;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.avatar-group {
  display: flex;
}

.avatar-group img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  margin-left: -12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.rating-stars {
  color: var(--warning);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.rating-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

/* Hero Right: iPhone Mockup & Floating Cards */
.hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.hero-phone-frame {
  position: relative;
  width: 290px;
  height: 580px;
  border-radius: var(--radius-hero-phone);
  background: #0F172A;
  border: 10px solid #1E293B;
  box-shadow: 0 40px 100px rgba(30, 41, 59, 0.25),
    0 0 0 2px rgba(59, 130, 246, 0.2);
  overflow: hidden;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  overflow-y: auto;
  position: relative;
  scrollbar-width: none;
}

.phone-screen::-webkit-scrollbar {
  display: none;
}

.phone-screen-content {
  padding: 20px 16px;
  text-align: center;
  background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
  min-height: 100%;
}

.phone-invitation-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 20px 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  margin-top: 10px;
}

.phone-wedding-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.phone-couple-names {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-heading);
  line-height: 1.2;
}

.phone-date-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 12px 0;
}

.phone-timer-box {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.timer-unit {
  background: var(--bg-main);
  border-radius: 8px;
  padding: 6px 8px;
  min-width: 44px;
}

.timer-unit .num {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  line-height: 1;
}

.timer-unit .lbl {
  font-size: 0.58rem;
  color: var(--gray);
  text-transform: uppercase;
}

/* Hero Floating Badges */
.floating-card {
  position: absolute;
  background: var(--bg-surface);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  backdrop-filter: blur(10px);
  animation: floatAnimation 4s ease-in-out infinite alternate;
}

.floating-card-1 {
  top: 15%;
  left: -20px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 20%;
  right: -25px;
  animation-delay: 1.5s;
}

.floating-card-3 {
  top: 50%;
  left: -40px;
  animation-delay: 0.8s;
}

.floating-card-4 {
  bottom: 12%;
  left: 0px;
  animation-delay: 2.2s;
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.floating-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-heading);
  margin-bottom: 2px;
}

.floating-sub {
  font-size: 0.72rem;
  color: var(--gray);
  margin: 0;
}

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

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

/* --------------------------------------------------------------------------
   6. FEATURES SECTION (6 Cards)
   -------------------------------------------------------------------------- */
.feature-card-custom {
  background: var(--bg-surface);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  height: 100%;
}

.feature-card-custom:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-focus);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.feature-card-custom:hover .feature-icon-wrapper {
  background: var(--primary);
  color: #FFFFFF;
  transform: scale(1.05);
}

.feature-card-title {
  font-size: 1rem;
  margin-bottom: 12px;
}

.feature-card-desc {
  font-size: 0.6rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   7. KENAPA NIKAHBOX SECTION (2 Columns + Laptop Mockup)
   -------------------------------------------------------------------------- */
.why-us-section {
  background: #FFFFFF;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.checklist-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.laptop-mockup-wrapper {
  position: relative;
  padding: 20px;
}

.laptop-frame {
  background: #0F172A;
  border-radius: 20px 20px 0 0;
  padding: 12px 12px 0 12px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
  border: 1px solid #334155;
  position: relative;
}

.laptop-screen {
  background: var(--bg-main);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.laptop-base {
  background: #334155;
  height: 16px;
  border-radius: 0 0 20px 20px;
  position: relative;
}

.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: #475569;
  border-radius: 0 0 6px 6px;
}

.why-floating-badge {
  position: absolute;
  bottom: -20px;
  right: 0px;
  background: var(--bg-surface);
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 5;
}

.why-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--warning);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* --------------------------------------------------------------------------
   8. TEMPLATE SECTION (5 Templates Grid)
   -------------------------------------------------------------------------- */
.template-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.template-card-custom {
  background: var(--bg-surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  height: 100%;
  position: relative;
}

.template-card-custom:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-focus);
}

.template-img-holder {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/16;
}

.template-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.template-card-custom:hover .template-img-holder img {
  transform: scale(1.08);
}

.template-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.85) 100%);
  opacity: 0;
  transition: var(--transition-normal);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.template-card-custom:hover .template-overlay {
  opacity: 1;
}

.template-body {
  padding: 16px;
  text-align: center;
}

.template-title {
  font-size: 1.05rem;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.template-tag {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   9. FITUR DETAIL SECTION (4x2 Grid)
   -------------------------------------------------------------------------- */
.detail-feature-card {
  background: var(--bg-surface);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--transition-fast);
  height: 100%;
}

.detail-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-focus);
}

.circle-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.detail-feature-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.detail-feature-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. STATISTIC SECTION
   -------------------------------------------------------------------------- */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1D4ED8 100%);
  position: relative;
  overflow: hidden;
}

.stats-card-custom {
  background: var(--bg-surface);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: var(--transition-normal);
}

.stats-card-custom:hover {
  transform: translateY(-6px);
}

.stats-num {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. TESTIMONIAL SECTION (Swiper)
   -------------------------------------------------------------------------- */
.testimonial-card-custom {
  background: var(--bg-surface);
  border-radius: var(--radius-card);
  padding: var(--card-padding);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 24px;
  font-style: italic;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-heading);
  margin-bottom: 2px;
}

.testi-date {
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* --------------------------------------------------------------------------
   12. PRICING SECTION (3 Cards)
   -------------------------------------------------------------------------- */
.pricing-card-custom {
  background: var(--bg-surface);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card-custom.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-hover);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card-single {
  background: var(--bg-surface);
  border-radius: 24px;
  padding: 44px 36px;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-hover);
  position: relative;
  transition: var(--transition-normal);
}

.pricing-card-single:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(59, 130, 246, 0.18);
}

@media (min-width: 768px) {
  .border-end-md {
    border-right: 1px solid var(--border);
  }
}

.pricing-badge-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-badge);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.pricing-name {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark-heading);
  line-height: 1;
  margin-bottom: 24px;
}

.pricing-price span {
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--gray);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--success);
  font-size: 1.1rem;
}

.pricing-features li.disabled {
  color: var(--gray-light);
  text-decoration: line-through;
}

.pricing-features li.disabled i {
  color: var(--gray-light);
}

/* --------------------------------------------------------------------------
   13. FAQ SECTION (Accordion)
   -------------------------------------------------------------------------- */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-card) !important;
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--bg-surface);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-accordion .accordion-button {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-heading);
  padding: 22px 28px;
  background: var(--bg-surface);
  box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--primary-light);
}

.faq-accordion .accordion-body {
  padding: 0 28px 24px 28px;
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   14. CTA SECTION
   -------------------------------------------------------------------------- */
.cta-banner-custom {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
}

.cta-banner-custom::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title-custom {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.cta-desc-custom {
  color: #94A3B8;
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 36px;
}

/* --------------------------------------------------------------------------
   15. FOOTER SECTION
   -------------------------------------------------------------------------- */
.footer-custom {
  background: #0F172A;
  color: #94A3B8;
  padding-top: 90px;
  padding-bottom: 40px;
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

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

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

.footer-links a {
  color: #94A3B8;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

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

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-right: 10px;
  transition: var(--transition-fast);
}

.footer-social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  margin-top: 60px;
  font-size: 0.88rem;
}