/* ==========================================================================
   Goha Agency Theme - Softinays Inspired Style System (CRISP LIGHT THEME)
   Logo-Matched Brand Palette: Deep Logo Navy (#00053E), Royal Navy (#000E6E / #0022B8)
   Width Standard: 92% Full Container Width
   Strict SVG & Icon Size Lockdown
   ========================================================================== */

/* Local Self-Hosted Font Definition for Alexandria */
@font-face {
  font-family: 'Alexandria';
  src: url('../fonts/Alexandria-Variable.ttf') format('truetype-variations'),
    url('../fonts/Alexandria-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Custom Brand Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0B0F19;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00053E 0%, #2563EB 100%);
  border-radius: 10px;
  border: 2px solid #0B0F19;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #2563EB 0%, #38BDF8 100%);
}

:root {
  /* Crisp Light Brand Theme Colors Matched Exactly to Logo */
  --bg-dark: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F1F5F9;
  --bg-glass: rgba(255, 255, 255, 0.94);

  --brand-navy: #00053E;
  --blue-primary: #000E6E;
  --blue-secondary: #0022B8;
  --blue-light: #2563EB;
  --cyan-accent: #0284C7;

  --border-light: #E2E8F0;
  --border-blue: rgba(0, 14, 110, 0.18);
  --border-blue-glow: rgba(0, 14, 110, 0.35);

  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-dark: #020617;

  --shadow-main: 0 15px 35px -5px rgba(0, 5, 62, 0.08);
  --shadow-blue: 0 10px 25px rgba(0, 14, 110, 0.25);
  --shadow-card: 0 8px 24px -4px rgba(15, 23, 42, 0.06);

  /* Typography - Alexandria Self-Hosted Primary Font */
  --font-alexandria: 'Alexandria', system-ui, -apple-system, sans-serif;
  --font-current: var(--font-alexandria);

  /* Transitions & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.rtl {
  --font-current: var(--font-alexandria);
}

/* --------------------------------------------------------------------------
   2. Reset, Container & Strict SVG Sizing
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-current);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--blue-secondary);
}

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

/* 92% Full Responsive Screen Container */
.container {
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* Global Strict SVG Rules */
svg {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Buttons & Strict Icon Sizing inside Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-current);
  white-space: nowrap;
}

.btn svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-navy), var(--blue-primary));
  color: #FFFFFF;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 14, 110, 0.4);
  color: #FFFFFF;
}

.btn-outline {
  background: #FFFFFF;
  color: var(--brand-navy);
  border: 1.5px solid var(--border-blue);
  box-shadow: var(--shadow-card);
}

.btn-outline:hover {
  background: rgba(0, 14, 110, 0.05);
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-sm svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
}

/* --------------------------------------------------------------------------
   3. Softinays Floating Support Widget & Scroll Top
   -------------------------------------------------------------------------- */

/* Executive Glassmorphic Frontend Toast Notification */
.goha-frontend-toast {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 999999;
  width: 400px;
  max-width: 90vw;
  background: rgba(0, 5, 62, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 16px;
  padding: 18px 20px;
  color: #FFFFFF;
  box-shadow: 0 20px 40px rgba(0, 5, 62, 0.4), 0 0 20px rgba(56, 189, 248, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  transform: translateY(-30px) scale(0.92);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.goha-frontend-toast.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.goha-toast-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38BDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.goha-frontend-toast.type-error .goha-toast-icon-wrap {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #EF4444;
}

.goha-toast-icon-wrap svg {
  width: 22px !important;
  height: 22px !important;
  fill: currentColor;
}

.goha-toast-body {
  flex: 1;
}

.goha-toast-heading {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 4px 0;
}

.goha-toast-text {
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.5;
  margin: 0;
}

.goha-toast-dismiss {
  background: transparent;
  border: none;
  color: #94A3B8;
  padding: 4px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.goha-toast-dismiss:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.goha-toast-dismiss svg {
  width: 14px !important;
  height: 14px !important;
  fill: currentColor;
}

.goha-toast-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #38BDF8, #2563EB);
  transform-origin: left;
  transform: scaleX(0);
}

.goha-frontend-toast.active .goha-toast-progress-bar {
  animation: gohaToastProgress 3.5s linear forwards;
}

.goha-frontend-toast:hover .goha-toast-progress-bar {
  animation-play-state: paused !important;
}

@keyframes gohaToastProgress {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

.goha-support-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
}

.goha-support-btn {
  background: linear-gradient(135deg, var(--brand-navy), var(--blue-primary));
  color: #FFFFFF;
  border: none;
  padding: 12px 22px;
  border-radius: 50px;
  font-family: var(--font-current);
  font-size: 0.925rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-blue);
  transition: var(--transition);
}

.goha-support-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 14, 110, 0.4);
}

.goha-support-btn svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  fill: currentColor;
}

.goha-support-popup {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 330px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 5, 62, 0.12);
  display: none;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.goha-support-popup.active {
  display: block;
}

.goha-support-popup-header {
  background: linear-gradient(135deg, var(--brand-navy), var(--blue-primary));
  padding: 20px;
  color: #FFFFFF;
}

.goha-support-popup-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
}

.goha-support-popup-subtitle {
  font-size: 0.825rem;
  color: #CBD5E1;
  margin-top: 4px;
}

.goha-support-popup-body {
  padding: 16px;
}

.goha-support-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  margin-bottom: 10px;
  transition: var(--transition);
  text-decoration: none;
}

.goha-support-option:hover {
  background: #EFF6FF;
  border-color: var(--blue-light);
}

.goha-support-option-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.goha-avatar-ticket {
  background: var(--blue-primary);
}

.goha-avatar-whatsapp {
  background: #25D366;
}

.goha-support-option-avatar svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  fill: currentColor;
}

.goha-support-option-content {
  flex: 1;
}

.goha-support-option-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
}

.goha-support-option-desc {
  display: block;
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* Scroll Top Button with Side Percentage Pill */
.goha-scroll-top-wrapper {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.goha-scroll-top-wrapper.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.goha-scroll-top {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00053E 0%, #2563EB 100%);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(0, 5, 62, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.goha-scroll-top:hover {
  background: #2563EB;
  border-color: #38BDF8;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.4);
}

.goha-scroll-top svg {
  width: 25px !important;
  height: 25px !important;
  fill: currentColor;
}

.goha-scroll-percent-pill {
  background: #00053E;
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.775rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(0, 5, 62, 0.2);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   4. Softinays Top Bar & Main Header
   -------------------------------------------------------------------------- */
.goha-top-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.goha-top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.goha-top-left,
.goha-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.goha-promo-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.goha-hot-badge {
  background: #EFF6FF;
  color: var(--blue-primary);
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  border: 1px solid var(--border-blue);
}

.goha-top-contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.goha-top-contact-item svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  fill: var(--blue-primary);
}

.goha-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.goha-social-link {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.goha-social-link:hover {
  color: var(--blue-primary);
}

.goha-social-link svg {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  fill: currentColor;
}

.goha-top-lang-btn {
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.775rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-current);
}

.goha-top-lang-btn svg {
  width: 13px !important;
  height: 13px !important;
  max-width: 13px !important;
  max-height: 13px !important;
  fill: currentColor;
}

/* Main Header */
.goha-main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.goha-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.goha-logo img {
  height: 42px;
  width: auto;
}

.goha-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -0.5px;
}

.goha-logo-text span {
  color: var(--blue-primary);
}

/* Nav & Megamenu Button Alignment Fix */
.goha-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.goha-megamenu-toggle {
  background: #00053E;
  color: #FFFFFF;
  border: 1px solid #00053E;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-current);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0, 5, 62, 0.15);
}

.goha-megamenu-toggle.icon-only {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  justify-content: center;
  background: #00053E;
  border: 1px solid rgba(0, 5, 62, 0.1);
}

.goha-megamenu-toggle.icon-only:hover {
  background: #2563EB;
  border-color: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.goha-megamenu-toggle:hover {
  background: #001275;
  border-color: #001275;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 5, 62, 0.25);
}

.goha-megamenu-toggle svg,
.goha-megamenu-toggle .goha-megamenu-icon svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  fill: #38BDF8 !important;
}

.goha-nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.goha-nav-link {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.925rem;
  position: relative;
  padding: 6px 0;
}

.goha-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--blue-primary);
  transition: var(--transition);
}

.goha-nav-link:hover::after,
.goha-nav-link.active::after {
  width: 100%;
}

.goha-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.goha-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.goha-btn-quote {
  background: linear-gradient(135deg, var(--brand-navy), var(--blue-primary));
  color: #FFFFFF;
  box-shadow: var(--shadow-blue);
}

.goha-btn-quote svg {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  fill: currentColor;
}

.goha-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-navy);
  cursor: pointer;
  padding: 6px;
}

.goha-mobile-toggle svg {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  fill: currentColor;
}

/* Megamenu Panel Dropdown */
.goha-megamenu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0, 5, 62, 0.08);
  display: none;
  padding: 40px 0 30px 0;
  animation: fadeIn 0.3s ease;
}

.goha-megamenu-panel.active {
  display: block;
}

.goha-megamenu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.goha-megamenu-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.goha-megamenu-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.goha-megamenu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
}

.goha-megamenu-item:hover {
  background: #F8FAFC;
}

.goha-megamenu-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.goha-megamenu-icon svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  fill: currentColor;
}

.icon-blue {
  background: var(--blue-primary);
}

.icon-purple {
  background: #8B5CF6;
}

.icon-cyan {
  background: #0284C7;
}

.icon-orange {
  background: #F97316;
}

.icon-red {
  background: #EF4444;
}

.icon-green {
  background: #10B981;
}

.icon-yellow {
  background: #F59E0B;
}

.icon-teal {
  background: #14B8A6;
}

.goha-megamenu-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.goha-megamenu-info p {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.goha-megamenu-cta-bar {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.goha-megamenu-cta-item {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.goha-megamenu-cta-item svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  fill: var(--blue-primary);
}

.goha-megamenu-cta-item h5 {
  font-size: 0.9rem;
  font-weight: 700;
}

.goha-megamenu-cta-item p {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.goha-megamenu-btn {
  margin-left: auto;
  background: var(--blue-primary);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.btn-whatsapp {
  background: #25D366;
}

/* --------------------------------------------------------------------------
   5. Softinays Hero Section
   -------------------------------------------------------------------------- */
.goha-hero-section {
  padding: 80px 0 60px 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 14, 110, 0.05) 0%, rgba(248, 250, 252, 1) 75%);
  position: relative;
  overflow: hidden;
}

.goha-hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.goha-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #00053E;
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 5, 62, 0.06);
}

.goha-hero-badge::before {
  content: "⚡";
  font-size: 0.95rem;
}

.goha-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: var(--brand-navy);
}

.goha-rotating-word {
  color: var(--blue-primary);
  background: linear-gradient(135deg, var(--brand-navy), var(--blue-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.goha-hero-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Hero Reviews Avatar Stack */
.goha-hero-reviews {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.goha-reviews-avatars {
  display: flex;
  align-items: center;
}

.goha-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-right: -12px;
  overflow: hidden;
  position: relative;
  background: var(--brand-navy);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.goha-avatar:first-child {
  margin-right: 0;
}

.goha-users-count {
  display: flex;
  align-items: center;
  gap: 10px;
}

.goha-users-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1;
}

.goha-users-label {
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--text-muted);
  font-weight: 700;
}

.goha-users-label .line-1 {
  display: block;
  color: var(--text-main);
}

/* Hero Tech Icons & Strict Sizing */
.goha-hero-tech-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.goha-tech-icon-small {
  width: 38px;
  height: 38px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

.goha-tech-icon-small svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  fill: currentColor;
}

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

/* Right Column Hero Featured Card */
.goha-product-card-hero {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-main);
  position: relative;
}

.goha-card-badge-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.badge-hot {
  background: #FEF2F2;
  color: #EF4444;
  border: 1px solid #FECACA;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-discount {
  background: #ECFDF5;
  color: #10B981;
  border: 1px solid #A7F3D0;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.goha-card-image-box {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.goha-card-image-box img {
  max-height: 170px;
  object-fit: contain;
}

.goha-card-tech-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tech-tag {
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--brand-navy);
  font-weight: 600;
}

.goha-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--brand-navy);
}

.goha-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.goha-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-right: 8px;
}

.new-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-primary);
}

.stars {
  color: #F59E0B;
}

.goha-card-footer-actions {
  display: flex;
  gap: 12px;
}

/* Infinite Marquee Track */
.goha-tech-marquee-wrapper {
  margin-top: 60px;
  padding: 16px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  white-space: nowrap;
}

.goha-marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.marquee-item svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  fill: var(--blue-primary);
}

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

  100% {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   6. Featured Services Cards Grid
   -------------------------------------------------------------------------- */
.goha-featured-section {
  padding: 100px 0;
}

.goha-section-header-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}

.goha-section-header-box.text-center {
  flex-direction: column;
  text-align: center;
}

.goha-header-icon-badge {
  width: 54px;
  height: 54px;
  background: #EFF6FF;
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  flex-shrink: 0;
}

.goha-header-icon-badge svg {
  width: 26px !important;
  height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  fill: currentColor;
}

.goha-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--brand-navy);
}

.goha-section-title span {
  color: var(--blue-primary);
}

.goha-section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.goha-service-card-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.goha-service-card-item:hover {
  border-color: var(--blue-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-main);
}

.card-icon-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  background: #EFF6FF;
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  flex-shrink: 0;
}

.icon-wrapper svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  fill: currentColor;
}

.service-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-primary);
  background: #EFF6FF;
  padding: 4px 12px;
  border-radius: 50px;
}

.goha-service-card-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--brand-navy);
}

.goha-service-card-item p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-tech-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.card-tech-pills span {
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.card-link-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--blue-primary);
}

.card-link-btn svg {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  fill: currentColor;
  transition: var(--transition);
}

.card-link-btn:hover svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   7. Features Grid & Stats
   -------------------------------------------------------------------------- */
.goha-features-section {
  padding: 100px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.goha-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.goha-feature-box {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: var(--transition);
}

.goha-feature-box:hover {
  border-color: var(--blue-primary);
  background: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-icon-box {
  width: 46px;
  height: 46px;
  background: #EFF6FF;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.feature-icon-box svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  fill: currentColor;
}

.goha-feature-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brand-navy);
}

.goha-feature-box p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Stats Section */
.goha-stats-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.goha-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.goha-stat-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-number {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   8. Portfolio Section
   -------------------------------------------------------------------------- */
.goha-portfolio-section {
  padding: 100px 0;
  background: #FFFFFF;
}

.goha-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.portfolio-card-item {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.portfolio-card-item:hover {
  border-color: var(--blue-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-main);
}

.portfolio-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--brand-navy), var(--blue-primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-placeholder {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.05rem;
}

.portfolio-info {
  padding: 24px;
}

.cat-tag {
  font-size: 0.75rem;
  color: var(--blue-primary);
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 6px;
  color: var(--brand-navy);
}

/* --------------------------------------------------------------------------
   9. Contact Form Section
   -------------------------------------------------------------------------- */
.goha-contact-section {
  padding: 100px 0;
}

.goha-contact-card {
  max-width: 820px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-main);
}

.goha-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--brand-navy);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.925rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--blue-primary);
  background: #FFFFFF;
  box-shadow: 0 0 12px rgba(0, 14, 110, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-response-message {
  margin-top: 20px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  display: none;
  font-size: 0.925rem;
  font-weight: 600;
}

.form-response-message.success {
  display: block;
  background: #ECFDF5;
  border: 1px solid #10B981;
  color: #10B981;
}

.form-response-message.error {
  display: block;
  background: #FEF2F2;
  border: 1px solid #EF4444;
  color: #EF4444;
}

/* --------------------------------------------------------------------------
   10. Footer
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   10. Softinays Pre-Footer Newsletter CTA & Masterpiece Footer
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   10. Softinays Pre-Footer Newsletter CTA & Masterpiece Footer
   -------------------------------------------------------------------------- */
.goha-newsletter-cta-section {
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 10;
  margin-bottom: -65px;
}

.goha-newsletter-card {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  border-radius: 20px;
  padding: 44px 52px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.goha-newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #38BDF8;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.goha-newsletter-badge svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor;
}

.goha-newsletter-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 12px;
}

.goha-newsletter-title span {
  color: #38BDF8;
}

.goha-newsletter-subtitle {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.goha-newsletter-input-wrap {
  display: flex;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.goha-newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-size: 0.9rem;
  color: #0F172A;
  font-family: inherit;
}

.goha-newsletter-input:focus {
  outline: none;
}

.goha-newsletter-submit {
  background: #00053E;
  color: #FFFFFF;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}

.goha-newsletter-submit:hover {
  background: #001275;
  transform: translateY(-2px);
}

.goha-newsletter-submit svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor;
}

/* Masterpiece Footer */
.site-footer {
  background: #0F172A;
  background-image: radial-gradient(circle at 50% 0%, #1E293B, #0F172A 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 105px 0 35px 0;
  color: #CBD5E1;
  position: relative;
  z-index: 1;
}

/* Top Row: Brand & Social Tiles */
.goha-footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 50px;
}

.goha-footer-brand-box {
  max-width: 480px;
}

.goha-footer-logo img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
}

.goha-footer-bio {
  color: #94A3B8;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: 14px;
  font-weight: 400;
}

.goha-footer-social-tiles {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.goha-social-tile {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.goha-social-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.goha-social-tile.tile-instagram:hover {
  background: #E1306C;
  border-color: #E1306C;
  color: #FFFFFF;
}

.goha-social-tile.tile-twitter:hover {
  background: #1DA1F2;
  border-color: #1DA1F2;
  color: #FFFFFF;
}

.goha-social-tile.tile-linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #FFFFFF;
}

.goha-social-tile.tile-youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #FFFFFF;
}

.goha-social-tile.tile-github:hover {
  background: #333333;
  border-color: #555555;
  color: #FFFFFF;
}

.goha-social-tile.tile-facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #FFFFFF;
}

.goha-social-tile.tile-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
}

.goha-social-tile svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor;
}

/* Footer Main 4-Column Grid */
.goha-footer-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr 1.1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.goha-footer-heading {
  font-size: 0.85rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Showcase Partner Card */
.goha-footer-partner-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
}

.partner-card-header.vertical-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.partner-card-logo {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.partner-title-box h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}

.partner-title-box span {
  font-size: 0.775rem;
  color: #38BDF8;
  font-weight: 700;
}

.partner-card-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.55;
  margin-bottom: 18px;
}

.goha-partner-btn {
  width: 100%;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-weight: 700;
}

.goha-partner-btn:hover {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
}

/* Policy Pills List */
.goha-policy-pill-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.goha-policy-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 11px 18px;
  border-radius: 10px;
  color: #CBD5E1;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.goha-policy-pill:hover {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
  transform: translateX(4px);
}

.goha-policy-pill .pill-icon svg {
  width: 14px !important;
  height: 14px !important;
  fill: #38BDF8;
}

.goha-policy-pill:hover .pill-icon svg {
  fill: #FFFFFF;
}

/* Tech Stack List */
.goha-tech-stack-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.goha-tech-stack-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tech-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-icon-box svg {
  width: 18px !important;
  height: 18px !important;
  fill: #FFFFFF;
}

.tech-icon-box.icon-purple {
  background: rgba(168, 85, 247, 0.2);
  color: #C084FC;
}

.tech-icon-box.icon-blue {
  background: rgba(59, 130, 246, 0.2);
  color: #60A5FA;
}

.tech-icon-box.icon-cyan {
  background: rgba(6, 182, 212, 0.2);
  color: #22D3EE;
}

.tech-icon-box.icon-green {
  background: rgba(34, 197, 94, 0.2);
  color: #4ADE80;
}

.tech-icon-box.icon-pink {
  background: rgba(236, 72, 153, 0.2);
  color: #F472B6;
}

.tech-icon-box.icon-yellow {
  background: rgba(234, 179, 8, 0.2);
  color: #FACC15;
}

.tech-icon-box.icon-orange {
  background: rgba(249, 115, 22, 0.2);
  color: #FB923C;
}

.goha-tech-stack-item h6 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 2px 0;
}

.goha-tech-stack-item p {
  font-size: 0.775rem;
  color: #94A3B8;
  margin: 0;
}

/* Footer Bottom Bar */
.goha-footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.goha-footer-copyright-box {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.goha-copyright {
  font-size: 0.85rem;
  color: #94A3B8;
  margin: 0;
}

.goha-copyright strong {
  color: #FFFFFF;
}

.goha-credit-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  color: #CBD5E1;
}

.goha-credit-pill svg {
  fill: #38BDF8;
}

.goha-credit-pill strong {
  color: #38BDF8;
}

.goha-footer-bottom-pills {
  display: flex;
  gap: 12px;
}

.goha-bottom-pill,
.goha-footer-menu-list a {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: #CBD5E1;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}

.goha-bottom-pill:hover,
.goha-footer-menu-list a:hover {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   11. Responsive Design Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .container {
    width: 95%;
  }

  .goha-hero-content {
    grid-template-columns: 1fr;
  }

  .goha-hero-title {
    font-size: 2.75rem;
  }

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

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

  .goha-megamenu-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 0 16px;
  }

  .goha-top-bar {
    display: none;
  }

  .goha-nav-list {
    display: none;
  }

  .goha-megamenu-toggle {
    display: none;
  }

  .goha-mobile-toggle {
    display: block;
  }

  .goha-hero-title {
    font-size: 2.25rem;
  }

  .goha-services-cards-grid,
  .goha-portfolio-grid,
  .goha-features-grid,
  .goha-stats-grid {
    grid-template-columns: 1fr;
  }

  .goha-contact-form {
    grid-template-columns: 1fr;
  }

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

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

/* ==========================================================================
   Goha Executive Luxury Services Showcase Section
   ========================================================================== */
.goha-featured-section {
  padding: 95px 0;
  background: #F8FAFC;
}

/* Header Card Bar */
.goha-services-header-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  box-shadow: 0 6px 24px rgba(0, 5, 62, 0.04);
}

.header-info-box {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-icon-badge {
  width: 54px;
  height: 54px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563EB;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.1);
}

.header-icon-badge svg {
  width: 26px !important;
  height: 26px !important;
  fill: currentColor;
}

.services-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #00053E;
  margin: 0;
  line-height: 1.25;
}

.services-subtitle {
  font-size: 0.95rem;
  color: #64748B;
  margin: 4px 0 0 0;
}

/* Slider Nav Arrows */
.header-nav-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00053E;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.svc-nav-btn:hover {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
  transform: translateY(-2px);
}

.svc-nav-btn svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor;
}

/* Slider Track Container with 60fps Buttery Smooth Transform Transition */
.goha-services-slider-container {
  overflow: hidden;
  position: relative;
  margin: 0 -12px;
  padding: 12px;
}

.goha-services-track {
  display: flex;
  gap: 26px;
  width: max-content;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Service Card Luxury Item */
.goha-svc-card {
  flex: 0 0 380px;
  max-width: 380px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 34px 28px 28px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 5, 62, 0.04);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.goha-svc-card:hover {
  border-color: #2563EB;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 5, 62, 0.1);
}

.svc-card-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 0 20px 0 100%;
}

.svc-card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.svc-icon-badge {
  width: 56px;
  height: 56px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563EB;
  transition: all 0.3s ease;
}

.goha-svc-card:hover .svc-icon-badge {
  background: linear-gradient(135deg, #00053E, #2563EB);
  border-color: #2563EB;
  color: #FFFFFF;
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.svc-icon-badge svg {
  width: 26px !important;
  height: 26px !important;
  fill: currentColor;
}

.svc-floating-badge {
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.775rem;
  font-weight: 700;
  color: #2563EB;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.svc-floating-badge svg {
  width: 13px !important;
  height: 13px !important;
  fill: #2563EB;
}

.svc-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #00053E;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.svc-desc {
  font-size: 0.925rem;
  color: #64748B;
  line-height: 1.65;
  margin: 0 0 18px 0;
  flex-grow: 1;
}

/* Tech Stack Pills */
.svc-tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.svc-tech-pills span {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
}

/* Checklist Items */
.svc-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.svc-checklist .check-icon {
  width: 22px;
  height: 22px;
  background: #EFF6FF;
  border-radius: 7px;
  color: #2563EB;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Card Action Buttons */
.svc-card-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
  margin-top: auto;
}

.svc-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 16px;
  border: 1.5px solid #CBD5E1;
  background: #FFFFFF;
  border-radius: 12px;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.svc-btn-outline:hover {
  background: #F8FAFC;
  border-color: #00053E;
  color: #00053E;
}

.svc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 16px;
  background: linear-gradient(135deg, #00053E 0%, #2563EB 100%);
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
  transition: all 0.25s ease;
}

.svc-btn-primary:hover {
  background: linear-gradient(135deg, #001275 0%, #1D4ED8 100%);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.svc-btn-outline svg,
.svc-btn-primary svg {
  width: 14px !important;
  height: 14px !important;
  fill: currentColor;
}

/* ==========================================================================
   Unique Goha Pre-built Enterprise Ecosystems Hub
   ========================================================================== */
.goha-launch-section {
  padding: 95px 0;
  background: #F8FAFC;
  position: relative;
}

.goha-launch-header {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  box-shadow: 0 6px 24px rgba(0, 5, 62, 0.04);
}

.launch-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.launch-icon-badge {
  width: 58px;
  height: 58px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563EB;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.1);
}

.launch-icon-badge svg {
  width: 28px !important;
  height: 28px !important;
  fill: currentColor;
}

.launch-header-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.775rem;
  font-weight: 800;
  color: #2563EB;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.launch-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #00053E;
  margin: 0;
  line-height: 1.25;
}

.launch-header-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-seo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 20px;
  padding: 6px 13px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2563EB;
}

.meta-seo-pill svg {
  width: 12px !important;
  height: 12px !important;
  fill: #2563EB;
}

/* Two Column Grid */
.goha-launch-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 991px) {
  .goha-launch-grid {
    grid-template-columns: 1fr;
  }

  .goha-launch-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Left Hero Strategic Card */
.goha-launch-hero-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 22px;
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(0, 5, 62, 0.04);
  transition: all 0.35s ease;
}

.goha-launch-hero-card:hover {
  border-color: #2563EB;
  box-shadow: 0 20px 40px rgba(0, 5, 62, 0.09);
}

.launch-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.825rem;
  font-weight: 700;
  color: #2563EB;
  margin-bottom: 24px;
  width: max-content;
}

.launch-hero-badge svg {
  width: 14px !important;
  height: 14px !important;
  fill: #2563EB;
}

.launch-hero-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #00053E;
  margin: 0 0 18px 0;
  line-height: 1.35;
}

.launch-hero-desc {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.75;
  margin: 0 0 30px 0;
}

.launch-hero-desc strong {
  color: #00053E;
}

/* 6 Pillar Feature Matrix */
.launch-feature-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.matrix-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1E293B;
}

.matrix-icon {
  width: 28px;
  height: 28px;
  background: #EFF6FF;
  border-radius: 8px;
  color: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.matrix-icon svg {
  width: 14px !important;
  height: 14px !important;
  fill: #2563EB;
}

/* Dual Buttons */
.launch-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  flex-wrap: wrap;
}

.launch-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #00053E 0%, #2563EB 100%);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
  transition: all 0.25s ease;
}

.launch-primary-btn:hover {
  background: linear-gradient(135deg, #001275 0%, #1D4ED8 100%);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.launch-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1.5px solid #CBD5E1;
  background: #FFFFFF;
  border-radius: 12px;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.launch-secondary-btn:hover {
  background: #F8FAFC;
  border-color: #00053E;
  color: #00053E;
}

.launch-primary-btn svg {
  width: 15px !important;
  height: 15px !important;
  fill: currentColor;
}

/* Right Stack Cards Column */
.goha-launch-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.launch-stack-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 4px 16px rgba(0, 5, 62, 0.03);
  transition: all 0.3s ease;
}

.launch-stack-card:hover {
  border-color: #2563EB;
  box-shadow: 0 14px 32px rgba(0, 5, 62, 0.08);
  transform: translateY(-4px);
}

.stack-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.stack-icon-box {
  width: 44px;
  height: 44px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563EB;
  flex-shrink: 0;
}

.stack-icon-box svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor;
}

.stack-card-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #00053E;
  margin: 0;
  line-height: 1.3;
}

.stack-card-meta {
  font-size: 0.775rem;
  font-weight: 700;
  color: #2563EB;
}

.stack-card-desc {
  font-size: 0.88rem;
  color: #64748B;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.stack-tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.stack-tech-row span {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
}

.stack-demo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  transition: all 0.25s ease;
}

.demo-pill:hover {
  background: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.demo-pill svg {
  width: 12px !important;
  height: 12px !important;
  fill: currentColor;
}

@media (max-width: 768px) {
  .goha-svc-card {
    flex: 0 0 300px;
    max-width: 300px;
  }
}

/* Executive Portfolio Showcase Grid */
.goha-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.goha-portfolio-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 5, 62, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.goha-portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 5, 62, 0.12);
  border-color: #BFDBFE;
}

.port-card-img-box {
  position: relative;
  width: 100%;
  height: 200px;
  background: #F8FAFC;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid #F1F5F9;
}

.port-card-img-box img {
  max-height: 140px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.goha-portfolio-card:hover .port-card-img-box img {
  transform: scale(1.06);
}

.port-cat-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #00053E;
  color: #FFFFFF;
  font-size: 0.725rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

html[dir="rtl"] .port-cat-badge {
  right: auto;
  left: 14px;
}

.port-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.port-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #00053E;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.port-desc {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0 0 18px 0;
  flex: 1;
}

/* Why Goha Agency Section Card Hover Effects */
.goha-why-card:hover {
  transform: translateY(-6px);
  border-color: #BFDBFE !important;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.12) !important;
}

/* Executive Hero Featured Product Card */
.goha-product-card-hero {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0, 5, 62, 0.08);
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 440px;
  width: 100%;
  margin: 0 0 0 auto;
}

html[dir="rtl"] .goha-product-card-hero {
  margin: 0 auto 0 0;
}

@media (max-width: 991px) {
  .goha-product-card-hero {
    margin: 30px auto 0 auto !important;
  }
}

.goha-product-card-hero:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 5, 62, 0.15);
  border-color: #BFDBFE;
}

.goha-card-badge-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.badge-hot {
  background: #FFF1F2;
  color: #E11D48;
  border: 1px solid #FECDD3;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
}

.badge-discount {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
}

.goha-card-image-box {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.hero-card-img-large,
.goha-card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 4px 12px rgba(0, 5, 62, 0.08));
  transition: transform 0.4s ease;
}

.goha-product-card-hero:hover .goha-card-image-box img {
  transform: scale(1.05);
}

.goha-card-tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  background: #F1F5F9;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.goha-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #00053E;
  margin: 0;
  line-height: 1.3;
}

.goha-card-desc {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.55;
  margin: 0;
}

.goha-card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #F1F5F9;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.old-price {
  text-decoration: line-through;
  color: #94A3B8;
  font-size: 0.9rem;
}

.new-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: #2563EB;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stars {
  color: #F59E0B;
  font-size: 0.85rem;
}

.count {
  font-size: 0.8rem;
  color: #64748B;
  font-weight: 700;
}

.goha-card-footer-actions {
  display: flex;
  gap: 10px;
}

.goha-card-footer-actions .btn {
  flex: 1;
  justify-content: center;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Layout Lockdown (< 991px & < 768px)
   ========================================================================== */

@media (max-width: 991px) {
  /* Top Bar Mobile Optimization */
  .goha-top-bar {
    display: none !important;
  }

  /* Main Header & Get Quote Button Mobile Sleek Scaling */
  .goha-main-header {
    padding: 10px 0 !important;
  }

  .goha-header-wrapper {
    gap: 10px !important;
  }

  .goha-logo img {
    height: 32px !important;
    max-width: 130px !important;
    width: auto !important;
  }

  .goha-nav {
    display: none !important;
  }

  .goha-header-actions {
    gap: 8px !important;
  }

  .goha-action-btn,
  .goha-btn-quote {
    padding: 6px 14px !important;
    font-size: 0.75rem !important;
    white-space: nowrap !important;
    height: auto !important;
    line-height: 1.2 !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 10px rgba(0, 14, 110, 0.15) !important;
  }

  .goha-action-btn svg,
  .goha-btn-quote svg {
    width: 12px !important;
    height: 12px !important;
  }

  /* Hero Section Typography & Actions Lockdown */
  .goha-hero-section {
    padding: 40px 0 30px 0 !important;
  }

  .goha-hero-content {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .goha-hero-left {
    width: 100% !important;
  }

  .goha-hero-badge {
    font-size: 0.725rem !important;
    padding: 4px 12px !important;
    white-space: normal !important;
    text-align: center !important;
    display: inline-block !important;
    max-width: 100% !important;
  }

  .goha-hero-title {
    font-size: 1.65rem !important;
    line-height: 1.28 !important;
    margin: 14px 0 !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .goha-hero-description {
    font-size: 0.875rem !important;
    line-height: 1.55 !important;
    margin-bottom: 20px !important;
  }

  .goha-hero-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 20px !important;
  }

  .goha-hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    font-size: 0.85rem !important;
    padding: 12px 18px !important;
    text-align: center !important;
  }

  .goha-hero-reviews {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  .goha-hero-tech-icons {
    gap: 8px !important;
    margin-top: 14px !important;
  }

  /* Support Floating Widget & Scroll Top Mobile Adjustment */
  .goha-support-widget {
    bottom: 16px !important;
    right: 16px !important;
    z-index: 99999 !important;
  }

  .goha-support-btn {
    padding: 8px 14px !important;
    font-size: 0.75rem !important;
    box-shadow: 0 6px 16px rgba(0, 5, 62, 0.25) !important;
  }

  .goha-support-btn svg {
    width: 14px !important;
    height: 14px !important;
  }

  .goha-scroll-top-wrapper {
    bottom: 16px !important;
    left: 16px !important;
    z-index: 99998 !important;
  }

  .goha-scroll-top {
    width: 38px !important;
    height: 38px !important;
  }

  .goha-scroll-top svg {
    width: 18px !important;
    height: 18px !important;
  }

  .goha-scroll-percent-pill {
    display: none !important;
  }

  /* Services Section Mobile Overhaul */
  .goha-featured-section {
    padding: 45px 0 !important;
  }

  .goha-services-header-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 20px 18px !important;
    margin-bottom: 24px !important;
    border-radius: 16px !important;
  }

  .header-info-box {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .header-icon-badge {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
  }

  .header-icon-badge svg {
    width: 20px !important;
    height: 20px !important;
  }

  .services-title {
    font-size: 1.3rem !important;
    line-height: 1.3 !important;
  }

  .services-subtitle {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-top: 4px !important;
  }

  .header-nav-arrows {
    width: 100% !important;
    justify-content: space-between !important;
    margin-top: 6px !important;
    border-top: 1px solid #F1F5F9 !important;
    padding-top: 12px !important;
  }

  .svc-nav-btn {
    flex: 1 !important;
    justify-content: center !important;
    height: 40px !important;
    border-radius: 10px !important;
  }

  .goha-services-slider-container {
    margin: 0 !important;
    padding: 4px 0 16px 0 !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
  }

  .goha-services-track {
    width: max-content !important;
    gap: 16px !important;
  }

  .goha-svc-card {
    flex: 0 0 calc(100vw - 64px) !important;
    max-width: calc(100vw - 64px) !important;
    scroll-snap-align: center !important;
    padding: 24px 20px !important;
    border-radius: 18px !important;
  }

  .svc-title {
    font-size: 1.2rem !important;
  }

  .svc-desc {
    font-size: 0.85rem !important;
  }

  .svc-card-actions {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .svc-btn-primary,
  .svc-btn-outline {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Newsletter CTA Section Mobile Stack */
  .goha-newsletter-cta-section {
    margin-bottom: 0 !important;
    padding: 30px 0 !important;
    position: relative;
    z-index: 10;
  }

  .goha-newsletter-card {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 30px 20px !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(0, 5, 62, 0.12) !important;
  }

  .goha-newsletter-badge {
    margin: 0 auto 12px auto !important;
  }

  .goha-newsletter-title {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }

  .goha-newsletter-subtitle {
    font-size: 0.875rem !important;
  }

  .goha-newsletter-input-wrap {
    flex-direction: column !important;
    border-radius: 16px !important;
    padding: 10px !important;
    gap: 10px !important;
    background: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  }

  .goha-newsletter-input {
    width: 100% !important;
    text-align: center !important;
    padding: 10px 14px !important;
    font-size: 0.85rem !important;
  }

  .goha-newsletter-submit {
    width: 100% !important;
    justify-content: center !important;
    border-radius: 10px !important;
    padding: 12px 18px !important;
  }

  /* Masterpiece Footer Mobile Stack */
  .site-footer {
    padding-top: 40px !important;
    padding-bottom: 30px !important;
  }

  .goha-footer-top-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
    padding-bottom: 30px !important;
    margin-bottom: 35px !important;
  }

  .goha-footer-brand-box {
    max-width: 100% !important;
  }

  .goha-footer-main-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .goha-footer-bottom-bar {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center !important;
    align-items: center !important;
  }

  .goha-footer-bottom-pills {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}

@media (max-width: 576px) {
  .goha-newsletter-card {
    padding: 24px 16px !important;
    border-radius: 16px !important;
  }

  .goha-newsletter-title {
    font-size: 1.3rem !important;
  }

  .goha-footer-social-tiles {
    gap: 8px !important;
  }

  .goha-social-tile {
    width: 40px !important;
    height: 40px !important;
  }
}

/* Global Overflow Protection */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ==========================================================================
   Executive Offcanvas Mobile Navigation Drawer Styles
   ========================================================================== */
.goha-mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 999999;
  box-shadow: -10px 0 30px rgba(0, 5, 62, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.rtl .goha-mobile-drawer {
  right: auto;
  left: -320px;
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s ease;
}

.goha-mobile-drawer.active {
  right: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.rtl .goha-mobile-drawer.active {
  left: 0 !important;
  right: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.goha-mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 5, 62, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.goha-mobile-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.goha-mobile-drawer-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E2E8F0;
  background: #F8FAFC;
}

.goha-mobile-drawer-logo img {
  height: 32px;
  width: auto;
}

.goha-mobile-drawer-close {
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  color: #2563EB;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.goha-mobile-drawer-close:hover {
  background: #2563EB;
  color: #FFFFFF;
}

.goha-mobile-drawer-close svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor;
}

.goha-mobile-drawer-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.goha-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.goha-mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #00053E;
  font-weight: 700;
  font-size: 0.925rem;
  text-decoration: none;
  transition: all 0.2s ease;
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
}

.goha-mobile-nav-link:hover,
.goha-mobile-nav-link.active {
  background: #EFF6FF;
  color: #2563EB;
  border-color: #DBEAFE;
  transform: translateX(4px);
}

.rtl .goha-mobile-nav-link:hover,
.rtl .goha-mobile-nav-link.active {
  transform: translateX(-4px);
}

.goha-mobile-nav-link svg {
  width: 16px !important;
  height: 16px !important;
  fill: #2563EB;
}

.goha-mobile-drawer-actions {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.goha-mobile-cta-btn {
  justify-content: center;
  width: 100%;
  padding: 12px !important;
  font-size: 0.875rem !important;
}

/* Why Goha Agency Section Mobile Grid & SLA Bar Lockdown */
.goha-sla-bar {
  background: linear-gradient(135deg, #00053E 0%, #000E6E 50%, #0B132B 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 24px;
  padding: 26px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #FFFFFF;
  box-shadow: 0 20px 45px rgba(0, 5, 62, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.goha-sla-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.sla-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.sla-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sla-icon-box.icon-blue { background: rgba(37, 99, 235, 0.2); color: #60A5FA; border: 1px solid rgba(96, 165, 250, 0.3); }
.sla-icon-box.icon-green { background: rgba(16, 185, 129, 0.2); color: #34D399; border: 1px solid rgba(52, 211, 153, 0.3); }
.sla-icon-box.icon-amber { background: rgba(245, 158, 11, 0.2); color: #FBBF24; border: 1px solid rgba(251, 191, 36, 0.3); }
.sla-icon-box.icon-pink { background: rgba(236, 72, 153, 0.2); color: #F472B6; border: 1px solid rgba(244, 114, 182, 0.3); }

.sla-text-box {
  display: flex;
  flex-direction: column;
}

.sla-number {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.sla-number.num-blue { color: #60A5FA; }
.sla-number.num-green { color: #34D399; }
.sla-number.num-amber { color: #FBBF24; }
.sla-number.num-pink { color: #F472B6; }

.sla-label {
  font-size: 0.8rem;
  color: #CBD5E1;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 2px;
  max-width: 180px;
}

.sla-divider {
  height: 38px;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 991px) {
  .desktop-only {
    display: none !important;
  }

  .goha-why-section {
    padding: 45px 0 !important;
  }

  .goha-why-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
  }

  .goha-why-card {
    padding: 20px !important;
    border-radius: 16px !important;
  }

  .goha-sla-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .sla-stat-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    padding: 12px 10px !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .sla-icon-box {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
  }

  .sla-icon-box svg {
    width: 16px !important;
    height: 16px !important;
  }

  .sla-number {
    font-size: 1.35rem !important;
  }

  .sla-label {
    font-size: 0.725rem !important;
    line-height: 1.2 !important;
    max-width: 100% !important;
  }

  /* Launch Platform Section Mobile Styling */
  .goha-launch-section {
    padding: 45px 0 !important;
  }

  .goha-launch-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
    padding: 20px 18px !important;
    border-radius: 18px !important;
    margin-bottom: 24px !important;
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 4px 16px rgba(0, 5, 62, 0.03) !important;
  }

  .launch-header-left {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .launch-icon-badge {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    margin-bottom: 2px !important;
  }

  .launch-icon-badge svg {
    width: 22px !important;
    height: 22px !important;
  }

  .launch-header-tagline {
    font-size: 0.725rem !important;
    letter-spacing: 0.5px !important;
  }

  .launch-title {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
    font-weight: 800 !important;
    color: #00053E !important;
    margin: 4px 0 0 0 !important;
  }

  .launch-header-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 4px !important;
    padding-top: 14px !important;
    border-top: 1px solid #F1F5F9 !important;
    width: 100% !important;
  }

  .meta-seo-pill {
    font-size: 0.725rem !important;
    padding: 5px 12px !important;
    border-radius: 50px !important;
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    color: #2563EB !important;
    font-weight: 700 !important;
  }

  .goha-launch-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .goha-launch-hero-card {
    padding: 22px 18px !important;
    border-radius: 16px !important;
  }

  .launch-hero-badge {
    font-size: 0.725rem !important;
    padding: 4px 12px !important;
  }

  .launch-hero-title {
    font-size: 1.3rem !important;
    line-height: 1.35 !important;
    margin: 12px 0 !important;
  }

  .launch-hero-desc {
    font-size: 0.85rem !important;
    line-height: 1.55 !important;
    margin-bottom: 18px !important;
  }

  .launch-feature-matrix {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }

  .matrix-item {
    padding: 12px 14px !important;
    border-radius: 12px !important;
    font-size: 0.825rem !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .launch-hero-actions {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .launch-primary-btn,
  .launch-secondary-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 18px !important;
    font-size: 0.85rem !important;
  }

  .launch-stack-card {
    padding: 20px 18px !important;
    border-radius: 16px !important;
  }

  .stack-card-header {
    flex-direction: row !important;
    gap: 12px !important;
  }

  .stack-card-title {
    font-size: 1.1rem !important;
  }

  .stack-demo-pills {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .demo-pill {
    padding: 6px 12px !important;
    font-size: 0.775rem !important;
  }
}

@media (max-width: 480px) {
  .goha-sla-bar {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* ==========================================================================
   Executive Glassmorphic Context Menu & Security Shield
   ========================================================================== */
.goha-custom-context-menu {
  position: fixed;
  z-index: 9999999;
  width: 250px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 5, 62, 0.15), 0 0 0 1px rgba(0, 5, 62, 0.05);
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.goha-custom-context-menu.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.goha-ctx-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 10px 8px;
}

.goha-ctx-logo {
  width: 28px;
  height: 28px;
}

.goha-ctx-brand-info {
  display: flex;
  flex-direction: column;
}

.goha-ctx-brand-name {
  font-weight: 900;
  font-size: 0.825rem;
  color: #00053E;
  letter-spacing: 0.5px;
}

.goha-ctx-brand-sub {
  font-size: 0.675rem;
  color: #2563EB;
  font-weight: 700;
}

.goha-ctx-divider {
  height: 1px;
  background: #E2E8F0;
  margin: 6px 0;
}

.goha-ctx-menu-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.goha-ctx-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #1E293B;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: inherit;
}

.rtl .goha-ctx-item {
  text-align: right;
}

.goha-ctx-item:hover {
  background: #EFF6FF;
  color: #2563EB;
  transform: translateX(3px);
}

.rtl .goha-ctx-item:hover {
  transform: translateX(-3px);
}

.goha-ctx-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.goha-ctx-icon svg {
  width: 14px !important;
  height: 14px !important;
  fill: currentColor;
}

.goha-ctx-icon.icon-blue { background: #EFF6FF; color: #2563EB; }
.goha-ctx-icon.icon-purple { background: #F3E8FF; color: #7E22CE; }
.goha-ctx-icon.icon-orange { background: #FFEDD5; color: #C2410C; }
.goha-ctx-icon.icon-teal { background: #CCFBF1; color: #0F766E; }
.goha-ctx-icon.icon-pink { background: #FCE7F3; color: #BE185D; }
.goha-ctx-icon.icon-yellow { background: #FEF3C7; color: #D97706; }
.goha-ctx-icon.icon-green { background: #DCFCE7; color: #15803D; }
.goha-ctx-icon.icon-whatsapp { background: #25D366; color: #FFFFFF; }

/* ==========================================================================
   Executive Page Hero Banner & Inner Page Templates Styling (Light Mode Parallax)
   ========================================================================== */
.goha-page-hero {
  padding: 85px 0 65px 0;
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 50%, #F1F5F9 100%);
  color: #0F172A;
  position: relative;
  border-bottom: 1px solid #E2E8F0;
  overflow: hidden;
}

.goha-page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, rgba(6, 182, 212, 0.04) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.goha-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  font-weight: 700;
  color: #64748B;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #E2E8F0;
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.goha-breadcrumb a {
  color: #2563EB;
  text-decoration: none;
}

.goha-breadcrumb .sep {
  color: #94A3B8;
}

.goha-page-hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00053E;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 860px;
  background: linear-gradient(135deg, #00053E 0%, #1D4ED8 60%, #0284C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.goha-page-hero-desc {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
  max-width: 800px;
  margin: 0;
}

.goha-policy-pill {
  background: #FFFFFF !important;
  color: #475569 !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.goha-policy-pill.active {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%) !important;
  color: #FFFFFF !important;
  border-color: #2563EB !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25) !important;
}

.goha-policy-pill.active .pill-icon {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
}

@media (max-width: 991px) {
  .goha-page-hero {
    padding: 40px 0 35px 0 !important;
  }

  .goha-page-hero-title {
    font-size: 1.55rem !important;
    line-height: 1.3 !important;
  }

  .goha-page-hero-desc {
    font-size: 0.9rem !important;
  }

  .goha-contact-grid,
  .goha-policy-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

/* ==========================================================================
   GOHA CyberShield™ Ultra-Luxury Smart Captcha Component
   ========================================================================== */
.goha-captcha-container {
  width: 100%;
  box-sizing: border-box;
}

.goha-captcha-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid #CBD5E1;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 5, 62, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  user-select: none;
}

.goha-captcha-container[data-verified="true"] .goha-captcha-card {
  border-color: #10B981;
  background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.12);
}

.goha-captcha-container.error .goha-captcha-card {
  border-color: #EF4444;
  animation: captchaShake 0.4s ease;
}

@keyframes captchaShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.goha-captcha-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.goha-captcha-checkbox-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid #CBD5E1;
  background: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.25s ease;
  padding: 0;
  outline: none;
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.goha-captcha-checkbox-btn:hover {
  border-color: #2563EB;
  transform: scale(1.05);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.goha-captcha-container[data-verified="true"] .goha-captcha-checkbox-btn {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-color: #10B981;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.goha-captcha-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(37, 99, 235, 0.2);
  border-top-color: #2563EB;
  border-radius: 50%;
  animation: captchaSpin 0.75s linear infinite;
  display: inline-block;
}

@keyframes captchaSpin {
  to { transform: rotate(360deg); }
}

.goha-captcha-text {
  display: flex;
  flex-direction: column;
}

.goha-captcha-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 2px;
}

.goha-captcha-sub {
  font-size: 0.775rem;
  color: #64748B;
}

.goha-captcha-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0.75;
}

.goha-captcha-brand-title {
  font-size: 0.75rem;
  font-weight: 900;
  color: #00053E;
  letter-spacing: 1px;
}

.goha-captcha-brand-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: #2563EB;
  text-transform: uppercase;
}

/* ==========================================================================
   Universal Ultra-Luxury Form System (Shared across all forms & templates)
   ========================================================================== */
.goha-contact-form-card,
.goha-svc-consult-box {
  background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%) !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 24px !important;
  padding: 46px 40px !important;
  box-shadow: 0 20px 50px -10px rgba(0, 5, 62, 0.05) !important;
  position: relative !important;
  overflow: hidden !important;
}

.goha-contact-form {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.goha-contact-row-2col {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
}

.goha-contact-field-group {
  margin-bottom: 22px !important;
}

.goha-contact-label {
  display: block !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #334155 !important;
  margin-bottom: 8px !important;
  text-align: initial !important;
}

.goha-contact-input,
.goha-svc-input {
  width: 100% !important;
  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  color: #0F172A !important;
  padding: 14px 18px !important;
  border-radius: 12px !important;
  font-size: 0.95rem !important;
  font-family: inherit !important;
  outline: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
  box-sizing: border-box !important;
  display: block !important;
}

.goha-contact-input:focus,
.goha-svc-input:focus {
  border-color: #2563EB !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12) !important;
  background: #FFFFFF !important;
}

.goha-contact-submit-btn,
.goha-svc-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background: linear-gradient(135deg, #2563EB 0%, #0284C7 100%) !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  font-size: 0.975rem !important;
  padding: 15px 32px !important;
  border-radius: 12px !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  min-width: 220px !important;
  height: auto !important;
}

.goha-contact-submit-btn:hover,
.goha-svc-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.32) !important;
  color: #FFFFFF !important;
}

@media (max-width: 768px) {
  .goha-contact-row-2col {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .goha-contact-form-card,
  .goha-svc-consult-box {
    padding: 28px 20px !important;
  }
}