/* ----------------------------------------------------
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ---------------------------------------------------- */
:root {
  /* Colors */
  --primary-navy: #0E2A47;
  --primary-navy-rgb: 14, 42, 71;
  --secondary-blue: #3A86C8;
  --secondary-bg-blue: #CADBE2;
  --soft-blue-gray: #8FA9C4;
  --accent-orange: #FF7A00;
  --accent-orange-hover: #E06C00;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #20BA56;
  
  --bg-light: #F4F7F9;
  --bg-white: #FFFFFF;
  --text-dark: #1F2937;
  --text-light: #4B5563;
  --text-white: #FFFFFF;
  
  --border-light: rgba(14, 42, 71, 0.08);
  --border-glass: rgba(255, 255, 255, 0.4);
  --shadow-sm: 0 2px 4px rgba(14, 42, 71, 0.04);
  --shadow-md: 0 10px 20px rgba(14, 42, 71, 0.06);
  --shadow-lg: 0 20px 40px rgba(14, 42, 71, 0.1);
  --shadow-orange: 0 8px 24px rgba(255, 122, 0, 0.25);
  --shadow-green: 0 8px 24px rgba(37, 211, 102, 0.25);

  /* Fonts */
  --font-headers: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--primary-navy) 20%, var(--secondary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-orange {
  color: var(--accent-orange);
}

.icon-spacing {
  margin-right: 8px;
}

.icon-spacing-left {
  margin-left: 8px;
}

/* ----------------------------------------------------
   BUTTONS
   ---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headers);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 0.95rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

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

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

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.35);
}

.btn-secondary {
  background-color: var(--primary-navy);
  color: var(--text-white);
}

.btn-secondary:hover {
  background-color: var(--secondary-blue);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-navy);
  color: var(--primary-navy);
}

.btn-outline:hover {
  background-color: var(--primary-navy);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: var(--text-white);
  box-shadow: var(--shadow-green);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-outline {
  border-color: var(--whatsapp-green);
  color: var(--whatsapp-green);
}

.btn-whatsapp-outline:hover {
  background-color: var(--whatsapp-green);
  color: var(--text-white);
  border-color: var(--whatsapp-green);
}

.btn-full-width {
  width: 100%;
}

/* ----------------------------------------------------
   HEADER & NAVBAR
   ---------------------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(244, 247, 249, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  height: 70px;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  font-family: var(--font-headers);
}

.logo-link.stacked {
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.logo-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo-link.stacked .logo-brand {
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  line-height: 1;
}

.logo-brand .accent-text {
  color: var(--secondary-blue);
}

.logo-divider {
  margin: 0 10px;
  color: var(--soft-blue-gray);
  font-weight: 300;
}

.logo-product {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-navy);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo-link.stacked .logo-product {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-top: 3px;
  line-height: 1;
}

.logo-product .product-highlight {
  color: var(--accent-orange);
}

.nav-menu {
  display: flex;
  gap: 18px;
}

.nav-item {
  font-weight: 500;
  color: var(--text-light);
  font-size: 0.92rem;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-orange);
  transition: var(--transition-normal);
}

.nav-item:hover, .nav-item.active {
  color: var(--primary-navy);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--primary-navy);
  transition: var(--transition-normal);
}

/* ----------------------------------------------------
   HERO SECTION
   ---------------------------------------------------- */
.hero-section {
  padding: calc(var(--header-height) + 60px) 0 80px 0;
  background: radial-gradient(circle at 80% 20%, rgba(202, 219, 226, 0.4) 0%, rgba(244, 247, 249, 1) 70%);
  position: relative;
  overflow: hidden;
}

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

.badge-qatar {
  display: inline-flex;
  align-items: center;
  background-color: rgba(14, 42, 71, 0.05);
  color: var(--primary-navy);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  border: 1px solid rgba(14, 42, 71, 0.05);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
  font-family: var(--font-headers);
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(14, 42, 71, 0.1);
  padding-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-headers);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--soft-blue-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-backdrop {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(58, 134, 200, 0.15) 0%, transparent 60%);
  z-index: 0;
  border-radius: 50%;
}

.hero-dashboard-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 1;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: var(--transition-slow);
}

.hero-dashboard-img:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-badge {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  transition: var(--transition-normal);
}

.dashboard-badge:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.95);
}

.floating-badge-1 {
  top: 15%;
  left: -10%;
}

.floating-badge-2 {
  bottom: 15%;
  right: -5%;
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 122, 0, 0.1);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-icon.green-bg {
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp-green);
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-navy);
}

.badge-desc {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ----------------------------------------------------
   SECTION HEADERS
   ---------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-tagline {
  display: block;
  font-family: var(--font-headers);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-headers);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
}

/* ----------------------------------------------------
   VIDEO SECTION
   ---------------------------------------------------- */
.video-section {
  padding: 80px 0;
  background-color: var(--bg-white);
  position: relative;
}

.video-container-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.video-backdrop {
  position: absolute;
  width: 95%;
  height: 95%;
  top: 5%;
  left: 2.5%;
  background: var(--soft-blue-gray);
  filter: blur(40px);
  opacity: 0.25;
  z-index: 0;
  border-radius: var(--radius-lg);
}

.video-player-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  cursor: pointer;
  z-index: 1;
  border: 1px solid rgba(14, 42, 71, 0.08);
}

.video-player-direct {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  z-index: 1;
  border: 1px solid rgba(14, 42, 71, 0.08);
  background-color: #000;
}

.video-player-direct iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-placeholder-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.video-player-container:hover .video-placeholder-bg {
  transform: scale(1.03);
}

.video-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(14, 42, 71, 0.8) 0%, rgba(14, 42, 71, 0.3) 50%, rgba(14, 42, 71, 0.1) 100%);
  z-index: 2;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.6rem;
  z-index: 3;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-orange);
  padding-left: 5px; /* Visual center play icon */
}

.video-player-container:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--primary-navy);
  box-shadow: 0 10px 30px rgba(14, 42, 71, 0.3);
}

.play-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-orange);
  z-index: -1;
  animation: play-pulse 2s infinite;
  opacity: 0.4;
}

@keyframes play-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.8); opacity: 0; }
}

.video-caption {
  position: absolute;
  bottom: 24px;
  left: 30px;
  right: 30px;
  z-index: 3;
  color: var(--text-white);
}

.video-caption h4 {
  font-family: var(--font-headers);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.video-caption p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 42, 71, 0.9);
  backdrop-filter: blur(8px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background-color: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  z-index: 2002;
  transform: scale(0.9);
  opacity: 0;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.video-modal.active .video-modal-content {
  transform: scale(1);
  opacity: 1;
}

.video-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-white);
  font-size: 1.8rem;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 2005;
  transition: var(--transition-fast);
}

.video-modal-close:hover {
  background: var(--accent-orange);
}

.video-aspect-ratio {
  width: 100%;
  height: 100%;
}

.video-aspect-ratio iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ----------------------------------------------------
   INTERACTIVE WORKFLOW SECTION
   ---------------------------------------------------- */
.workflow-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.workflow-interactive-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-top: 20px;
  align-items: start;
}

.workflow-flow {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.workflow-node {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
}

.workflow-node:hover {
  transform: translateY(-2px);
  border-color: var(--soft-blue-gray);
  background-color: #F0F4F8;
}

.workflow-node.active {
  background-color: var(--primary-navy);
  color: var(--text-white);
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-md);
}

.node-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: rgba(58, 134, 200, 0.1);
  color: var(--secondary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition-normal);
}

.workflow-node.active .node-icon {
  background-color: var(--accent-orange);
  color: var(--text-white);
}

.node-title {
  font-family: var(--font-headers);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Details Panel styling */
.workflow-details-panel {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #153F6B 100%);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.details-content {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.details-step-num {
  font-family: var(--font-headers);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.details-title {
  font-family: var(--font-headers);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.details-desc {
  opacity: 0.85;
  margin-bottom: 30px;
  font-size: 0.98rem;
}

.details-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.details-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.details-features i {
  color: var(--accent-orange);
}

/* ----------------------------------------------------
   PRODUCTS & SERVICES MARKETPLACE
   ---------------------------------------------------- */
.services-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

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

.service-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-navy);
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background-color: var(--bg-white);
}

.service-card:hover .card-accent-bar {
  background-color: var(--accent-orange);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: var(--bg-white);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background-color: var(--primary-navy);
  color: var(--text-white);
}

.service-card h3 {
  font-family: var(--font-headers);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(14, 42, 71, 0.05);
}

.service-badge {
  background-color: rgba(14, 42, 71, 0.05);
  color: var(--primary-navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

.service-badge.badge-featured {
  background-color: rgba(255, 122, 0, 0.1);
  color: var(--accent-orange);
}

.service-pricing {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--soft-blue-gray);
  text-transform: uppercase;
}

.service-link {
  font-family: var(--font-headers);
  font-weight: 700;
  color: var(--primary-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.service-card:hover .service-link {
  color: var(--accent-orange);
}

.service-link i {
  transition: var(--transition-fast);
}

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

/* Featured card override */
.service-card.featured {
  background-color: var(--primary-navy);
  color: var(--text-white);
  border-color: var(--primary-navy);
}

.service-card.featured h3 {
  color: var(--text-white);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.service-card.featured .card-accent-bar {
  background-color: var(--accent-orange);
}

.service-card.featured .service-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

.service-card.featured .service-meta {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.service-card.featured .service-link {
  color: var(--text-white);
}

.service-card.featured:hover {
  background-color: #123354;
}

.service-card.featured:hover .service-link {
  color: var(--accent-orange);
}

/* ----------------------------------------------------
   FAQ SECTION
   ---------------------------------------------------- */
.faq-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.faq-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.faq-info {
  position: sticky;
  top: 100px;
}

.faq-info h2 {
  font-family: var(--font-headers);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.faq-info p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--soft-blue-gray);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-navy);
  transition: var(--transition-fast);
}

.faq-question i {
  color: var(--soft-blue-gray);
  transition: transform var(--transition-normal);
  font-size: 0.95rem;
}

.faq-item.active .faq-question {
  color: var(--accent-orange);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--accent-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 30px 24px 30px;
  transition: max-height 0.4s cubic-bezier(0.85, 0, 0.15, 1);
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ----------------------------------------------------
   CONTACT US SECTION (DEMO CALENDAR FORM)
   ---------------------------------------------------- */
.contact-section {
  padding: 80px 0;
  background-color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.contact-card-glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(202, 219, 226, 0.3) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 60px;
}

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

.contact-info-panel h2 {
  font-family: var(--font-headers);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info-panel p {
  color: var(--text-light);
  margin-bottom: 40px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-detail-item .icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: rgba(14, 42, 71, 0.05);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-item h4 {
  font-family: var(--font-headers);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.contact-detail-item p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.whatsapp-cta-card {
  background-color: rgba(37, 211, 102, 0.05);
  border: 1px dashed rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.whatsapp-big-icon {
  font-size: 2.5rem;
  color: var(--whatsapp-green);
}

.whatsapp-cta-card h4 {
  font-family: var(--font-headers);
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.whatsapp-cta-card p {
  font-size: 0.88rem;
  margin-bottom: 16px;
  color: var(--text-light);
}

/* Form Styles */
.contact-form-panel {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
}

.contact-form-panel h3 {
  font-family: var(--font-headers);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: opacity var(--transition-normal);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(14, 42, 71, 0.15);
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  outline: none;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--secondary-blue);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(58, 134, 200, 0.1);
}

.form-group textarea {
  resize: vertical;
}

/* Success State */
.form-success-message {
  display: none;
  text-align: center;
  padding: 40px 0;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--whatsapp-green);
  margin-bottom: 20px;
}

.form-success-message h4 {
  font-family: var(--font-headers);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.form-success-message p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ----------------------------------------------------
   FOOTER
   ---------------------------------------------------- */
.main-footer {
  background-color: var(--primary-navy);
  color: var(--text-white);
  padding: 80px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-col h3 {
  font-family: var(--font-headers);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-brand-col h3 .accent-text {
  color: var(--secondary-blue);
}

.footer-desc {
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 24px;
  max-width: 320px;
}

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

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--accent-orange);
  transform: translateY(-2px);
}

.footer-links-col h4 {
  font-family: var(--font-headers);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

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

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

.footer-links-col ul li a {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-links-col ul li a:hover {
  opacity: 1;
  color: var(--accent-orange);
  padding-left: 4px;
}

.contact-short {
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.contact-short a {
  color: var(--secondary-blue);
}

.contact-short a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  padding: 30px 0;
  background-color: #081B2E;
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--accent-orange);
}

/* ----------------------------------------------------
   RESPONSIVENESS (MEDIA QUERIES)
   ---------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 3rem;
  }

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

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

  .hero-stats {
    width: 100%;
    justify-content: center;
    gap: 50px;
  }

  .hero-dashboard-img {
    transform: none;
  }

  .hero-dashboard-img:hover {
    transform: translateY(-5px);
  }

  .floating-badge-1 {
    left: 0;
  }

  .floating-badge-2 {
    right: 0;
  }

  .workflow-interactive-container {
    grid-template-columns: 1fr;
  }

  .workflow-details-panel {
    position: static;
  }

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

  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-info {
    position: static;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 1150px) {
  .hide-mobile {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .powered-by-badge {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: var(--transition-normal);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    font-size: 1.2rem;
  }

  /* When menu is active, morph hamburger button into X */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

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

  .workflow-flow {
    grid-template-columns: 1fr;
  }

  .contact-card-glass {
    padding: 30px;
  }

  .contact-form-panel {
    padding: 24px;
  }

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

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

  .footer-bottom-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ====================================================
   POWERED BY BADGE & DUAL PAGE ADDITIONS
   ==================================================== */
.powered-by-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 15px;
  border-left: 1px solid rgba(14, 42, 71, 0.15);
  padding-left: 15px;
  height: 64px;
}

.powered-by-text {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--soft-blue-gray);
  letter-spacing: 0.8px;
  line-height: 1.1;
  text-align: right;
}

.powered-by-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

/* Hero Flagship Product Featured Card (index.html) */
.hero-flagship-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 30px;
  max-width: 580px;
  box-shadow: var(--shadow-md);
  text-align: left;
  border-left: 4px solid var(--accent-orange);
}

.flagship-badge {
  display: inline-block;
  background-color: var(--accent-orange);
  color: var(--text-white);
  font-family: var(--font-headers);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.hero-flagship-card h3 {
  font-family: var(--font-headers);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.hero-flagship-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.hero-flagship-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Service Card Flagship Additions (index.html) */
.service-card.featured .card-accent-bar.bg-orange {
  background-color: var(--accent-orange);
}

.card-highlight-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-orange);
  color: var(--text-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* Adaptive mobile layout adjustments */
@media (max-width: 768px) {
  .powered-by-badge {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
}

/* ====================================================
   AI PRODUCT HUNT & EVENTS SECTION
   ==================================================== */
.hunt-events-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.hunt-events-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
}

.hunt-panel, .events-panel {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.panel-header h3 {
  font-family: var(--font-headers);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-header p {
  font-size: 0.9rem;
  color: var(--text-light);
}

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

.hunt-item {
  display: flex;
  align-items: center;
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid transparent;
  transition: var(--transition-normal);
}

.hunt-item:hover {
  border-color: var(--soft-blue-gray);
  transform: translateX(5px);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.upvote-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  width: 52px;
  height: 52px;
  cursor: pointer;
  transition: var(--transition-normal);
  font-family: var(--font-headers);
  font-weight: 700;
  color: var(--text-light);
  margin-right: 16px;
  flex-shrink: 0;
}

.upvote-btn:hover, .upvote-btn.active {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background-color: rgba(255, 122, 0, 0.05);
}

.upvote-btn i {
  font-size: 1.2rem;
  line-height: 1;
  transition: var(--transition-fast);
}

.upvote-btn:hover i {
  transform: translateY(-2px);
}

.vote-count {
  font-size: 0.85rem;
  line-height: 1;
  margin-top: 2px;
}

.hunt-item-info {
  flex-grow: 1;
}

.hunt-item-info h4 {
  font-family: var(--font-headers);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hunt-item-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.35;
  margin-bottom: 4px;
}

.maker {
  font-size: 0.75rem;
  color: var(--soft-blue-gray);
  font-weight: 600;
}

.badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge-featured {
  background-color: rgba(255, 122, 0, 0.1);
  color: var(--accent-orange);
}

.hunt-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-blue-gray);
  font-size: 0.9rem;
  transition: var(--transition-normal);
  margin-left: 10px;
}

.hunt-action-btn:hover {
  background-color: var(--primary-navy);
  color: var(--text-white);
  border-color: var(--primary-navy);
  transform: scale(1.05);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-card-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(14, 42, 71, 0.1);
}

.event-card-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.event-date {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: rgba(14, 42, 71, 0.05);
  color: var(--primary-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.date-day {
  font-family: var(--font-headers);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.date-month {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}

.event-details h4 {
  font-family: var(--font-headers);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.event-details p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 6px;
}

.event-meta {
  font-size: 0.8rem;
  color: var(--soft-blue-gray);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-cta-box {
  background: linear-gradient(135deg, rgba(202, 219, 226, 0.2) 0%, rgba(14, 42, 71, 0.03) 100%);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  margin-top: auto;
}

.event-cta-box h4 {
  font-family: var(--font-headers);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.event-cta-box p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* Responsive grid adjustments */
@media (max-width: 1024px) {
  .hunt-events-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ====================================================
   SERVICE PACKAGES / PRICING SECTION
   ==================================================== */
.packages-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 40px;
}

.package-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--soft-blue-gray);
}

.package-card.featured {
  background-color: var(--primary-navy);
  color: var(--text-white);
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  z-index: 2;
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.package-badge-popular {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--accent-orange);
  color: var(--text-white);
  font-family: var(--font-headers);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 35px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}

.package-header {
  margin-bottom: 24px;
  text-align: center;
  border-bottom: 1px solid rgba(14, 42, 71, 0.08);
  padding-bottom: 24px;
}

.package-card.featured .package-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.package-header h3 {
  font-family: var(--font-headers);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.package-card.featured h3 {
  color: var(--text-white);
}

.package-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  min-height: 40px;
}

.package-card.featured .package-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 6px;
}

.price-value {
  font-family: var(--font-headers);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
}

.package-card.featured .price-value {
  color: var(--text-white);
}

.price-period {
  font-size: 0.9rem;
  color: var(--soft-blue-gray);
  margin-left: 6px;
  font-weight: 600;
}

.price-qar {
  font-size: 0.75rem;
  color: var(--soft-blue-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-body {
  flex-grow: 1;
  margin-bottom: 30px;
}

.package-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.package-card.featured .package-features-list li {
  color: rgba(255, 255, 255, 0.85);
}

.package-features-list li i {
  color: var(--accent-orange);
  font-size: 0.95rem;
}

.package-features-list li.unsupported {
  opacity: 0.45;
  text-decoration: line-through;
}

.package-features-list li.unsupported i {
  color: var(--soft-blue-gray);
}

.package-footer {
  margin-top: auto;
}

/* Responsive grid adjustments */
@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .package-card.featured {
    transform: none;
  }
  
  .package-card.featured:hover {
    transform: translateY(-5px);
  }
}

/* ====================================================
   FOOTER POWERED BY BRANDING
   ==================================================== */
.footer-powered-by {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0 20px 0;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-powered-by .powered-by-text {
  font-family: var(--font-headers);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--soft-blue-gray);
  letter-spacing: 1px;
}

.footer-powered-logo {
  height: 52px;
  background-color: #ffffff;
  padding: 6px 16px;
  border-radius: 6px;
  display: block;
  box-shadow: var(--shadow-sm);
}
