/* ==========================================================================
   VESTA DİJİTAL - EXACT DESIGN MATCH FROM REFERENCE
   Colors: Electric Indigo (#5842ed, #6c5ce7), Neon Lime (#cefd41),
   Crisp White, Soft Lavender Wash (#f7f7fc), Deep Midnight Navy (#0d0e26)
   ========================================================================== */

:root {
  /* Brand Palette */
  --primary: #5842ed;
  --primary-dark: #432ed6;
  --primary-light: #735ff7;
  --primary-gradient: linear-gradient(135deg, #6c57f9 0%, #4c32ea 100%);
  --primary-soft: rgba(88, 66, 237, 0.08);

  /* Neon Lime Accent */
  --accent-lime: #cefd41;
  --accent-lime-hover: #bded2b;
  --accent-lime-text: #0d0e26;

  /* Neutrals & Surfaces */
  --bg-white: #ffffff;
  --bg-light: #f8f9fd;
  --bg-card: #ffffff;
  --bg-dark: #0c0d24;
  --bg-dark-surface: #151736;

  /* Text Colors */
  --text-main: #14172c;
  --text-body: #5e6479;
  --text-muted: #8c93a8;
  --text-white: #ffffff;

  /* Borders & Shadows */
  --border-light: #e9ecf8;
  --border-focus: #5842ed;
  --shadow-sm: 0 4px 15px rgba(20, 23, 44, 0.04);
  --shadow-md: 0 10px 30px rgba(88, 66, 237, 0.08);
  --shadow-lg: 0 20px 45px rgba(20, 23, 44, 0.09);
  --shadow-lime: 0 8px 25px rgba(206, 253, 65, 0.35);

  /* Typography */
  --font-main: 'Plus Jakarta Sans', sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Layout */
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-white);
  color: var(--text-main);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   BUTTONS & PILLS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-lime {
  background: var(--accent-lime);
  color: var(--accent-lime-text);
  box-shadow: var(--shadow-lime);
}

.btn-lime:hover {
  background: var(--accent-lime-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(206, 253, 65, 0.5);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(88, 66, 237, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(88, 66, 237, 0.45);
}

.btn-white {
  background: #ffffff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: #f4f5fd;
  transform: translateY(-2px);
}

.btn-circle-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
}

.btn-lime .btn-circle-arrow {
  background: #0d0e26;
  color: #ffffff;
}

.btn-primary .btn-circle-arrow {
  background: #ffffff;
  color: var(--primary);
}

/* Section Kickers & Headlines */
.badge-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 12px;
  background: rgba(88, 66, 237, 0.08);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
  position: relative;
  width: 100%;
  z-index: 100;
  padding: 24px 0 10px;
}

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

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.header-brand .logo-icon {
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.header-brand span {
  color: var(--accent-lime);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.header-nav a:hover, .header-nav a.active {
  color: #ffffff;
}

.header-cta-btn {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.header-cta-btn:hover {
  background: #ffffff;
  color: var(--primary);
}

.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (PURPLE BACKGROUND & FLOATING CARDS)
   ========================================================================== */
.hero-wrapper {
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
  padding-top: 10px;
  padding-bottom: 120px;
  color: #ffffff;
}

/* Decorative Geometric Floating Elements in Hero */
.hero-decor-trophy {
  position: absolute;
  top: 140px;
  left: 40px;
  width: 44px;
  height: 44px;
  opacity: 0.75;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.hero-decor-sparkle {
  position: absolute;
  top: 200px;
  right: 50px;
  opacity: 0.6;
}

.hero-decor-circle {
  position: absolute;
  bottom: 20px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes floatSlow {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(5deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-sub-kicker {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(2.8rem, 4.4vw, 4.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-video-link .play-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.hero-video-link:hover .play-icon {
  transform: scale(1.1);
  background: #ffffff;
  color: var(--primary);
}

/* Hero Right Visuals & Floating UI Cards */
.hero-visual-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-person-frame {
  position: relative;
  width: 380px;
  height: 440px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 180px 180px 24px 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.hero-person-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Cards around Person */
.floating-stat-card {
  position: absolute;
  bottom: 25px;
  left: -35px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 15px 35px rgba(20, 23, 44, 0.18);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-main);
  z-index: 2;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.stat-chart-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fsc-number {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-main);
}

.fsc-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-body);
}

.floating-badge-top {
  position: absolute;
  top: 60px;
  left: -25px;
  background: #ffffff;
  color: var(--text-main);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.floating-badge-top .dot-orange {
  width: 12px;
  height: 12px;
  background: #ff6b4a;
  border-radius: 4px;
}

.floating-badge-right {
  position: absolute;
  top: 50px;
  right: -20px;
  background: #2dd4bf;
  color: #0d0e26;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(45, 212, 191, 0.4);
  z-index: 2;
}

/* ==========================================================================
   FLOATING PARTNER LOGO BAR
   ========================================================================== */
.partner-bar-section {
  position: relative;
  margin-top: -50px;
  z-index: 10;
}

.partner-pill-card {
  background: #ffffff;
  border-radius: var(--radius-full);
  padding: 24px 44px;
  box-shadow: 0 15px 40px rgba(30, 36, 68, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #242945;
  letter-spacing: -0.02em;
}

.partner-logo-item svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

/* ==========================================================================
   SERVICES & CARDS ROW 1 ("Use SEO To Drive Growth At Your Business")
   ========================================================================== */
.feature-row-section {
  padding: 100px 0 60px;
  background: var(--bg-white);
}

.feature-head-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 30px;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(88, 66, 237, 0.3);
}

.sc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.sc-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-main);
}

.sc-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* 4th Card: Featured Megaphone / Growth Banner Card */
.service-card-banner {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(255, 65, 108, 0.3);
}

.scb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 14, 38, 0.85) 100%);
}

.scb-text {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
}

/* ==========================================================================
   TEAM & STATS BANNER SECTION
   ========================================================================== */
.team-stats-section {
  padding: 60px 0 100px;
}

.team-stats-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.tsc-image-wrap {
  position: relative;
  width: 100%;
  height: 400px;
}

.tsc-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Lime Badge */
.tsc-lime-stamp {
  position: absolute;
  bottom: 110px;
  right: 45px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--accent-lime);
  color: var(--accent-lime-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  font-size: 0.75rem;
  line-height: 1.1;
  box-shadow: 0 10px 25px rgba(206, 253, 65, 0.5);
  transform: rotate(-10deg);
}

.tsc-lime-stamp .stamp-star {
  font-size: 1.1rem;
}

/* Purple Bottom Stats Ribbon */
.tsc-stats-ribbon {
  background: var(--primary-gradient);
  padding: 32px 50px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #ffffff;
}

.tsc-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tsc-stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.tsc-stat-lbl {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* ==========================================================================
   ISOMETRIC SERVICES ROW ("Use SEO To Drive Growth At Your Business")
   ========================================================================== */
.services-iso-section {
  padding: 40px 0 100px;
  background: var(--bg-white);
}

.services-iso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.iso-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.iso-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(88, 66, 237, 0.3);
}

.iso-graphic-box {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.iso-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-main);
}

.iso-card-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 20px;
}

.iso-card-link {
  margin-top: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.iso-card:hover .iso-card-link {
  transform: scale(1.15);
}

/* ==========================================================================
   SPLIT ABOUT & FEATURES ("Let's Make Something Awesome Together")
   ========================================================================== */
.about-split-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-visual-left {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-round-frame {
  width: 380px;
  height: 420px;
  border-radius: 190px 190px 24px 24px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-round-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-lime-badge {
  position: absolute;
  top: 40px;
  right: -10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ff7844;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(255, 120, 68, 0.4);
}

.about-float-graph {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-features-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.af-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
}

.af-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.af-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.af-desc {
  font-size: 0.86rem;
  color: var(--text-body);
}

/* ==========================================================================
   FAQ SECTION & ACCORDION
   ========================================================================== */
.faq-agency-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.faq-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: flex-start;
}

.faq-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-box-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
  transition: all 0.2s;
}

.faq-box-card.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-btn-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq-btn-trigger .icon-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.25s;
}

.faq-box-card.active .faq-btn-trigger .icon-toggle {
  transform: rotate(45deg);
  background: var(--primary);
  color: #ffffff;
}

.faq-content-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}

.faq-drawer-text {
  padding-bottom: 20px;
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ==========================================================================
   MID-PAGE CTA BANNER 1
   ========================================================================== */
.cta-banner-mid {
  padding: 40px 0;
}

.cta-banner-purple {
  background: var(--primary-gradient);
  border-radius: var(--radius-xl);
  padding: 40px 50px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 20px 45px rgba(88, 66, 237, 0.35);
  position: relative;
  overflow: hidden;
}

.cb-left-graphic {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cb-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cb-headline {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.25;
}

/* ==========================================================================
   CONTACT FORM SECTION ("Your Marketing Solutions Happy Clients Say")
   ========================================================================== */
.contact-section-split {
  padding: 100px 0;
  background: var(--bg-light);
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.contact-img-frame {
  width: 360px;
  height: 420px;
  border-radius: 180px 180px 24px 24px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

.contact-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-clean {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-full {
  grid-column: span 2;
}

.cf-input, .cf-select, .cf-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #fafbfe;
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.cf-input:focus, .cf-select:focus, .cf-textarea:focus {
  border-color: var(--primary);
  background: #ffffff;
}

.cf-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ==========================================================================
   BLOG / ARTICLES SECTION ("Use SEO To Drive Growth")
   ========================================================================== */
.blog-cards-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.blog-head-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(88, 66, 237, 0.3);
}

.blog-thumb {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.08);
}

.blog-content {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-main);
  margin-bottom: 12px;
}

.blog-read-more {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   BOTTOM CTA BANNER 2 (PERSON WITH LAPTOP)
   ========================================================================== */
.bottom-cta-section {
  padding: 40px 0 80px;
}

.bottom-cta-card {
  background: var(--primary-gradient);
  border-radius: var(--radius-xl);
  padding: 30px 60px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: visible;
  box-shadow: 0 20px 45px rgba(88, 66, 237, 0.35);
}

.bcta-person-img {
  width: 180px;
  height: auto;
  margin-top: -50px;
  margin-bottom: -30px;
}

.bcta-headline {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.2;
}

.bcta-rocket-icon {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25));
  animation: floatSlow 3.5s ease-in-out infinite alternate;
}

/* ==========================================================================
   DARK NAVY FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 80px 0 30px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-bio {
  color: #8c93a8;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-social-row {
  display: flex;
  gap: 12px;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-dark-surface);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-circle:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #8c93a8;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-post-mini {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-post-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.footer-post-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.footer-post-date {
  font-size: 0.76rem;
  color: #8c93a8;
  margin-top: 4px;
}

.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #8c93a8;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-lead {
    margin: 0 auto 36px;
  }
  .hero-actions {
    justify-content: center;
  }
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-iso-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-split-grid {
    grid-template-columns: 1fr;
  }
  .faq-split-grid {
    grid-template-columns: 1fr;
  }
  .contact-split-grid {
    grid-template-columns: 1fr;
  }
  .blog-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .mobile-toggle-btn {
    display: block;
  }
  .feature-head-split {
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-cards-grid {
    grid-template-columns: 1fr;
  }
  .services-iso-grid {
    grid-template-columns: 1fr;
  }
  .tsc-stats-ribbon {
    flex-direction: column;
    gap: 24px;
  }
  .cta-banner-purple {
    flex-direction: column;
    text-align: center;
  }
  .cb-left-graphic {
    flex-direction: column;
  }
  .bottom-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }
  .bcta-person-img {
    margin-top: 0;
  }
  .blog-cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .cf-grid {
    grid-template-columns: 1fr;
  }
  .cf-full {
    grid-column: span 1;
  }
}

/* ==========================================================================
   SERVICE DETAIL PAGE SPECIALIZED STYLES (WEB DESIGN SERVICE)
   ========================================================================== */
.service-hero-section {
  background: var(--primary-gradient);
  padding: 130px 0 80px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.breadcrumb-nav a:hover {
  color: #ffffff;
}

.breadcrumb-separator {
  color: var(--accent-lime);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.service-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
}

.service-pill svg {
  color: var(--accent-lime);
}

/* Device Mockup Stage */
.mockup-device-stage {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 25px 60px rgba(13, 14, 38, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 12px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.browser-url-pill {
  margin-left: 12px;
  background: #f1f3fa;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
}

.mockup-screen-img {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

/* Service Scope & Deliverables Grid */
.deliverables-section {
  padding: 90px 0;
  background: #ffffff;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.deliv-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all 0.3s ease;
  position: relative;
}

.deliv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(88, 66, 237, 0.35);
}

.deliv-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.deliv-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.deliv-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Comparison Table (Template vs Vesta Custom) */
.service-comp-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.comp-table-wrap {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.ctw-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  padding: 20px 28px;
  background: #f8f9fd;
  border-bottom: 1px solid var(--border-light);
  font-weight: 800;
  font-size: 0.92rem;
}

.ctw-header .vesta-label {
  color: var(--primary);
}

.ctw-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
  font-size: 0.92rem;
}

.ctw-row:last-child {
  border-bottom: none;
}

.ctw-feature {
  font-weight: 700;
  color: var(--text-main);
}

.ctw-bad {
  color: var(--text-muted);
}

.ctw-good {
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ctw-good svg {
  color: #10b981;
}

/* Pricing / Solution Packages */
.packages-section {
  padding: 90px 0;
  background: #ffffff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

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

.package-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.pkg-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-lime);
  color: var(--accent-lime-text);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(206, 253, 65, 0.4);
}

.pkg-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-main);
}

.pkg-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pkg-timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.pkg-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pkg-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 600;
}

.pkg-features-list svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Interactive Web Cost Calculator */
.web-calc-section {
  padding: 90px 0;
  background: var(--bg-light);
}

.web-calc-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
}

.wcalc-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.wcalc-btn {
  padding: 12px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.wcalc-btn:hover {
  border-color: var(--primary);
}

.wcalc-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(88, 66, 237, 0.25);
}

.wcalc-checkbox-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.wcalc-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.wcalc-check-label input {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

/* Calculator Output Right Panel */
.wcalc-output-panel {
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wco-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.wco-number {
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 6px;
}

.wco-timeline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent-lime);
}

/* Portfolio Showcase Cards */
.web-showcase-section {
  padding: 90px 0;
  background: #ffffff;
}

.web-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.w-case-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.w-case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(88, 66, 237, 0.3);
}

.w-case-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.w-case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.w-case-card:hover .w-case-thumb img {
  transform: scale(1.08);
}

.w-case-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 14, 38, 0.75);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.w-case-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.w-case-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.w-case-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.6;
}

.w-case-stat-row {
  display: flex;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.w-mini-metric {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

.w-mini-metric-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
  }
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .web-calc-box {
    grid-template-columns: 1fr;
  }
  .web-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .web-showcase-grid {
    grid-template-columns: 1fr;
  }
  .wcalc-option-grid {
    grid-template-columns: 1fr;
  }
  .wcalc-checkbox-row {
    grid-template-columns: 1fr;
  }
  .ctw-header, .ctw-row {
    grid-template-columns: 1fr 1fr;
    font-size: 0.8rem;
    padding: 14px 16px;
  }
  .ctw-header div:last-child, .ctw-row div:last-child {
    grid-column: span 2;
    margin-top: 6px;
  }
}

/* ==========================================================================
   HIGH-CONVERTING CORPORATE SERVICE DETAIL PAGE LAYOUT (REFERENCE REPLICA)
   ========================================================================== */

/* 1. Top Meta Bar */
.top-meta-bar {
  background: #0d1322;
  color: #ffffff;
  font-size: 0.78rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.tmb-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tmb-badge-yellow {
  background: #f59e0b;
  color: #0d1322;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tmb-right {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #94a3b8;
}

.tmb-right a {
  color: #cbd5e1;
  transition: color 0.2s;
}

.tmb-right a:hover {
  color: #ffffff;
}

/* 2. Main Service Header */
.service-header-white {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.shw-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.shw-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.shw-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  transition: color 0.2s;
}

.shw-nav a:hover, .shw-nav a.active {
  color: #5842ed;
}

.btn-whatsapp-green {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-whatsapp-green:hover {
  background: #20ba5a;
  transform: translateY(-1px);
}

.btn-gold-cta {
  background: #f59e0b;
  color: #ffffff;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-gold-cta:hover {
  background: #d97706;
  transform: translateY(-1px);
}

/* 3. Service Hero Area (Light Ice Blue Surface) */
.service-hero-clean {
  background: #f4f6fb;
  padding: 40px 0 60px;
  border-bottom: 1px solid #e2e8f0;
}

.service-hero-split {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 40px;
  align-items: flex-start;
}

.service-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: #d97706;
  margin-bottom: 18px;
}

.service-title-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.service-main-icon {
  width: 48px;
  height: 48px;
  background: #5842ed;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(88, 66, 237, 0.3);
}

.service-main-heading {
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.service-authority-line {
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 16px;
}

.service-intro-text {
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* 4 Quick Spec Badges Strip */
.service-spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.spec-strip-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
}

.ssi-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 2px;
}

.ssi-value {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
}

/* 4. Hero Lead Inquiry Card (Right Sticky Form) */
.hero-inquiry-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.hic-kicker {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #d97706;
  margin-bottom: 4px;
}

.hic-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.hic-desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hic-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hic-input, .hic-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.88rem;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s;
}

.hic-input:focus, .hic-textarea:focus {
  border-color: #5842ed;
}

.hic-textarea {
  resize: vertical;
  min-height: 70px;
}

.hic-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hic-dropzone {
  border: 1.5px dashed #cbd5e1;
  border-radius: 6px;
  padding: 14px;
  text-align: center;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.2s;
}

.hic-dropzone:hover {
  border-color: #5842ed;
  background: #f1f5f9;
}

.hic-btn-submit {
  background: #0f172a;
  color: #ffffff;
  padding: 13px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hic-btn-submit:hover {
  background: #1e293b;
}

.hic-trust-note {
  text-align: center;
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 10px;
}

/* 5. In-Page Sticky Tabs Navigation */
.inpage-nav-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 14px 0;
  position: sticky;
  top: 74px;
  z-index: 990;
}

.inpage-tabs-wrap {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.inpage-tab-pill {
  padding: 8px 18px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}

.inpage-tab-pill:hover, .inpage-tab-pill.active {
  background: #0f172a;
  color: #ffffff;
}

/* 6. Two-Column Main Content Body */
.service-main-content {
  padding: 50px 0 80px;
  background: #ffffff;
}

.service-layout-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 44px;
  align-items: flex-start;
}

.content-block-heading {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  position: relative;
  padding-left: 18px;
}

.content-block-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 5px;
  background: #f59e0b;
  border-radius: 3px;
}

.content-paragraph {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* 2 Callout Cards in Content */
.callout-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0 45px;
}

.callout-card-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #5842ed;
  border-radius: 8px;
  padding: 22px 20px;
}

.cci-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.cci-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
}

/* 4-Step Methodology Boxes */
.methodology-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0 45px;
}

.method-card-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
}

.method-step-badge {
  width: 32px;
  height: 32px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.method-card-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.method-card-desc {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.6;
}

/* Right Sidebar Sticky Cards */
.service-sidebar {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-spec-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.ssb-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  padding-bottom: 14px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 16px;
}

.ssb-table-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.86rem;
  border-bottom: 1px solid #f1f5f9;
}

.ssb-table-row:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}

.ssb-lbl {
  color: #64748b;
}

.ssb-val {
  font-weight: 700;
  color: #0f172a;
}

.sidebar-warning-alert {
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 6px;
  padding: 16px;
  font-size: 0.82rem;
  color: #92400e;
  line-height: 1.55;
}

/* 7. Alternative Services Grid (4 Cards) */
.alt-services-section {
  padding: 60px 0 90px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.alt-services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.alt-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.alt-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}

.alt-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border-color: #5842ed;
}

.asc-icon {
  width: 42px;
  height: 42px;
  background: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #0f172a;
}

.asc-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.asc-desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.asc-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  font-size: 0.78rem;
}

.asc-time {
  font-weight: 600;
  color: #64748b;
}

.asc-link-btn {
  color: #5842ed;
  font-weight: 700;
  text-decoration: none;
}

/* 8. Dark High-Contrast CTA Banner */
.dark-cta-full-section {
  background: #0f172a;
  color: #ffffff;
  padding: 70px 0;
  text-align: center;
}

.dark-cta-title {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.dark-cta-desc {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.dark-cta-buttons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .service-hero-split {
    grid-template-columns: 1fr;
  }
  .service-layout-grid {
    grid-template-columns: 1fr;
  }
  .alt-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-spec-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .callout-cards-grid {
    grid-template-columns: 1fr;
  }
  .methodology-cards-grid {
    grid-template-columns: 1fr;
  }
  .alt-services-grid {
    grid-template-columns: 1fr;
  }
  .shw-nav {
    display: none;
  }
}

/* ==========================================================================
   BOOTSTRAP 5 CUSTOM INTEGRATION & OVERRIDES
   ========================================================================== */
a {
  text-decoration: none !important;
}

body {
  font-family: var(--font-main), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Bootstrap Accordion Styling */
.accordion-item {
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: #ffffff;
}

.accordion-button {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a !important;
  background: #ffffff;
  padding: 16px 20px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #5842ed !important;
  background-color: #f8fafc !important;
}

.accordion-button:focus {
  border-color: #cbd5e1;
  box-shadow: none;
}

.accordion-body {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.65;
  padding: 16px 20px 20px;
  background: #ffffff;
}

/* Bootstrap Form Controls */
.form-control {
  border-radius: 6px;
  border-color: #cbd5e1;
  font-size: 0.88rem;
  padding: 10px 14px;
  color: #0f172a;
}

.form-control:focus {
  border-color: #5842ed;
  box-shadow: 0 0 0 0.2rem rgba(88, 66, 237, 0.15);
}

/* Sürükle Bırak Kesikli Alan */
.dropzone-upload-box {
  border: 1.5px dashed #cbd5e1;
  border-radius: 8px;
  padding: 16px;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dropzone-upload-box:hover {
  border-color: #5842ed;
  background: #f1f5f9;
}

/* Metodoloji Adım Rozeti */
.step-number-box {
  width: 32px;
  height: 32px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* Özel Nav Linkleri */
.nav-pills .nav-link {
  border-radius: 6px;
  color: #475569;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 8px 18px;
  background: #f1f5f9;
  white-space: nowrap;
  transition: all 0.2s;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
  background: #0f172a !important;
  color: #ffffff !important;
}

/* Alternatif Hizmet Kartı */
.alt-service-bs-card {
  transition: all 0.25s ease;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.alt-service-bs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: #5842ed;
}

/* ==========================================================================
   VISUAL IMAGE SERVICE CARDS (HOMEPAGE SHOWCASE)
   ========================================================================== */
.service-image-card {
  background: #ffffff;
  border: 1px solid #e9ecf8;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.service-image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(88, 66, 237, 0.14);
  border-color: rgba(88, 66, 237, 0.4);
}

.sic-thumb-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

.sic-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-image-card:hover .sic-thumb-img {
  transform: scale(1.08);
}

.sic-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 19, 34, 0.85);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.sic-badge-lime {
  background: var(--accent-lime);
  color: #0d0e26;
  font-weight: 800;
}

.sic-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sic-category {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.sic-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 10px;
}

.sic-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

.sic-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.sic-btn-link {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  text-decoration: none !important;
}

.sic-btn-link:hover {
  color: var(--primary-dark);
  gap: 10px;
}

.sic-action-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.service-image-card:hover .sic-action-arrow {
  background: var(--primary);
  color: #ffffff;
  transform: rotate(-45deg);
}

/* ==========================================================================
   MEGA MENU STYLES
   ========================================================================== */
.nav-item.dropdown.has-mega-menu {
  position: static !important;
}

.mega-menu-box {
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  top: 100% !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14) !important;
  padding: 28px 30px !important;
  margin-top: 4px !important;
  transition: opacity 0.18s cubic-bezier(0.16, 1, 0.3, 1), transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Desktop hover & active state behavior */
@media (min-width: 992px) {
  .nav-item.dropdown.has-mega-menu {
    padding-bottom: 8px;
    margin-bottom: -8px;
  }

  .nav-item.dropdown.has-mega-menu .mega-menu-box {
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
  }

  .nav-item.dropdown.has-mega-menu:hover .mega-menu-box,
  .nav-item.dropdown.has-mega-menu.is-open .mega-menu-box,
  .nav-item.dropdown.has-mega-menu.show .mega-menu-box,
  .mega-menu-box.is-open,
  .mega-menu-box.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  /* Seamless invisible hover bridge covering the vertical gap between navbar links and menu */
  .mega-menu-box::before {
    content: '';
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    height: 40px;
    background: transparent;
    z-index: 1000;
  }
}

/* Mobile & Tablet adjustments */
@media (max-width: 991.98px) {
  .mega-menu-box {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 16px !important;
    background: #f8fafc !important;
    max-height: 480px;
    overflow-y: auto;
  }
}

.mega-col-title {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  margin-bottom: 4px;
}

.mega-menu-item:hover {
  background: #f8f9fd;
  transform: translateX(4px);
}

.mega-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(88, 66, 237, 0.08);
  color: #5842ed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.2s;
}

.mega-menu-item:hover .mega-item-icon {
  background: #5842ed;
  color: #ffffff;
}

.mega-item-content {
  display: flex;
  flex-direction: column;
}

.mega-item-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-item-heading .badge {
  font-size: 0.65rem;
  padding: 2px 6px;
  font-weight: 800;
}

.mega-item-desc {
  font-size: 0.77rem;
  color: #64748b;
  margin-top: 2px;
  line-height: 1.4;
}

/* Mega Menu Promo Card (4th Column) */
.mega-promo-card {
  background: linear-gradient(145deg, #10162f 0%, #201e52 100%);
  border-radius: 12px;
  padding: 22px 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(16, 22, 47, 0.25);
}

.mega-promo-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(206, 253, 65, 0.35) 0%, transparent 70%);
  border-radius: 50%;
}

.mpc-badge {
  background: var(--accent-lime);
  color: #0d0e26;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
}

.mpc-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 6px;
}

.mpc-desc {
  font-size: 0.78rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 16px;
}

.mpc-btn {
  background: #ffffff;
  color: #10162f !important;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none !important;
  transition: all 0.2s;
  width: fit-content;
}

.mpc-btn:hover {
  background: var(--accent-lime);
  transform: translateY(-2px);
}





