/* ============================================================
   GHLExpert — style.css
   Brand Colors: Orange #F7941D | Green #39B54A | Blue #1D6FF7
   ============================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --ghl-orange: #F7941D;
  --ghl-green: #39B54A;
  --ghl-blue: #1D6FF7;
  --ghl-dark: #0D1117;
  --ghl-dark-2: #161B22;
  --ghl-dark-3: #1C2333;
  --ghl-border: rgba(255, 255, 255, 0.08);
  --ghl-muted: #8B949E;
  --ghl-light-bg: #F6F8FA;
  --ghl-white: #FFFFFF;
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-card: 0 4px 24px rgba(29, 111, 247, 0.10);
  --transition: all 0.25s ease;
}

/* ---- Base ---- */
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1A1A2E;
  background: var(--ghl-white);
  line-height: 1.7;
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.ghl-navbar {
  background: rgba(13, 17, 23, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ghl-border);
  padding: 12px 0;
  transition: var(--transition);
}

.ghl-navbar.scrolled {
  padding: 8px 0;
  background: var(--ghl-dark) !important;
}

.ghl-navbar .navbar-brand img {
  height: 38px;
  width: auto;
}

.ghl-navbar .nav-link {
  color: rgba(255, 255, 255, 0.80) !important;
  font-size: 0.925rem;
  font-weight: 500;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
}

.ghl-navbar .nav-link:hover,
.ghl-navbar .nav-link.active {
  color: var(--ghl-white) !important;
  background: rgba(247, 148, 29, 0.12);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--ghl-orange) 0%, #e87d00 100%);
  color: var(--ghl-white) !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  padding: 8px 22px !important;
  border: none;
  transition: var(--transition);
  text-decoration: none !important;
  display: inline-block;
}

.btn-nav-cta:hover {
  background: linear-gradient(135deg, #e87d00 0%, var(--ghl-orange) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(247, 148, 29, 0.35);
  text-decoration: none !important;
  color: var(--ghl-white) !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--ghl-dark);
  padding: 160px 0 100px !important;
  position: relative;
  overflow: hidden;
}

.home-main {
  padding-top: 140px !important;
  padding-bottom: 40px !important;
  text-align: center !important;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(29, 111, 247, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(247, 148, 29, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 148, 29, 0.12);
  border: 1px solid rgba(247, 148, 29, 0.30);
  color: var(--ghl-orange);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--ghl-green);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--ghl-white);
  font-weight: 800;
  margin-bottom: 20px;
}

.hero h1 .highlight-orange {
  color: var(--ghl-orange);
}

.hero h1 .highlight-green {
  color: var(--ghl-green);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  max-width: 820px;
  margin: 0 auto 36px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--ghl-border);
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ghl-white);
  line-height: 1;
}

.hero-stat-number span {
  color: var(--ghl-orange);
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--ghl-muted);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- Buttons ---- */
.btn-primary-ghl {
  background: linear-gradient(135deg, var(--ghl-orange) 0%, #e87d00 100%);
  color: var(--ghl-white);
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}

.btn-primary-ghl:hover {
  background: linear-gradient(135deg, #e87d00 0%, var(--ghl-orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 148, 29, 0.40);
  color: var(--ghl-white);
}

.btn-outline-ghl {
  background: transparent;
  color: var(--ghl-white);
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  border-radius: 10px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}

.btn-outline-ghl:hover {
  border-color: var(--ghl-orange);
  color: var(--ghl-orange);
  background: rgba(247, 148, 29, 0.07);
}

/* ============================================================
   SOCIAL PROOF / TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--ghl-light-bg);
  border-top: 1px solid #E5E9EF;
  border-bottom: 1px solid #E5E9EF;
  padding: 22px 0;
}

.trust-bar .trust-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4A5568;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.trust-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.trust-icon-green {
  background: rgba(57, 181, 74, 0.15);
  color: var(--ghl-green);
}

.trust-icon-orange {
  background: rgba(247, 148, 29, 0.15);
  color: var(--ghl-orange);
}

.trust-icon-blue {
  background: rgba(29, 111, 247, 0.15);
  color: var(--ghl-blue);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-padding {
  padding: 80px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ghl-orange);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #0D1117;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: #4A5568;
  max-width: 620px;
}

/* ============================================================
   WHY US — Feature List
   ============================================================ */
.feature-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--ghl-white);
  border: 1px solid #EEF1F5;
  transition: var(--transition);
}

.feature-list-item:hover {
  border-color: var(--ghl-orange);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.feature-list-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-list-icon-orange {
  background: rgba(247, 148, 29, 0.12);
}

.feature-list-icon-green {
  background: rgba(57, 181, 74, 0.12);
}

.feature-list-icon-blue {
  background: rgba(29, 111, 247, 0.12);
}

.feature-list-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 4px;
}

.feature-list-text {
  font-size: 0.88rem;
  color: #5A6480;
  margin: 0;
}

.kpi-card {
  background: var(--ghl-dark);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ghl-orange), var(--ghl-green), var(--ghl-blue));
}

.kpi-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--ghl-white);
  line-height: 1;
}

.kpi-number sup {
  color: var(--ghl-orange);
  font-size: 1.4rem;
}

.kpi-label {
  font-size: 0.92rem;
  color: var(--ghl-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.section-light {
  background: var(--ghl-light-bg);
}

.service-card {
  background: var(--ghl-white);
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ghl-orange), var(--ghl-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(247, 148, 29, 0.25);
  box-shadow: 0 12px 40px rgba(29, 111, 247, 0.10);
  transform: translateY(-4px);
}

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

.service-icon-wrap {
  width: 75px;
  height: 75px;
  border-radius: 14px;
  margin-bottom: 20px;
  background-image: url('../images/service-icon.png');
  background-repeat: no-repeat;
  display: inline-block;
  flex-shrink: 0;
}

.service-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: #5A6480;
  margin: 0;
}

/* ============================================================
   WHO WE HELP CARDS
   ============================================================ */
.audience-card {
  background: var(--ghl-white);
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
}

.audience-card:hover {
  border-color: rgba(57, 181, 74, 0.30);
  box-shadow: 0 8px 32px rgba(57, 181, 74, 0.10);
  transform: translateY(-3px);
}

.audience-card .service-icon-wrap {
  margin-bottom: 18px;
}

.audience-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 10px;
}

.audience-card p {
  font-size: 0.875rem;
  color: #5A6480;
  margin-bottom: 10px;
}

/* ============================================================
   MID CONTENT SECTION (dark)
   ============================================================ */
.mid-section {
  background: var(--ghl-dark);
  color: var(--ghl-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.mid-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(29, 111, 247, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.mid-section .section-title {
  color: var(--ghl-white);
}

.mid-section .section-desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 760px;
  margin: 0 auto;
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.case-card {
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  background: var(--ghl-white);
  transition: var(--transition);
}

.case-card:hover {
  border-color: rgba(29, 111, 247, 0.25);
  box-shadow: 0 12px 40px rgba(29, 111, 247, 0.12);
  transform: translateY(-4px);
}

.case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.case-card-body {
  padding: 24px 24px 28px;
}

.case-card-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 10px;
}

.case-card-body p {
  font-size: 0.875rem;
  color: #5A6480;
  margin-bottom: 18px;
}

.btn-link-ghl {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ghl-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-link-ghl:hover {
  color: var(--ghl-orange);
  gap: 10px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--ghl-white);
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  font-weight: 900;
  color: var(--ghl-orange);
  opacity: 0.12;
  position: absolute;
  bottom: 16px;
  right: 20px;
  line-height: 1;
  z-index: 0;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(247, 148, 29, 0.20);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--ghl-orange);
  font-size: 1rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: #4A5568;
  font-style: italic;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ghl-white);
  flex-shrink: 0;
}

.avatar-orange {
  background: linear-gradient(135deg, var(--ghl-orange), #e87d00);
}

.avatar-green {
  background: linear-gradient(135deg, var(--ghl-green), #2d9e3c);
}

.avatar-blue {
  background: linear-gradient(135deg, var(--ghl-blue), #1558d6);
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A1A2E;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--ghl-muted);
  margin: 0;
  line-height: 1.4;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.ghl-accordion .accordion-item {
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-md) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.ghl-accordion .accordion-button {
  font-weight: 600;
  font-size: 0.97rem;
  color: #1A1A2E;
  background: var(--ghl-white);
  padding: 18px 20px;
  box-shadow: none !important;
}

.ghl-accordion .accordion-button:not(.collapsed) {
  color: var(--ghl-orange);
  background: rgba(247, 148, 29, 0.04);
}

.ghl-accordion .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23F7941D' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5' stroke='%23F7941D' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

.ghl-accordion .accordion-body {
  font-size: 0.92rem;
  color: #5A6480;
  padding: 2px 20px 18px;
  background: var(--ghl-white);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #0D1117 0%, #1A1A2E 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(247, 148, 29, 0.16) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 0% 50%, rgba(29, 111, 247, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--ghl-white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--ghl-orange) 0%, #e87d00 100%);
  color: var(--ghl-white);
  border: none;
  border-radius: 10px;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(247, 148, 29, 0.45);
  color: var(--ghl-white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.ghl-footer {
  background: var(--ghl-dark);
  color: rgba(255, 255, 255, 0.45);
  padding: 40px 0;
  font-size: 0.85rem;
  border-top: 1px solid var(--ghl-border);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-links a.active {
  color: var(--ghl-white);
}

@media (max-width: 767.98px) {
  .footer-links {
    margin-top: 15px;
  }

  .footer-links a {
    margin: 0 10px 5px;
    display: inline-block;
    font-size: 0.8rem;
  }
}

/* ============================================================
   SERVICE ICONS (sprite — unchanged sizes)
   ============================================================ */
.service-icon-wrap {
  width: 75px;
  height: 75px;
  border-radius: 14px;
  margin-bottom: 20px;
  background-image: url('../images/service-icon.png');
  background-repeat: no-repeat;
  display: inline-block;
  flex-shrink: 0;
}

.icon-api-integration {
  width: 75px;
  height: 75px;
  background-position: -0px -0px;
}

.icon-coach-consultant {
  width: 75px;
  height: 75px;
  background-position: -85px -0px;
}

.icon-crm-setup {
  width: 75px;
  height: 75px;
  background-position: -170px -0px;
}

.icon-ecommerce-online {
  width: 75px;
  height: 75px;
  background-position: -0px -85px;
}

.icon-funnel-development {
  width: 75px;
  height: 75px;
  background-position: -85px -85px;
}

.icon-local-business {
  width: 75px;
  height: 75px;
  background-position: -170px -85px;
}

.icon-marketing-agency {
  width: 75px;
  height: 75px;
  background-position: -0px -170px;
}

.icon-marketing-automation {
  width: 75px;
  height: 75px;
  background-position: -85px -170px;
}

.icon-ongoing-support {
  width: 75px;
  height: 75px;
  background-position: -170px -170px;
}

.icon-sass-mode {
  width: 75px;
  height: 75px;
  background-position: -0px -255px;
}

.icon-startup-business {
  width: 75px;
  height: 75px;
  background-position: -85px -255px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.color-orange {
  color: var(--ghl-orange);
}

.color-green {
  color: var(--ghl-green);
}

.color-blue {
  color: var(--ghl-blue);
}

@media (max-width: 767.98px) {
  .hero {
    padding: 130px 0 60px !important;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .section-padding {
    padding: 48px 0;
  }

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

  .hero .lead {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .trust-bar .trust-item {
    font-size: 0.78rem;
    justify-content: flex-start !important;
  }

  .trust-bar .col {
    text-align: left !important;
  }

  .ghl-navbar .navbar-brand img {
    height: 32px;
  }

  .btn-nav-cta {
    padding: 6px 16px !important;
    font-size: 0.82rem !important;
    margin-top: 10px;
    display: inline-block;
  }
}

/* ============================================================
   SHARED COMPONENTS – replaces all page-level inline styles
   ============================================================ */

/* Stat Mini (about intro) */
.stat-mini-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ghl-orange);
  line-height: 1;
}

.stat-mini-num span {
  font-size: 1rem;
  color: var(--ghl-green);
}

.stat-mini-lbl {
  font-size: 0.8rem;
  color: var(--ghl-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Card Icon */
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.card-icon-orange {
  background: rgba(247, 148, 29, 0.12);
}

.card-icon-green {
  background: rgba(57, 181, 74, 0.12);
}

.card-icon-blue {
  background: rgba(29, 111, 247, 0.12);
}

/* Service Card inner typography */
.service-card h3,
.service-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: #5A6480;
  margin: 0;
}

/* Rounded image with shadow */
.img-rounded {
  border-radius: var(--radius-lg);
  width: 100%;
}

/* CTA inner z-index */
.cta-inner {
  position: relative;
  z-index: 1;
}

/* Footer logo */
.footer-logo {
  height: 30px;
  opacity: 0.8;
  margin-bottom: 10px;
  display: block;
}

/* ============================================================
   BREADCRUMB WRAP
   ============================================================ */
.breadcrumb-wrap {
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 2px;
}

.breadcrumb-wrap a {
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}

.breadcrumb-wrap a:hover {
  color: var(--ghl-orange);
}

.bc-sep {
  color: rgba(255, 255, 255, 0.30);
  margin: 0 6px;
  font-size: 0.82rem;
}

.bc-current {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================================================
   DELIVERABLES CARD
   ============================================================ */
.deliverables-card {
  background: var(--ghl-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.deliverables-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ghl-orange), var(--ghl-green), var(--ghl-blue));
}

.deliverables-card h2 {
  color: var(--ghl-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ghl-border);
}

.deliverable-item:last-child {
  border-bottom: none;
}

.deliverable-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(57, 181, 74, 0.15);
  color: var(--ghl-green);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.deliverable-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.deliverable-text strong {
  color: var(--ghl-white);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-step {
  background: var(--ghl-white);
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  height: 100%;
  text-align: center;
  transition: var(--transition);
}

.process-step:hover {
  border-color: rgba(247, 148, 29, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.process-step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ghl-orange), #e87d00);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process-step h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.875rem;
  color: #5A6480;
  margin: 0;
}

/* ============================================================
   ADVANTAGE CARDS
   ============================================================ */
.advantage-card {
  background: var(--ghl-white);
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  height: 100%;
  text-align: center;
  transition: var(--transition);
}

.advantage-card:hover {
  border-color: rgba(247, 148, 29, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.advantage-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.advantage-card h5 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
}

.advantage-card p {
  font-size: 0.875rem;
  color: #5A6480;
  margin: 0;
}

/* ============================================================
   SERVICE DETAIL CARDS (service.html)
   ============================================================ */
.service-detail-card {
  background: var(--ghl-white);
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-detail-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ghl-orange), var(--ghl-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-detail-card:hover {
  border-color: rgba(247, 148, 29, 0.25);
  box-shadow: 0 12px 40px rgba(29, 111, 247, 0.10);
  transform: translateY(-4px);
}

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

.service-detail-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 10px;
}

.service-detail-card p {
  font-size: 0.9rem;
  color: #5A6480;
  margin-bottom: 16px;
}

.btn-service-detail {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ghl-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-service-detail:hover {
  color: var(--ghl-orange);
  gap: 10px;
}

/* ============================================================
   MID CTA BOX
   ============================================================ */
.mid-cta-box {
  background: var(--ghl-dark);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mid-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(247, 148, 29, 0.16) 0%, transparent 65%), radial-gradient(ellipse 40% 60% at 0% 50%, rgba(29, 111, 247, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.mid-cta-box h3,
.mid-cta-box h2 {
  color: var(--ghl-white);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.mid-cta-box p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.mid-cta-box .cta-btns {
  position: relative;
  z-index: 1;
}

.mid-cta-note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  margin-top: 14px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--ghl-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ghl-orange), var(--ghl-green), var(--ghl-blue));
}

.contact-info-card h3 {
  color: var(--ghl-white);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.contact-detail {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--ghl-border);
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ghl-orange);
  margin-bottom: 4px;
}

.contact-detail-value {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form-card {
  background: var(--ghl-white);
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.92rem;
  color: #1A1A2E;
  transition: border-color 0.2s;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--ghl-orange);
  box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.12);
}

.contact-form-card>p {
  font-size: 0.92rem;
  color: #5A6480;
  margin-bottom: 28px;
}

.btn-form-submit {
  background: linear-gradient(135deg, var(--ghl-orange) 0%, #e87d00 100%);
  color: var(--ghl-white);
  border: none;
  border-radius: 10px;
  padding: 13px 36px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 148, 29, 0.40);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* ============================================================
   CASE STUDY PAGES
   ============================================================ */
.case-study-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 16px;
}

.case-study-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #1A1A2E;
}

.case-study-content h3.cs-solution {
  color: var(--ghl-orange);
}

.case-study-content h3.cs-results {
  color: var(--ghl-green);
}

.case-study-content p {
  font-size: 0.95rem;
  color: #4A5568;
  line-height: 1.8;
}

.case-study-content ul {
  padding-left: 0;
  list-style: none;
}

.case-study-content ul li {
  font-size: 0.92rem;
  color: #4A5568;
  padding: 10px 0;
  border-bottom: 1px solid #EEF1F5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.case-study-content ul li:last-child {
  border-bottom: none;
}

.case-study-content ul li::before {
  content: "→";
  color: var(--ghl-orange);
  font-weight: 700;
  flex-shrink: 0;
}

.project-sidebar {
  background: var(--ghl-dark);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: sticky;
  top: 100px;
  overflow: hidden;
}

.project-sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ghl-orange), var(--ghl-green));
}

.project-sidebar h4,
.project-sidebar h2 {
  color: var(--ghl-white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.sidebar-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--ghl-border);
}

.sidebar-item:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}

.sidebar-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ghl-orange);
  margin-bottom: 2px;
}

.sidebar-value {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.sidebar-value a {
  color: var(--ghl-orange);
  text-decoration: none;
}

.stat-highlight {
  background: rgba(57, 181, 74, 0.12);
  border: 1px solid rgba(57, 181, 74, 0.25);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 8px;
  text-align: center;
}

.stat-highlight .stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ghl-green);
  line-height: 1;
}

.stat-highlight .stat-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* ============================================================
   HIRE DEVELOPER PAGE
   ============================================================ */
.capability-card {
  background: var(--ghl-white);
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.capability-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ghl-orange), var(--ghl-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.capability-card:hover {
  border-color: rgba(247, 148, 29, 0.25);
  box-shadow: 0 8px 28px rgba(29, 111, 247, 0.09);
  transform: translateY(-3px);
}

.capability-card:hover::after {
  transform: scaleX(1);
}

.capability-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}

.capability-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
}

.capability-card p {
  font-size: 0.85rem;
  color: #5A6480;
  margin: 0;
}

.why-card {
  background: var(--ghl-white);
  border: 1px solid #E8ECF2;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(247, 148, 29, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: #5A6480;
  margin: 0;
}