/* --- CSS RESET & VARIABLES --- */
:root {
  /* Color Theme */
  --bg-dark: #000000;
  --bg-dark-card: rgba(10, 10, 12, 0.75);
  --bg-light: #000000;
  --accent: #0078F0;
  --accent-hover: #1FA8FF;
  --white: #FFFFFF;
  
  /* High-Contrast Typography */
  --text-light: #FFFFFF;
  --text-light-muted: #94A3B8;
  --text-dark: #F1F5F9;
  --text-dark-heading: #FFFFFF;
  --text-dark-muted: #94A3B8;
  
  /* Borders and Shadow Glows */
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.08);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.8);
  --shadow-accent: 0 0 20px 0 rgba(0, 120, 240, 0.35);
  
  /* Glassmorphism & SaaS Gradients */
  --brand-gradient: linear-gradient(135deg, #0048C8 0%, #1FA8FF 100%);
  --glow-color: rgba(0, 120, 240, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.07);
  --backdrop-blur: blur(16px);
  --blue-glow: 0 0 40px rgba(0, 120, 240, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.025em;
}

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

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

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6.5rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

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

.text-accent {
  color: var(--accent);
}

/* --- BADGES & BUTTONS --- */
.pill-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid rgba(0, 120, 240, 0.4);
  color: var(--accent);
  background-color: rgba(0, 120, 240, 0.06);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition);
  gap: 0.5rem;
  border: 2px solid transparent;
}

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

.btn-solid:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(0, 120, 240, 0.45);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background-color: rgba(0, 120, 240, 0.08);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* --- ANIMATION CLASSES --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.animated {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* --- 1. NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
  padding: 0 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  width: 22px;
  height: 22px;
}

.logo-icon-svg {
  width: 40px;
  height: 40px;
  display: block;
  flex-shrink: 0;
  transition: var(--transition);
}

.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: var(--transition);
}

.logo-container:hover .logo-icon-svg,
.logo-container:hover .logo-img {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-size: 0.65rem;
  color: var(--text-light-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light-muted);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
}

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

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

.nav-cta .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- 2. HERO SECTION --- */
.hero {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 9.5rem 0 7rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(0,120,240,0.15) 0%, rgba(10,15,30,0) 70%);
  pointer-events: none;
  z-index: 1;
}

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

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-light-muted);
  margin-bottom: 2.5rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

@media (min-width: 769px) {
  .hero-actions {
    flex-wrap: nowrap !important;
  }
  .hero-actions .btn,
  .hero-actions .btn-hero-pulsing-webdev {
    white-space: nowrap !important;
    padding: 0.85rem 1.35rem !important;
    font-size: 0.9rem !important;
  }
}

.hero-stats {
  display: flex;
  gap: 2rem;
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
}

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

.hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

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

.hero-img-container {
  width: 100%;
  max-width: 480px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
  transition: var(--transition);
}

.hero-img-container:hover img {
  transform: scale(1.03);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(18, 24, 46, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 3;
  transition: var(--transition);
}

.floating-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 120, 240, 0.4);
}

.fc-top-right {
  top: 2rem;
  right: -1.5rem;
}

.fc-bottom-left {
  bottom: 2rem;
  left: -1.5rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #10B981;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #10B981;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.star-icon {
  color: #FBBF24;
  font-size: 1.25rem;
}

.fc-text {
  display: flex;
  flex-direction: column;
}

.fc-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.fc-desc {
  font-size: 0.7rem;
  color: var(--text-light-muted);
}

/* --- 3. BRAND STRIP --- */
.brand-strip {
  background-color: var(--bg-light);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-light);
}

.brand-strip-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark-muted);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.brand-names-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.brand-name-item {
  font-size: 1.5rem;
  font-weight: 800;
  color: #9CA3AF;
  letter-spacing: -0.03em;
  transition: var(--transition);
  cursor: default;
}

.brand-name-item:hover {
  color: var(--accent);
  transform: scale(1.05);
}

/* --- 4. ABOUT SECTION --- */
.about {
  background-color: var(--bg-light);
}

.about-image-wrapper {
  position: relative;
}

.about-img-container {
  width: 100%;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.about-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about-img-container:hover img {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: 1.5rem;
  background-color: var(--accent);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-accent);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  z-index: 3;
}

.about-badge span {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.about h2 {
  font-size: 2.25rem;
  color: var(--text-dark-heading);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-desc {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  margin-bottom: 2.5rem;
}

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.feature-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon-box {
  font-size: 1.5rem;
  background: var(--white);
  padding: 0.75rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.feature-row:hover .feature-icon-box {
  background-color: var(--accent);
  transform: translateY(-2px);
}

.feature-row:hover .feature-icon-box i {
  color: var(--white);
}

.feature-content h3 {
  font-size: 1.1rem;
  color: var(--text-dark-heading);
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.925rem;
  color: var(--text-dark-muted);
}

/* --- 5. SERVICES SECTION --- */
.services {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.section-header {
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.25rem;
  color: var(--text-dark-heading);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
}

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

.service-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 120, 240, 0.2);
}

.service-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 15, 30, 0) 40%, rgba(10, 15, 30, 0.6) 100%);
}

.service-card-icon-floating {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  width: 48px;
  height: 48px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-accent);
  z-index: 2;
}

.service-card-body {
  padding: 2rem 2.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.35rem;
  color: var(--text-dark-heading);
  margin-bottom: 0.75rem;
}

.service-card-body p {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.service-bullets li {
  font-size: 0.9rem;
  color: var(--text-dark);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.service-bullets i {
  color: var(--accent);
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

/* --- 6. GLOBAL REACH SECTION --- */
.global-reach {
  background-color: var(--bg-dark);
  color: var(--white);
  position: relative;
}

.global-reach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.region-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

.region-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.region-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.region-platforms {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.region-desc {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  flex-grow: 1;
}

/* Highlight card "+More" */
.region-card.highlighted {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-dark-card) 0%, rgba(0, 120, 240, 0.08) 100%);
  box-shadow: 0 10px 30px rgba(0, 120, 240, 0.15);
}

.region-card.highlighted:hover {
  box-shadow: 0 15px 35px rgba(0, 120, 240, 0.25);
  border-color: #3B82F6;
}

.region-card.highlighted .region-title {
  color: var(--white);
}

.region-card.highlighted .region-desc {
  color: var(--text-light);
}

/* --- 7. WHY CHOOSE US --- */
.why-choose-us {
  background-color: var(--bg-light);
}

.why-choose-us h2 {
  font-size: 2.25rem;
  color: var(--text-dark-heading);
  margin-bottom: 1.25rem;
}

.why-choose-us .body-text {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.why-choose-grid {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.why-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 120, 240, 0.15);
}

.why-icon-box {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background-color: rgba(0, 120, 240, 0.06);
  border: 1px solid rgba(0, 120, 240, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.why-card:hover .why-icon-box {
  background-color: var(--accent);
  color: var(--white);
}

.why-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark-heading);
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

/* --- 8. STATS BAR --- */
.stats-bar {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 4.5rem 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats-bar-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.stats-bar-label {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  font-weight: 500;
}

/* --- 9. BRAND PORTFOLIO --- */
.portfolio {
  background-color: var(--bg-light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.brand-portfolio-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition);
}

.brand-portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 120, 240, 0.15);
}

.brand-avatar {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Avatar Theme Colors */
.avatar-blue { background-color: rgba(0, 120, 240, 0.1); color: var(--accent); }
.avatar-purple { background-color: rgba(139, 92, 246, 0.1); color: #8B5CF6; }
.avatar-teal { background-color: rgba(20, 184, 166, 0.1); color: #14B8A6; }
.avatar-orange { background-color: rgba(249, 115, 22, 0.1); color: #F97316; }
.avatar-rose { background-color: rgba(244, 63, 94, 0.1); color: #F43F5E; }
.avatar-gray { background-color: rgba(107, 114, 128, 0.1); color: #6B7280; font-size: 1.5rem; }

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

.brand-portfolio-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark-heading);
}

.brand-portfolio-cat {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
}

.portfolio-footer-text {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

/* --- 10. CONTACT SECTION --- */
.contact {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
}

.contact h2 {
  font-size: 2.25rem;
  color: var(--text-dark-heading);
  margin-bottom: 1rem;
}

.contact-subtext {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  margin-bottom: 2.5rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.info-icon-box {
  font-size: 1.25rem;
  color: var(--accent);
  background-color: rgba(0, 120, 240, 0.06);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.info-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark-heading);
}

.contact-form-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark-heading);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 120, 240, 0.15);
}

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

.form-note {
  font-size: 0.75rem;
  color: var(--text-dark-muted);
  margin-top: 1rem;
  text-align: center;
}

/* --- 11. FOOTER --- */
.footer {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 6rem 0 2rem 0;
  border-top: 1px solid var(--border-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1.2fr 1fr 2.5fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

/* Footer Social Icons */
.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,120,240,0.4);
}

.footer-social-btn.footer-social-wa:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 6px 16px rgba(37,211,102,0.4);
}

.footer-social-btn.footer-social-gmb:hover {
  background: #EA4335;
  border-color: #EA4335;
  box-shadow: 0 6px 16px rgba(234,67,53,0.4);
}

.footer-social-btn.footer-social-li:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  box-shadow: 0 6px 16px rgba(10,102,194,0.4);
}

.footer-column h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: 2px;
  background-color: var(--accent);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  transition: var(--transition);
}

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

.footer-form-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-form .form-group {
  margin-bottom: 0.75rem;
}

.footer-form .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
}

.footer-form .form-control:focus {
  background-color: var(--bg-dark-card);
  border-color: var(--accent);
}

.footer-form textarea.form-control {
  min-height: 60px;
}

.footer-form .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  transition: var(--transition);
}

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

/* --- TOAST NOTIFICATION --- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #10B981;
  color: var(--white);
  padding: 1rem 1.75rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 600;
  font-size: 0.95rem;
}

.toast.show {
  transform: translateY(0);
}

.toast i {
  font-size: 1.2rem;
}

/* --- RESPONSIVE DESIGNS --- */
@media (max-width: 1024px) {
  .grid-2 {
    gap: 2rem;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }

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

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

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

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

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

  .footer-column-marketplaces {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4.5rem 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* Hero Mobile adjustments */
  .hero {
    padding: 7rem 0 5rem 0;
  }

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

  .hero-subtext {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-img-container {
    height: 350px;
  }

  .fc-top-right {
    right: 0rem;
    top: 1rem;
  }

  .fc-bottom-left {
    left: 0rem;
    bottom: 1rem;
  }

  /* About Section Mobile */
  .about-image-wrapper {
    margin-bottom: 2rem;
  }

  .about-img-container {
    height: 320px;
  }

  /* Global reach mobile */
  .global-reach-grid {
    grid-template-columns: 1fr;
  }

  /* Why choose mobile */
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  /* Portfolio mobile */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  /* Footer mobile */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-column-marketplaces {
    grid-column: auto;
  }

  /* Contact form card mobile */
  .contact-form-card {
    padding: 1.5rem;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Mobile Drawer Menu */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-dark);
  z-index: 1500;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.4);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-drawer.open {
  left: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 1.5rem;
}

.mobile-drawer-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light-muted);
  transition: var(--transition);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--white);
  padding-left: 5px;
}

.backdrop-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.backdrop-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* =========================================================
   INNER PAGE STYLES — Services, About, Case Studies, Privacy
   ========================================================= */

/* --- PAGE HERO (shorter hero for inner pages) --- */
.page-hero {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 8rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(0,120,240,0.18) 0%, rgba(10,15,30,0) 70%);
  pointer-events: none;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.page-hero-subtext {
  font-size: 1.1rem;
  color: var(--text-light-muted);
  max-width: 600px;
}

/* --- BREADCRUMB --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-light-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--accent);
  transition: var(--transition);
}

.breadcrumb a:hover { color: #93C5FD; }
.breadcrumb-sep { color: var(--text-light-muted); }

/* --- SERVICE DETAIL CARDS --- */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-detail-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 120, 240, 0.2);
}

.service-detail-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(0, 120, 240, 0.08);
  border: 1px solid rgba(0, 120, 240, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.service-detail-card:hover .service-detail-icon {
  background-color: var(--accent);
  color: var(--white);
}

.service-detail-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark-heading);
  margin-bottom: 0.75rem;
}

.service-detail-card > p {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.service-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.service-detail-list li {
  font-size: 0.88rem;
  color: var(--text-dark);
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.service-detail-list i {
  color: var(--accent);
  margin-top: 0.2rem;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* --- EXPERTISE METRICS BAR --- */
.expertise-bar {
  background-color: var(--bg-dark);
  padding: 4rem 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.expertise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border-dark);
  background-color: var(--bg-dark-card);
  transition: var(--transition);
}

.expertise-item:hover {
  border-color: rgba(0, 120, 240, 0.4);
  transform: translateY(-4px);
}

.expertise-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}

.expertise-label {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  font-weight: 500;
}

/* --- TESTIMONIAL CARDS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 2rem 2.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 120, 240, 0.2);
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: rgba(0, 120, 240, 0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

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

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark-heading);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-dark-muted);
}

.testimonial-metric-badge {
  margin-left: auto;
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- CASE STUDY CARDS --- */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.case-study-card {
  background-color: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}

.case-study-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.case-study-header {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0048C8 100%);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.case-study-tag {
  background-color: rgba(0, 120, 240, 0.25);
  color: #93C5FD;
  border-radius: 6px;
  padding: 0.25rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-study-client {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.case-study-body {
  padding: 2rem;
}

.case-study-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-radius: 14px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.case-study-step:last-child { margin-bottom: 0; }

.step-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 75px;
  flex-shrink: 0;
  text-align: center;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-label i {
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-problem {
  background-color: rgba(239, 68, 68, 0.03);
  border: 1px solid rgba(239, 68, 68, 0.12);
}
.step-problem .step-label { color: #EF4444; }
.step-problem .step-label i { background-color: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.15); }
.step-problem p { color: var(--text-dark); margin: 0; line-height: 1.65; font-size: 0.93rem; }

.step-approach {
  background-color: rgba(0, 120, 240, 0.03);
  border: 1px solid rgba(0, 120, 240, 0.12);
}
.step-approach .step-label { color: var(--accent); }
.step-approach .step-label i { background-color: rgba(0, 120, 240, 0.08); border: 1px solid rgba(0, 120, 240, 0.15); }
.step-approach p { color: var(--text-dark); margin: 0; line-height: 1.65; font-size: 0.93rem; }

.step-result {
  background-color: rgba(16, 185, 129, 0.03);
  border: 1px solid rgba(16, 185, 129, 0.12);
}
.step-result .step-label { color: #10B981; }
.step-result .step-label i { background-color: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.15); }

.result-highlight {
  width: 100%;
}
.result-highlight > p {
  color: var(--text-dark);
  margin: 0;
  line-height: 1.65;
  font-size: 0.93rem;
}

.result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  padding-top: 1.25rem;
}

.result-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.result-stat-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: #059669;
  line-height: 1.1;
}

.result-stat-label {
  font-size: 0.72rem;
  color: var(--text-dark-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- CREDENTIALS / BADGES GRID --- */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.credential-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition);
}

.credential-card:hover {
  border-color: rgba(0, 120, 240, 0.4);
  transform: translateY(-3px);
}

.credential-icon {
  font-size: 1.75rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background-color: rgba(0, 120, 240, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.credential-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.credential-info p {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

/* --- TEAM CARDS --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 120, 240, 0.15);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem auto;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark-heading);
  margin-bottom: 0.3rem;
}

.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

/* --- ABOUT PAGE SPECIFICS --- */
.about-story {
  background-color: var(--bg-light);
}

.about-story p {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2540 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-dark);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(0, 120, 240, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 120, 240, 0.12);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
  display: block;
}

.value-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  line-height: 1.65;
}

/* --- ADDRESS / CONTACT BLOCK --- */
.address-block {
  background-color: var(--bg-dark);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border-dark);
}

.address-block h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-dark);
}

.address-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.35rem;
}

.address-row:last-child { margin-bottom: 0; }

.address-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 120, 240, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.address-content label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light-muted);
  display: block;
  margin-bottom: 0.2rem;
}

.address-content span {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

/* --- PRIVACY / POLICY PAGE --- */
.policy-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.policy-toc {
  background-color: rgba(0, 120, 240, 0.05);
  border: 1px solid rgba(0, 120, 240, 0.18);
  border-radius: 16px;
  padding: 2rem 2.25rem;
  margin-bottom: 3rem;
}

.policy-toc h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark-heading);
  margin-bottom: 1rem;
}

.policy-toc ol {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.policy-toc a {
  font-size: 0.9rem;
  color: var(--accent);
  transition: var(--transition);
}

.policy-toc a:hover { text-decoration: underline; }

.policy-section {
  margin-bottom: 3.5rem;
  scroll-margin-top: 6rem;
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-light);
}

.policy-section-number {
  width: 36px;
  height: 36px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.policy-section h2 {
  font-size: 1.5rem;
  color: var(--text-dark-heading);
}

.policy-section p {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.policy-section ul, .policy-section ol {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.policy-section li {
  font-size: 0.93rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.policy-highlight-box {
  background-color: rgba(0, 120, 240, 0.05);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.policy-highlight-box p {
  margin: 0;
  font-weight: 500;
  color: var(--text-dark);
}

.policy-amazon-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(0, 120, 240, 0.07);
  border: 1px solid rgba(0, 120, 240, 0.2);
  border-radius: 6px;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.policy-last-updated {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  margin-top: 0.5rem;
}

/* --- CTA STRIP --- */
.cta-strip {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0048C8 100%);
  border-top: 1px solid rgba(0, 120, 240, 0.25);
  border-bottom: 1px solid rgba(0, 120, 240, 0.25);
  padding: 5rem 0;
  text-align: center;
}

.cta-strip h2 {
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-strip p {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem auto;
}

.cta-strip-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- RESPONSIVE — NEW PAGES --- */
@media (max-width: 1024px) {
  .services-detail-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .case-studies-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (max-width: 768px) {
  .page-hero h1 { font-size: 2.25rem; }
  .page-hero { padding: 7rem 0 4rem 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-metric-badge { display: none; }
  .cta-strip h2 { font-size: 1.75rem; }
}

/* --- MODERN MODAL SYSTEM --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--white);
  border-radius: 24px;
  width: 90%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-light);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 2.25rem;
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark-muted);
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.modal-close-btn:hover {
  background-color: #EF4444;
  color: var(--white);
  border-color: #EF4444;
  transform: rotate(90deg);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.25rem;
}

.modal-header-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(0, 120, 240, 0.08);
  color: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.modal-header-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark-muted);
  margin-bottom: 0.5rem;
}

.modal-description {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0;
}

.modal-focus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.modal-focus-item {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1rem;
}

.modal-focus-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.modal-focus-item h4 i {
  color: var(--accent);
  font-size: 0.85rem;
}

.modal-focus-item p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-dark-muted);
  margin: 0;
}

.modal-outcomes {
  background-color: rgba(16, 185, 129, 0.03);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 14px;
  padding: 1.25rem;
}

.modal-outcomes-title {
  color: #10B981;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.modal-outcomes p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #065F46;
  margin: 0;
}

.modal-footer {
  margin-top: 1.75rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}

/* Make service cards feel clickable */
.service-detail-card {
  cursor: pointer;
  transition: var(--transition);
}
.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 120, 240, 0.25);
}

@media (max-width: 640px) {
  .modal-focus-grid {
    grid-template-columns: 1fr;
  }
  .modal-container {
    padding: 1.5rem;
    width: 95%;
  }
}



/* =========================================================
   WEB DEVELOPMENT PAGE — Dedicated Styles
   ========================================================= */

/* --- WD HERO --- */
.wd-hero {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 9.5rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.wd-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(0,120,240,0.15) 0%, rgba(10,15,30,0) 70%);
  pointer-events: none;
  z-index: 1;
}

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

.wd-hero h1 {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.wd-hero-tagline {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #93C5FD;
  background: rgba(0,120,240,0.12);
  border: 1px solid rgba(0,120,240,0.25);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.75rem;
}

/* --- Audience Strip --- */
.wd-audience-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-dark);
}
.wd-audience-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light-muted);
  white-space: nowrap;
}
.wd-audience-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.wd-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid var(--border-dark);
  background: rgba(255,255,255,0.04);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light-muted);
  transition: var(--transition);
}
.wd-pill:hover {
  background: rgba(0,120,240,0.12);
  border-color: rgba(0,120,240,0.35);
  color: var(--white);
}
.wd-pill i { color: var(--accent); font-size: 0.75rem; }

/* --- LAPTOP MOCKUP --- */
.wd-hero-mockup {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wd-laptop-shell { width: 100%; max-width: 520px; position: relative; }
.wd-laptop-screen {
  background: #1a2035;
  border-radius: 12px 12px 0 0;
  border: 2px solid rgba(255,255,255,0.12);
  border-bottom: none;
  padding: 8px;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}
.wd-laptop-screen::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 6px auto;
}
.wd-screen-inner { background: var(--bg-light); border-radius: 6px; overflow: hidden; min-height: 280px; }
.wd-screen-navbar { background: var(--bg-dark); padding: 8px 12px; display: flex; align-items: center; gap: 8px; }
.wd-screen-logo { width: 18px; height: 18px; border-radius: 4px; background: var(--accent); flex-shrink: 0; }
.wd-screen-nav-links { display: flex; gap: 6px; flex: 1; justify-content: center; }
.wd-screen-dot { width: 28px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.15); }
.wd-screen-cta-btn { width: 48px; height: 14px; border-radius: 7px; background: var(--accent); opacity: 0.8; }
.wd-screen-hero { background: linear-gradient(135deg, #000000 0%, #0048C8 100%); padding: 16px; display: flex; gap: 12px; align-items: center; }
.wd-screen-hero-text { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.wd-screen-h1 { height: 10px; border-radius: 4px; background: rgba(255,255,255,0.85); width: 100%; }
.wd-screen-h1.short { width: 65%; }
.wd-screen-p { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.35); width: 90%; margin-top: 3px; }
.wd-screen-p.short { width: 70%; }
.wd-screen-btns { display: flex; gap: 6px; margin-top: 8px; }
.wd-screen-btn-solid { height: 16px; width: 60px; border-radius: 8px; background: var(--accent); }
.wd-screen-btn-outline { height: 16px; width: 60px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.4); }
.wd-screen-hero-img { width: 80px; height: 60px; border-radius: 8px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.wd-screen-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; padding: 10px; }
.wd-screen-card { height: 40px; border-radius: 6px; background: var(--white); border: 1px solid var(--border-light); }
.wd-laptop-hinge { height: 4px; background: linear-gradient(to bottom, #1a1a2e, #0d0d1a); border-left: 2px solid rgba(255,255,255,0.08); border-right: 2px solid rgba(255,255,255,0.08); }
.wd-laptop-base { background: linear-gradient(to bottom, #1e2140, #141629); border-radius: 0 0 10px 10px; border: 2px solid rgba(255,255,255,0.08); border-top: none; padding: 10px 20px 14px 20px; }
.wd-laptop-keyboard { display: flex; flex-direction: column; gap: 5px; }
.wd-kb-row { height: 7px; background: rgba(255,255,255,0.07); border-radius: 3px; }
.wd-kb-row.short { width: 85%; margin: 0 auto; }
.wd-kb-row.shorter { width: 70%; margin: 0 auto; }
.wd-kb-trackpad { width: 40%; height: 20px; background: rgba(255,255,255,0.05); border-radius: 5px; border: 1px solid rgba(255,255,255,0.08); margin: 6px auto 0 auto; }
.wd-fc-top-right { top: 1.5rem; right: -1.5rem; }
.wd-fc-bottom-left { bottom: 4rem; left: -1.5rem; }

/* --- BENEFITS GRID --- */
.wd-benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.wd-benefit-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex; flex-direction: column; gap: 0.75rem;
  position: relative; overflow: hidden;
}
.wd-benefit-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--accent), #1FA8FF);
  border-radius: 0 3px 3px 0;
  transition: height 0.35s cubic-bezier(0.16,1,0.3,1);
}
.wd-benefit-card:hover::after { height: 100%; }
.wd-benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,120,240,0.15); }
.wd-benefit-icon {
  width: 48px; height: 48px;
  background: rgba(0,120,240,0.08);
  border: 1px solid rgba(0,120,240,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent); flex-shrink: 0;
  transition: var(--transition);
}
.wd-benefit-card:hover .wd-benefit-icon { background: var(--accent); color: var(--white); border-color: var(--accent); }
.wd-benefit-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark-heading); margin: 0; }
.wd-benefit-card p { font-size: 0.875rem; color: var(--text-dark-muted); line-height: 1.6; margin: 0; }

/* --- PROCESS --- */
.wd-process-section { background-color: var(--bg-dark); position: relative; overflow: hidden; }
.wd-process-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 60rem; height: 60rem;
  background: radial-gradient(circle, rgba(0,120,240,0.08) 0%, rgba(10,15,30,0) 70%);
  pointer-events: none;
}
.wd-process-timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.wd-process-connector { display: none; }
.wd-process-step {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 18px; padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: var(--transition);
}
.wd-process-step:hover { border-color: rgba(0,120,240,0.4); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.wd-process-step-number { font-size: 0.72rem; font-weight: 800; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }
.wd-process-step-icon {
  width: 48px; height: 48px;
  background: rgba(0,120,240,0.1); border: 1px solid rgba(0,120,240,0.2);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--accent); flex-shrink: 0; transition: var(--transition);
}
.wd-process-step:hover .wd-process-step-icon { background: var(--accent); color: var(--white); }
.wd-process-step-content h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.wd-process-step-content p { font-size: 0.85rem; color: var(--text-light-muted); line-height: 1.6; margin: 0; }

/* --- PACKAGES --- */
.wd-packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; align-items: stretch; }
.wd-package-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px; padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: var(--transition); position: relative;
}
.wd-package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: rgba(0,120,240,0.2); }
.wd-package-featured {
  background: linear-gradient(145deg, #000000 0%, #0048C8 100%);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0,120,240,0.25);
  transform: scale(1.03);
}
.wd-package-featured:hover { transform: scale(1.05) translateY(-4px); box-shadow: 0 25px 50px rgba(0,120,240,0.35); }
.wd-package-popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, #0078F0, #1FA8FF);
  color: var(--white); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.3rem 1.25rem; border-radius: 0 0 12px 12px; white-space: nowrap;
}
.wd-package-header { margin-bottom: 1.5rem; }
.wd-package-icon {
  width: 52px; height: 52px;
  background: rgba(0,120,240,0.08); border: 1px solid rgba(0,120,240,0.18);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--accent); margin-bottom: 1.25rem;
}
.featured-icon { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #FBBF24; }
.wd-package-header h3 { font-size: 1.35rem; font-weight: 800; color: var(--text-dark-heading); margin-bottom: 0.5rem; }
.wd-package-featured .wd-package-header h3 { color: var(--white); }
.wd-package-header p { font-size: 0.875rem; color: var(--text-dark-muted); line-height: 1.55; }
.wd-package-featured .wd-package-header p { color: rgba(255,255,255,0.65); }
.wd-package-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.75rem; }
.wd-price { font-size: 2.5rem; font-weight: 800; color: var(--accent); letter-spacing: -0.04em; line-height: 1; }
.wd-package-featured .wd-price { color: #93C5FD; }
.wd-price-note { font-size: 0.78rem; color: var(--text-dark-muted); font-weight: 500; }
.wd-package-featured .wd-price-note { color: rgba(255,255,255,0.5); }
.wd-package-delivery {
  font-size: 0.82rem; color: var(--text-dark-muted); margin-bottom: 1.75rem;
  padding: 0.6rem 1rem;
  background: rgba(0,120,240,0.05); border-radius: 8px; border: 1px solid rgba(0,120,240,0.1);
}
.wd-package-delivery i { color: var(--accent); margin-right: 0.25rem; }
.wd-package-featured .wd-package-delivery { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
.wd-package-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; flex-grow: 1; }
.wd-package-features li { font-size: 0.9rem; color: var(--text-dark); display: flex; align-items: center; gap: 0.75rem; }
.wd-package-featured .wd-package-features li { color: rgba(255,255,255,0.85); }
.wd-package-features i.fa-circle-check { color: #10B981; font-size: 0.9rem; flex-shrink: 0; }
.wd-feature-unavailable { opacity: 0.4; }
.wd-feature-unavailable i.fa-circle-xmark { color: var(--text-dark-muted); }
.wd-package-featured .wd-feature-unavailable i.fa-circle-xmark { color: rgba(255,255,255,0.3); }

/* --- HOSTING --- */
.wd-hosting-section { background-color: var(--bg-dark); position: relative; }
.wd-hosting-wrapper { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: center; }
.wd-hosting-highlight {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(0,120,240,0.12); border: 1px solid rgba(0,120,240,0.3);
  border-radius: 14px; padding: 1.25rem 1.5rem;
}
.wd-hosting-highlight i { color: var(--accent); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; }
.wd-hosting-highlight p { font-size: 0.95rem; color: var(--white); font-weight: 600; margin: 0; line-height: 1.55; }
.wd-hosting-items { display: flex; flex-direction: column; gap: 1rem; }
.wd-hosting-item {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--bg-dark-card); border: 1px solid var(--border-dark);
  border-radius: 14px; padding: 1.25rem 1.5rem; transition: var(--transition);
}
.wd-hosting-item:hover { border-color: rgba(0,120,240,0.35); transform: translateX(4px); }
.wd-hosting-item-icon {
  width: 44px; height: 44px;
  background: rgba(0,120,240,0.1); border: 1px solid rgba(0,120,240,0.2);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem; flex-shrink: 0;
}
.wd-hosting-item-content { flex: 1; }
.wd-hosting-item-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.wd-hosting-item-content p { font-size: 0.82rem; color: var(--text-light-muted); line-height: 1.5; margin: 0; }
.wd-hosting-badge { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 6px; white-space: nowrap; flex-shrink: 0; }
.client-badge   { background: rgba(139,92,246,0.15); color: #A78BFA; border: 1px solid rgba(139,92,246,0.25); }
.managed-badge  { background: rgba(0,120,240,0.15);  color: #1FA8FF; border: 1px solid rgba(0,120,240,0.25); }
.free-badge     { background: rgba(16,185,129,0.15); color: #34D399; border: 1px solid rgba(16,185,129,0.25); }
.available-badge { background: rgba(245,158,11,0.15); color: #FCD34D; border: 1px solid rgba(245,158,11,0.25); }
.yearly-badge   { background: rgba(239,68,68,0.12);  color: #F87171; border: 1px solid rgba(239,68,68,0.2); }

/* --- INCLUDES --- */
.wd-includes-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 1.25rem; }
.wd-include-item {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 1.5rem 1rem; text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.wd-include-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(0,120,240,0.15); }
.wd-include-icon {
  width: 44px; height: 44px;
  background: rgba(0,120,240,0.08); border: 1px solid rgba(0,120,240,0.15);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--accent); transition: var(--transition);
}
.wd-include-item:hover .wd-include-icon { background: var(--accent); color: var(--white); }
.wd-include-item span { font-size: 0.82rem; font-weight: 600; color: var(--text-dark-heading); line-height: 1.3; }

/* --- PORTFOLIO --- */
.wd-portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.wd-portfolio-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-md); transition: var(--transition);
  display: flex; flex-direction: column;
}
.wd-portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: rgba(0,120,240,0.2); }
.wd-portfolio-img {
  height: 180px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.wd-port-clinic     { background: linear-gradient(135deg, #000000 0%, #0048C8 100%); }
.wd-port-restaurant { background: linear-gradient(135deg, #1a0a00 0%, #7c2d12 100%); }
.wd-port-school     { background: linear-gradient(135deg, #042f2e 0%, #115e59 100%); }
.wd-port-realestate { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); }
.wd-port-salon      { background: linear-gradient(135deg, #2e1065 0%, #581c87 100%); }
.wd-port-gym        { background: linear-gradient(135deg, #450a0a 0%, #991b1b 100%); }
.wd-port-screen-sim {
  width: 100%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.wd-portfolio-card:hover .wd-port-screen-sim { transform: scale(1.03); }
.wd-port-sim-bar { height: 20px; background: rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.05); }
.wd-port-sim-hero { height: 55px; background: linear-gradient(135deg, rgba(0,120,240,0.4) 0%, rgba(0,120,240,0.1) 100%); }
.wd-port-sim-hero.orange { background: linear-gradient(135deg, rgba(249,115,22,0.5) 0%, rgba(249,115,22,0.15) 100%); }
.wd-port-sim-hero.teal   { background: linear-gradient(135deg, rgba(20,184,166,0.5) 0%, rgba(20,184,166,0.15) 100%); }
.wd-port-sim-hero.dark   { background: linear-gradient(135deg, rgba(100,116,139,0.4) 0%, rgba(100,116,139,0.1) 100%); }
.wd-port-sim-hero.purple { background: linear-gradient(135deg, rgba(139,92,246,0.5) 0%, rgba(139,92,246,0.15) 100%); }
.wd-port-sim-hero.red    { background: linear-gradient(135deg, rgba(239,68,68,0.5) 0%, rgba(239,68,68,0.15) 100%); }
.wd-port-sim-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; padding: 8px; }
.wd-port-sim-card { height: 28px; border-radius: 5px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.06); }
.wd-portfolio-body { padding: 1.75rem; flex-grow: 1; display: flex; flex-direction: column; }
.wd-portfolio-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.875rem; }
.wd-portfolio-industry { font-size: 0.78rem; font-weight: 700; color: var(--accent); display: flex; align-items: center; gap: 0.35rem; }
.wd-portfolio-tech { font-size: 0.72rem; color: var(--text-dark-muted); font-weight: 500; background: var(--bg-light); padding: 0.25rem 0.6rem; border-radius: 6px; border: 1px solid var(--border-light); }
.wd-portfolio-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark-heading); margin-bottom: 0.5rem; }
.wd-portfolio-body p { font-size: 0.875rem; color: var(--text-dark-muted); line-height: 1.6; margin-bottom: 1.25rem; flex-grow: 1; }
.wd-portfolio-btn { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 700; color: var(--accent); margin-top: auto; transition: var(--transition); }
.wd-portfolio-btn:hover { gap: 0.7rem; color: var(--accent-hover); }

/* --- FAQ --- */
.wd-faq-grid { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.wd-faq-item {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.wd-faq-item.open { border-color: rgba(0,120,240,0.25); box-shadow: 0 4px 16px rgba(0,120,240,0.08); }
.wd-faq-question {
  width: 100%; background: none; border: none;
  padding: 1.35rem 1.75rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left; cursor: pointer; transition: background-color 0.2s ease;
}
.wd-faq-question:hover { background-color: rgba(0,120,240,0.03); }
.wd-faq-question span { font-size: 1rem; font-weight: 700; color: var(--text-dark-heading); line-height: 1.4; }
.wd-faq-icon { color: var(--accent); font-size: 0.9rem; flex-shrink: 0; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); }
.wd-faq-item.open .wd-faq-icon { transform: rotate(180deg); }
.wd-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); }
.wd-faq-answer p { padding: 0 1.75rem 1.5rem 1.75rem; font-size: 0.925rem; color: var(--text-dark-muted); line-height: 1.75; margin: 0; }

/* =========================================================
   WEB DEV — RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .wd-hero h1 { font-size: 2.6rem; }
  .wd-benefits-grid { grid-template-columns: repeat(2,1fr); }
  .wd-process-timeline { grid-template-columns: repeat(3,1fr); }
  .wd-packages-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .wd-package-featured { transform: none; }
  .wd-package-featured:hover { transform: translateY(-4px); }
  .wd-hosting-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .wd-includes-grid { grid-template-columns: repeat(4,1fr); }
  .wd-portfolio-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .wd-hero { padding: 7.5rem 0 4rem 0; }
  .wd-hero h1 { font-size: 2.1rem; }
  .wd-hero .grid-2 { grid-template-columns: 1fr; }
  .wd-hero-mockup { order: -1; }
  .wd-laptop-shell { max-width: 340px; }
  .wd-fc-top-right { right: 0; top: 1rem; }
  .wd-fc-bottom-left { left: 0; bottom: 5rem; }
  .wd-audience-strip { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .wd-benefits-grid { grid-template-columns: repeat(2,1fr); }
  .wd-process-timeline { grid-template-columns: repeat(2,1fr); }
  .wd-packages-grid { max-width: 100%; }
  .wd-includes-grid { grid-template-columns: repeat(3,1fr); }
  .wd-portfolio-grid { grid-template-columns: 1fr; }
  .wd-hosting-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .wd-hero h1 { font-size: 1.85rem; }
  .wd-benefits-grid { grid-template-columns: 1fr; }
  .wd-process-timeline { grid-template-columns: 1fr; }
  .wd-includes-grid { grid-template-columns: repeat(2,1fr); }
  .wd-audience-pills { gap: 0.4rem; }
  .wd-faq-question span { font-size: 0.9rem; }
}

/* Browser Bar Simulation for Live Portfolio Cards */
.wd-port-sim-bar {
  height: 26px !important;
  background: rgba(15, 23, 42, 0.75) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 10px !important;
  gap: 8px !important;
}

.wd-port-sim-dots {
  display: flex;
  gap: 4px;
}

.wd-port-sim-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.wd-dot-red { background: #EF4444; }
.wd-dot-yellow { background: #F59E0B; }
.wd-dot-green { background: #10B981; }

.wd-port-sim-url {
  font-size: 0.65rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  padding: 2px 10px;
  border-radius: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Hero Image Container for Web Development Page */
.wd-hero-img-container {
  width: 100%;
  max-width: 580px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 120, 240, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wd-hero-img-container:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(0, 120, 240, 0.4);
  border-color: rgba(0, 120, 240, 0.4);
}

.wd-hero-img-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* --- ENTERPRISE GOLD PACKAGE (TOGGLED) --- */
.btn-gold-toggle {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(217, 119, 6, 0.08));
  border: 1.5px solid rgba(245, 158, 11, 0.4);
  color: #D97706;
  padding: 0.95rem 2.25rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.12);
}

.btn-gold-toggle:hover {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #FFFFFF;
  border-color: #F59E0B;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.35);
  transform: translateY(-2px);
}

.btn-gold-toggle:hover i {
  color: #FFFFFF !important;
}

#goldPackageContainer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.4s ease;
  margin-top: 0;
}

#goldPackageContainer.open {
  max-height: 1200px;
  opacity: 1;
  margin-top: 2.5rem;
}

.wd-gold-package-card {
  background: linear-gradient(135deg, #000000 0%, #1A1405 50%, #2A1F06 100%);
  border: 2px solid #F59E0B;
  border-radius: 24px;
  padding: 3rem 3rem;
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.22), 0 0 35px rgba(245, 158, 11, 0.15);
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.wd-gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #F59E0B, #FBBF24, #D97706);
  color: #000000;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.35rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.wd-gold-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.wd-gold-header-left h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.wd-gold-header-left p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 620px;
  line-height: 1.6;
}

.wd-gold-price-box {
  text-align: right;
  flex-shrink: 0;
}

.wd-gold-price {
  font-size: 2.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FBBF24, #F59E0B, #D97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.wd-gold-price-note {
  font-size: 0.82rem;
  color: rgba(251, 191, 36, 0.8);
  font-weight: 600;
}

.wd-gold-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2.5rem;
  margin-bottom: 2.5rem;
}

.wd-gold-feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.wd-gold-feature-item i {
  color: #FBBF24;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.wd-gold-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.wd-gold-delivery {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(251, 191, 36, 0.9);
  background: rgba(245, 158, 11, 0.1);
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.btn-gold-solid {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #000000 !important;
  font-weight: 800;
  padding: 0.95rem 2.5rem;
  border-radius: 9999px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.btn-gold-solid:hover {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
  color: #000000 !important;
}

@media (max-width: 992px) {
  .wd-gold-header { flex-direction: column; gap: 1.25rem; }
  .wd-gold-price-box { text-align: left; }
  .wd-gold-features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .wd-gold-footer { flex-direction: column; align-items: stretch; text-align: center; }
  .btn-gold-solid { justify-content: center; }
}

/* =========================================================
   PERFECT MOBILE RESPONSIVE FIXES (HERO & LAYOUT)
   ========================================================= */
@media (max-width: 768px) {
  .wd-hero {
    padding: 6.25rem 0 3rem 0 !important;
    overflow-x: hidden !important;
  }

  .wd-hero .grid-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .wd-hero-content {
    order: 1 !important;
    text-align: left !important;
  }

  .wd-hero-mockup {
    order: 2 !important;
    margin-top: 0.5rem !important;
    width: 100% !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .wd-hero h1 {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
    word-break: break-word !important;
    margin-bottom: 0.85rem !important;
  }

  .hero-subtext {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.25rem !important;
  }

  .wd-hero-tagline {
    font-size: 0.82rem !important;
    white-space: normal !important;
    max-width: 100% !important;
    line-height: 1.45 !important;
    padding: 0.6rem 0.9rem !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
  }

  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    font-size: 0.9rem !important;
    padding: 0.85rem 1.25rem !important;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
    margin-top: 1.5rem !important;
    padding-top: 1.25rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .hero-stat-value {
    font-size: 1.35rem !important;
  }

  .hero-stat-label {
    font-size: 0.72rem !important;
    line-height: 1.25 !important;
  }

  .wd-hero-img-container {
    max-width: 100% !important;
    border-radius: 14px !important;
  }

  .wd-hero-mockup .floating-card {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0.65rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  }
}

@media (max-width: 480px) {
  .wd-hero h1 {
    font-size: 1.65rem !important;
  }

  .wd-hero-tagline {
    font-size: 0.78rem !important;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.35rem !important;
  }

  .hero-stat-value {
    font-size: 1.2rem !important;
  }

  .hero-stat-label {
    font-size: 0.68rem !important;
  }
}

/* --- HERO PRICE BADGE & WHY CHOOSE US BLOCK --- */
.wd-hero-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(0, 120, 240, 0.2), rgba(16, 185, 129, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #93C5FD;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 120, 240, 0.2);
}

.wd-hero-price-badge strong {
  color: #34D399;
  font-size: 1.15rem;
  font-weight: 800;
}

.wd-hero-why {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.wd-why-title {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wd-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.25rem;
}

.wd-why-item {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.wd-why-item i {
  color: #1FA8FF;
  font-size: 0.95rem;
  width: 18px;
  text-align: center;
}

@media (max-width: 480px) {
  .wd-why-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

/* --- HERO PULSING WEB DEV BUTTON --- */
.btn-hero-pulsing-webdev {
  background: linear-gradient(90deg, #0048C8, #0078F0, #1FA8FF, #0048C8) !important;
  background-size: 300% 100% !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  border: none !important;
  box-shadow: 0 0 20px rgba(0, 120, 240, 0.6) !important;
  animation: gradientShift 5s linear infinite, pulseButton 2s infinite !important;
}

.btn-hero-pulsing-webdev:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 0 30px rgba(31, 168, 255, 0.9), 0 0 15px rgba(0, 120, 240, 0.7) !important;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 120, 240, 0.6), 0 0 10px rgba(31, 168, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 120, 240, 0), 0 0 20px rgba(31, 168, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 120, 240, 0), 0 0 10px rgba(31, 168, 255, 0.4);
  }
}

/* --- GLASSMORPHISM CARD OVERRIDES --- */
.service-card,
.service-detail-card,
.info-card,
.contact-form-card,
.wd-benefit-card,
.team-card,
.modal-container,
.wd-screen-card,
.wd-screen-card-content,
.wd-feature-card,
.wd-package-card,
.wd-portfolio-card,
.client-card,
.stat-card,
.faq-item,
.wd-faq-item,
.testimonial-card,
.address-block,
.story-card,
.case-study-card,
.credential-card,
.feature-icon-box {
  background-color: var(--glass-bg) !important;
  background: var(--glass-bg) !important;
  backdrop-filter: var(--backdrop-blur) !important;
  -webkit-backdrop-filter: var(--backdrop-blur) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5) !important;
  transition: var(--transition) !important;
}

/* Text & Contrast Fixes inside Cards */
.testimonial-card .testimonial-text,
.testimonial-text {
  color: #F1F5F9 !important;
}

.testimonial-name,
.testimonial-info .testimonial-name {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

.testimonial-role,
.testimonial-info .testimonial-role {
  color: #94A3B8 !important;
}

.wd-faq-question span {
  color: #FFFFFF !important;
}

.wd-faq-answer p {
  color: #CBD5E1 !important;
}

.address-block,
.address-block h3,
.address-block span,
.address-block label {
  color: #FFFFFF !important;
}

.address-row-text label {
  color: #94A3B8 !important;
}

/* Team Card Contrast Fixes */
.team-card h3,
.team-card .team-name {
  color: #FFFFFF !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  margin-top: 0.75rem !important;
  margin-bottom: 0.35rem !important;
}

.team-card .team-role {
  color: #1FA8FF !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 0.75rem !important;
}

.team-card .team-bio {
  color: #CBD5E1 !important;
  font-size: 0.925rem !important;
  line-height: 1.6 !important;
}

/* Glassmorphism Card Hover States */
.service-card:hover,
.service-detail-card:hover,
.info-card:hover,
.contact-form-card:hover,
.wd-benefit-card:hover,
.team-card:hover,
.wd-screen-card:hover,
.wd-screen-card-content:hover,
.wd-feature-card:hover,
.wd-package-card:hover,
.wd-portfolio-card:hover,
.client-card:hover,
.stat-card:hover,
.faq-item:hover,
.wd-faq-item:hover,
.testimonial-card:hover,
.address-block:hover,
.story-card:hover,
.case-study-card:hover,
.credential-card:hover,
.feature-icon-box:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(0, 120, 240, 0.45) !important;
  box-shadow: var(--blue-glow), 0 8px 32px 0 rgba(0, 0, 0, 0.5) !important;
}

/* Form Glassmorphism */
.form-control {
  background-color: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 15px rgba(0, 120, 240, 0.35) !important;
}

/* --- PREMIUM HIGHLIGHT FOR MOST POPULAR PACKAGE --- */
.wd-package-featured {
  background: linear-gradient(135deg, rgba(10, 10, 12, 0.9) 0%, rgba(0, 72, 200, 0.35) 100%) !important;
  border: 2px solid #0078F0 !important;
  box-shadow: 0 0 35px rgba(0, 120, 240, 0.45), inset 0 0 20px rgba(31, 168, 255, 0.15) !important;
  transform: scale(1.05) !important;
  backdrop-filter: var(--backdrop-blur) !important;
  -webkit-backdrop-filter: var(--backdrop-blur) !important;
}

.wd-package-featured:hover {
  transform: scale(1.07) translateY(-8px) !important;
  border-color: #1FA8FF !important;
  box-shadow: 0 0 45px rgba(0, 120, 240, 0.6), inset 0 0 25px rgba(31, 168, 255, 0.25) !important;
}

.wd-package-popular-badge {
  background: linear-gradient(90deg, #0078F0, #1FA8FF) !important;
  box-shadow: 0 0 15px rgba(0, 120, 240, 0.5) !important;
  color: #FFFFFF !important;
}

/* --- DEDICATED WEB DESIGN FOOTER CONTACT BADGE --- */
.footer-webdev-contact-box {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 120, 240, 0.15) 0%, rgba(31, 168, 255, 0.25) 100%);
  border: 1.5px solid rgba(31, 168, 255, 0.5);
  box-shadow: 0 0 25px rgba(0, 120, 240, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: webdevPulseGlow 3s infinite ease-in-out;
  transition: all 0.3s ease;
}

.footer-webdev-contact-box:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px rgba(31, 168, 255, 0.6);
  border-color: #1FA8FF;
}

.webdev-contact-badge-pulse {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
  flex-shrink: 0;
  animation: whatsappPulse 2s infinite;
}

.webdev-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.webdev-contact-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: #1FA8FF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.webdev-contact-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.webdev-contact-num:hover {
  color: #1FA8FF !important;
}

@keyframes webdevPulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 120, 240, 0.25);
    border-color: rgba(31, 168, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 35px rgba(31, 168, 255, 0.55);
    border-color: rgba(31, 168, 255, 0.85);
  }
}

@keyframes whatsappPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* --- TECH STACK & WORKFLOW ARCHITECTURE --- */
.wd-tech-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 2rem !important;
  margin-top: 3rem !important;
  width: 100% !important;
}

.wd-tech-card {
  background: linear-gradient(145deg, rgba(13, 20, 36, 0.85) 0%, rgba(5, 10, 20, 0.95) 100%) !important;
  border: 1px solid rgba(0, 120, 240, 0.22) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-radius: 22px !important;
  padding: 2.25rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.25rem !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.wd-tech-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, #0078F0, #1FA8FF, #00E5FF);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.wd-tech-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: #1FA8FF !important;
  box-shadow: 0 20px 45px rgba(0, 120, 240, 0.4), inset 0 0 15px rgba(31, 168, 255, 0.1) !important;
}

.wd-tech-card:hover::before {
  opacity: 1;
}

.wd-tech-header-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
}

.wd-tech-icon-box {
  width: 64px !important;
  height: 64px !important;
  border-radius: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.8rem !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease !important;
}

.wd-tech-card:hover .wd-tech-icon-box {
  transform: scale(1.12) rotate(4deg) !important;
}

/* Individual Tech Brand Colors & Glowing Auras */
.icon-html5 {
  background: rgba(255, 87, 34, 0.15) !important;
  border: 1.5px solid rgba(255, 87, 34, 0.4) !important;
  color: #FF5722 !important;
  box-shadow: 0 0 20px rgba(255, 87, 34, 0.3) !important;
}

.icon-css3 {
  background: rgba(41, 101, 241, 0.15) !important;
  border: 1.5px solid rgba(41, 101, 241, 0.4) !important;
  color: #2965F1 !important;
  box-shadow: 0 0 20px rgba(41, 101, 241, 0.3) !important;
}

.icon-js {
  background: rgba(247, 223, 30, 0.15) !important;
  border: 1.5px solid rgba(247, 223, 30, 0.4) !important;
  color: #F7DF1E !important;
  box-shadow: 0 0 20px rgba(247, 223, 30, 0.3) !important;
}

.icon-github {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25) !important;
}

.icon-hostinger {
  background: rgba(139, 92, 246, 0.15) !important;
  border: 1.5px solid rgba(139, 92, 246, 0.4) !important;
  color: #A78BFA !important;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3) !important;
}

.icon-seo {
  background: rgba(16, 185, 129, 0.15) !important;
  border: 1.5px solid rgba(16, 185, 129, 0.4) !important;
  color: #34D399 !important;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3) !important;
}

.icon-speed {
  background: rgba(0, 229, 255, 0.15) !important;
  border: 1.5px solid rgba(0, 229, 255, 0.4) !important;
  color: #00E5FF !important;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.35) !important;
}

.wd-tech-content h3 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  margin-bottom: 0.6rem !important;
  letter-spacing: -0.01em !important;
}

.wd-tech-content p {
  font-size: 0.925rem !important;
  color: #CBD5E1 !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

.wd-tech-badge {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 0.35rem 0.9rem !important;
  border-radius: 50px !important;
  background: rgba(0, 120, 240, 0.15) !important;
  color: #1FA8FF !important;
  border: 1.5px solid rgba(31, 168, 255, 0.4) !important;
  box-shadow: 0 0 10px rgba(0, 120, 240, 0.2) !important;
}

/* --- HIGH-END GLASSMORPHIC FORM & ADDRESS BLOCK SYSTEM --- */
.contact-form-card {
  background: linear-gradient(145deg, rgba(13, 20, 36, 0.95) 0%, rgba(6, 12, 24, 0.98) 100%) !important;
  border: 1px solid rgba(0, 120, 240, 0.35) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 24px !important;
  padding: 2.5rem 2rem !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(0, 120, 240, 0.1) !important;
}

.contact-form-card h3 {
  font-size: 1.45rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  margin-bottom: 0.4rem !important;
}

.contact-form-card p.form-sub {
  font-size: 0.9rem !important;
  color: #94A3B8 !important;
  margin-bottom: 1.75rem !important;
}

.form-group label {
  display: block !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #E2E8F0 !important;
  margin-bottom: 0.5rem !important;
  letter-spacing: 0.02em !important;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100% !important;
  background: rgba(15, 23, 42, 0.8) !important;
  border: 1.5px solid rgba(0, 120, 240, 0.35) !important;
  border-radius: 14px !important;
  padding: 0.85rem 1.15rem !important;
  color: #FFFFFF !important;
  font-size: 0.95rem !important;
  font-family: inherit !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4) !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #64748B !important;
  opacity: 0.8 !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none !important;
  background: rgba(15, 23, 42, 0.95) !important;
  border-color: #00E5FF !important;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.35), inset 0 2px 4px rgba(0, 0, 0, 0.4) !important;
  transform: translateY(-2px) !important;
}

.form-submit-btn,
button[type="submit"] {
  width: 100% !important;
  background: linear-gradient(135deg, #0078F0 0%, #00E5FF 100%) !important;
  color: #FFFFFF !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 0.95rem 1.75rem !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.6rem !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 8px 25px rgba(0, 120, 240, 0.5) !important;
}

.form-submit-btn:hover,
button[type="submit"]:hover {
  transform: translateY(-3px) scale(1.01) !important;
  box-shadow: 0 14px 35px rgba(0, 229, 255, 0.65) !important;
  background: linear-gradient(135deg, #006AD5 0%, #1FA8FF 100%) !important;
}

.address-block {
  background: linear-gradient(145deg, rgba(13, 20, 36, 0.95) 0%, rgba(6, 12, 24, 0.98) 100%) !important;
  border: 1px solid rgba(0, 120, 240, 0.35) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 24px !important;
  padding: 2.25rem 2rem !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
}

.address-block h3 {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  margin-bottom: 1.5rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  border-bottom: 2px solid #00E5FF !important;
  padding-bottom: 0.75rem !important;
}

.address-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.address-row-text label {
  color: #00E5FF !important;
  font-weight: 700 !important;
}

.address-row-text span {
  color: #F1F5F9 !important;
}





