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

/* ============================================
   FixitPro — Brand Design System
   Primary: Deep Navy | Secondary: Professional Blue | Accent: Orange
   ============================================ */

:root {
  /* Color Ramps */
  --fp-navy-900: #0a1628;
  --fp-navy-800: #0f2444;
  --fp-navy-700: #163566;
  --fp-navy-600: #1e4677;
  --fp-blue-600: #1a6fc4;
  --fp-blue-500: #2b87e0;
  --fp-blue-400: #4ba3f0;
  --fp-blue-100: #e3f0fc;
  --fp-blue-50:  #f0f7ff;

  --fp-orange-600: #e8750c;
  --fp-orange-500: #f58a1a;
  --fp-orange-400: #ffa033;
  --fp-orange-100: #fff0e0;

  --fp-success: #2ba84a;
  --fp-warning: #f0a500;
  --fp-danger:  #e0353b;
  --fp-info:    #17a2b8;

  --fp-gray-900: #1a1f2e;
  --fp-gray-800: #2d3548;
  --fp-gray-700: #495065;
  --fp-gray-600: #6b7180;
  --fp-gray-500: #8d93a2;
  --fp-gray-400: #b0b5c0;
  --fp-gray-300: #d5d9e0;
  --fp-gray-200: #e8ebef;
  --fp-gray-100: #f4f6f8;
  --fp-gray-50:  #fafbfc;

  --fp-white: #ffffff;

  /* Semantic */
  --fp-primary:   var(--fp-navy-800);
  --fp-primary-light: var(--fp-navy-600);
  --fp-secondary: var(--fp-blue-600);
  --fp-accent:    var(--fp-orange-500);
  --fp-accent-dark: var(--fp-orange-600);

  /* Typography */
  --fp-font-sans: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --fp-font-heading: 'Poppins', 'Segoe UI', system-ui, sans-serif;

  /* Spacing (8px system) */
  --fp-sp-1: 0.5rem;
  --fp-sp-2: 1rem;
  --fp-sp-3: 1.5rem;
  --fp-sp-4: 2rem;
  --fp-sp-5: 2.5rem;
  --fp-sp-6: 3rem;
  --fp-sp-7: 4rem;
  --fp-sp-8: 5rem;

  /* Radius */
  --fp-radius-sm: 6px;
  --fp-radius:    12px;
  --fp-radius-lg: 18px;
  --fp-radius-xl: 24px;

  /* Shadows */
  --fp-shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
  --fp-shadow:    0 4px 16px rgba(10, 22, 40, 0.10);
  --fp-shadow-lg: 0 10px 40px rgba(10, 22, 40, 0.14);
  --fp-shadow-xl: 0 20px 60px rgba(10, 22, 40, 0.18);

  /* Transitions */
  --fp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Base
   ============================================ */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--fp-font-sans);
  color: var(--fp-gray-800);
  background-color: var(--fp-white);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fp-font-heading);
  font-weight: 700;
  color: var(--fp-navy-800);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p { color: var(--fp-gray-700); }

a { text-decoration: none; transition: var(--fp-transition); }

.section-padding {
  padding: var(--fp-sp-8) 0;
}

.section-padding-sm {
  padding: var(--fp-sp-7) 0;
}

.bg-navy { background-color: var(--fp-navy-800); }
.bg-navy-900 { background-color: var(--fp-navy-900); }
.bg-light-gray { background-color: var(--fp-gray-50); }
.bg-blue-50 { background-color: var(--fp-blue-50); }

.text-accent { color: var(--fp-accent) !important; }
.text-navy { color: var(--fp-navy-800) !important; }
.text-blue { color: var(--fp-blue-600) !important; }

/* ============================================
   Section Headers
   ============================================ */

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fp-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--fp-gray-600);
  max-width: 640px;
  margin: 0 auto 3rem;
}

.text-on-dark h1,
.text-on-dark h2,
.text-on-dark h3,
.text-on-dark h4 {
  color: var(--fp-white);
}

.text-on-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.text-on-dark .section-eyebrow {
  color: var(--fp-orange-400);
}

/* ============================================
   Navbar
   ============================================ */

.fp-navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 1px 0 rgba(10, 22, 40, 0.06);
  transition: var(--fp-transition);
  z-index: 1030;
}

.fp-navbar .container { min-height: 72px; }
.fp-navbar .navbar-collapse { align-items: center; }
.fp-navbar .navbar-nav { gap: .1rem; }
.fp-navbar .nav-link { white-space: nowrap; }

.fp-navbar.scrolled {
  box-shadow: var(--fp-shadow);
}

.fp-logo {
  font-family: var(--fp-font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--fp-navy-800);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fp-logo .logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--fp-navy-700), var(--fp-blue-600));
  border-radius: 9px;
  color: #fff;
  font-size: 1.1rem;
}

.fp-logo .logo-accent { color: var(--fp-accent); }

.site-logo {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.fp-navbar .nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fp-gray-700) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: 8px;
  transition: var(--fp-transition);
}

.fp-navbar .nav-link:hover,
.fp-navbar .nav-link.active {
  color: var(--fp-blue-600) !important;
  background: var(--fp-blue-50);
}

.fp-navbar .nav-link.active {
  font-weight: 700;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  font-weight: 600;
  border-radius: var(--fp-radius-sm);
  padding: 0.6rem 1.4rem;
  transition: var(--fp-transition);
  border: 2px solid transparent;
}

.btn-lg {
  padding: 0.8rem 1.8rem;
  font-size: 1.05rem;
}

.btn-accent {
  background: var(--fp-accent);
  border-color: var(--fp-accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--fp-accent-dark);
  border-color: var(--fp-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 117, 12, 0.35);
}

.btn-navy {
  background: var(--fp-navy-800);
  border-color: var(--fp-navy-800);
  color: #fff;
}

.btn-navy:hover {
  background: var(--fp-navy-700);
  border-color: var(--fp-navy-700);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 36, 68, 0.35);
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--fp-navy-700);
  color: var(--fp-navy-800);
}

.btn-outline-navy:hover {
  background: var(--fp-navy-800);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

.btn-blue {
  background: var(--fp-blue-600);
  border-color: var(--fp-blue-600);
  color: #fff;
}

.btn-blue:hover {
  background: var(--fp-navy-700);
  border-color: var(--fp-navy-700);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   Hero
   ============================================ */

.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--fp-navy-900) 0%, var(--fp-navy-700) 50%, var(--fp-navy-600) 100%);
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(15,36,68,0.75) 60%, rgba(30,70,119,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 138, 26, 0.15);
  border: 1px solid rgba(245, 138, 26, 0.4);
  color: var(--fp-orange-400);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--fp-orange-400);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}

/* Home hero: editorial project-showcase composition */
.hero-section .hero-bg-image { opacity: .09; filter: grayscale(1) contrast(1.1); transform: scale(1.03); }
.hero-section .hero-overlay { background: linear-gradient(105deg, rgba(13,22,33,.98) 0%, rgba(20,34,47,.95) 48%, rgba(31,43,51,.78) 100%); }
.hero-section::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -150px;
  bottom: -200px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.018);
}
.hero-section .hero-content { padding: 7.5rem 0 5.25rem; }
.hero-section .hero-stats { gap: 0; margin-top: 3.25rem; }
.hero-section .hero-stats > div { min-width: 136px; padding-right: 1.5rem; margin-right: 1.5rem; border-right: 1px solid rgba(255,255,255,.18); }
.hero-section .hero-stats > div:last-child { border-right: 0; margin-right: 0; }
.hero-showcase-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: rgba(20,31,42,.82);
  box-shadow: 0 24px 70px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
}
.hero-showcase-top { display: flex; align-items: center; justify-content: space-between; padding: 1.05rem 1.25rem; color: #fff; font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.hero-showcase-label { display: inline-flex; align-items: center; gap: .45rem; color: rgba(255,255,255,.8); }
.hero-live-dot { color: #b7f5c4; font-size: .68rem; }
.hero-live-dot::before { content: ''; display: inline-block; width: 7px; height: 7px; margin-right: .35rem; border-radius: 50%; background: #55d770; box-shadow: 0 0 0 4px rgba(85,215,112,.12); }
.hero-showcase-image {
  position: relative;
  height: 215px;
  overflow: hidden;
  background: radial-gradient(circle at 75% 15%, rgba(245, 138, 26, .23), transparent 30%), linear-gradient(145deg, #344653 0%, #223542 45%, #142431 100%);
}
.hero-visual-grid {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent);
}
.hero-visual-building { position: absolute; bottom: 0; display: grid; gap: 7px; padding: 14px 12px; border: 1px solid rgba(255,255,255,.25); border-bottom: 0; border-radius: 6px 6px 0 0; background: linear-gradient(90deg, rgba(18,32,42,.94), rgba(52,71,78,.74)); box-shadow: inset -12px 0 20px rgba(255,255,255,.06); }
.hero-visual-building span { display: block; width: 22px; height: 9px; border-radius: 1px; background: linear-gradient(90deg, #fdb55a, #ffe1a9); box-shadow: 0 0 12px rgba(255,190,92,.5); }
.building-one { right: 52px; width: 112px; height: 166px; grid-template-columns: repeat(3, 1fr); align-content: start; }
.building-two { right: 160px; width: 76px; height: 112px; grid-template-columns: repeat(2, 1fr); align-content: start; opacity: .88; }
.hero-visual-route { position: absolute; display: flex; align-items: center; gap: 8px; left: 25px; bottom: 29px; color: var(--fp-orange-400); font-size: 1rem; }
.hero-visual-route span { width: 83px; height: 2px; border-top: 2px dashed rgba(255,255,255,.75); }
.hero-visual-route .bi-check-circle-fill { color: #59dc79; }
.hero-visual-status { position: absolute; top: 20px; left: 20px; display: inline-flex; align-items: center; gap: 7px; padding: .48rem .7rem; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: rgba(4,17,35,.42); color: #e5f4ff; font-size: .72rem; font-weight: 700; backdrop-filter: blur(5px); }
.hero-visual-status i { color: #59dc79; font-size: .9rem; }
.hero-showcase-body { padding: 1.45rem 1.5rem 1.5rem; }
.hero-showcase-kicker { color: var(--fp-orange-400) !important; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .45rem; }
.hero-showcase-body h2 { color: #fff; font-size: 1.45rem; margin-bottom: .65rem; }
.hero-showcase-body > p:not(.hero-showcase-kicker) { color: rgba(255,255,255,.68); font-size: .88rem; margin-bottom: 1.25rem; }
.hero-showcase-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.1rem; }
.hero-showcase-metrics div { min-width: 0; }
.hero-showcase-metrics strong { display: block; color: #fff; font-size: 1rem; }
.hero-showcase-metrics span { display: block; margin-top: .2rem; color: rgba(255,255,255,.55); font-size: .65rem; line-height: 1.25; }

/* ============================================
   Trust Highlights
   ============================================ */

.highlight-card {
  background: var(--fp-white);
  border-radius: var(--fp-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--fp-transition);
  border: 1px solid var(--fp-gray-200);
  height: 100%;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--fp-shadow-lg);
  border-color: var(--fp-blue-400);
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  background: var(--fp-blue-50);
  color: var(--fp-blue-600);
  transition: var(--fp-transition);
}

.highlight-card:hover .highlight-icon {
  background: var(--fp-accent);
  color: #fff;
  transform: scale(1.1);
}

.highlight-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fp-navy-800);
  margin-bottom: 0.5rem;
}

.highlight-text {
  font-size: 0.9rem;
  color: var(--fp-gray-600);
}

/* ============================================
   Service Cards
   ============================================ */

.service-card {
  background: var(--fp-white);
  border-radius: var(--fp-radius);
  overflow: hidden;
  transition: var(--fp-transition);
  border: 1px solid var(--fp-gray-200);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--fp-shadow-lg);
  border-color: var(--fp-blue-400);
}

.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--fp-navy-700), var(--fp-blue-600));
  color: #fff;
  margin-bottom: 1.2rem;
}

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

.service-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--fp-gray-600);
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.service-card .btn-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fp-blue-600);
  padding: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.service-card .btn-link:hover {
  color: var(--fp-accent);
  gap: 0.5rem;
}

/* ============================================
   Process Steps
   ============================================ */

.process-step {
  text-align: center;
  position: relative;
  padding: 1.5rem 0.5rem;
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--fp-navy-800);
  color: var(--fp-accent);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  transition: var(--fp-transition);
  border: 3px solid var(--fp-gray-200);
}

.process-step:hover .process-step-number {
  background: var(--fp-accent);
  color: #fff;
  border-color: var(--fp-orange-400);
  transform: scale(1.1);
}

.process-step h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0;
}

.bg-navy .process-step h5 {
  color: var(--fp-white);
}

/* ============================================
   Why FixitPro Cards
   ============================================ */

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--fp-radius);
  background: var(--fp-white);
  border: 1px solid var(--fp-gray-200);
  transition: var(--fp-transition);
  height: 100%;
}

.why-card:hover {
  border-color: var(--fp-blue-400);
  box-shadow: var(--fp-shadow);
  transform: translateY(-3px);
}

.why-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--fp-orange-100);
  color: var(--fp-accent);
  font-size: 1.2rem;
}

.why-card h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--fp-gray-600);
  margin: 0;
}

/* ============================================
   Project Cards
   ============================================ */

.project-card {
  border-radius: var(--fp-radius);
  overflow: hidden;
  background: var(--fp-white);
  border: 1px solid var(--fp-gray-200);
  transition: var(--fp-transition);
  height: 100%;
}

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

.project-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.project-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(10,22,40,0.85);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.project-tag.active { background: var(--fp-success); }
.project-tag.progress { background: var(--fp-warning); }

.project-card-body {
  padding: 1.5rem;
}

.project-card-body h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.project-meta {
  font-size: 0.82rem;
  color: var(--fp-gray-500);
  margin-bottom: 0.8rem;
}

.project-desc {
  font-size: 0.88rem;
  color: var(--fp-gray-600);
  margin-bottom: 1rem;
}

/* ============================================
   CTA Banner
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--fp-navy-900), var(--fp-navy-700));
  border-radius: var(--fp-radius-xl);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,138,26,0.15), transparent 70%);
  border-radius: 50%;
}

/* ============================================
   Footer
   ============================================ */

.fp-footer {
  background: var(--fp-navy-900);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.fp-footer h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.fp-footer a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.6rem;
  transition: var(--fp-transition);
}

.fp-footer a:hover {
  color: var(--fp-orange-400);
  padding-left: 4px;
}

.fp-footer .footer-contact-link {
  display: inline;
  margin: 0;
  color: rgba(255,255,255,.82);
  overflow-wrap: anywhere;
}
.fp-footer .footer-contact-link:hover { padding-left: 0; color: var(--fp-orange-400); }
.fp-footer .contact-separator { color: rgba(255,255,255,.35); margin: 0 .28rem; }

.fp-footer .footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  display: block;
}

.fp-footer img.footer-logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.fp-footer .footer-logo .logo-accent { color: var(--fp-accent); }

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  margin-bottom: 0;
  font-size: 1rem;
  transition: var(--fp-transition);
}

.footer-social a:hover {
  background: var(--fp-accent);
  color: #fff;
  transform: translateY(-3px);
  padding-left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   Page Hero (interior pages)
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, var(--fp-navy-900) 0%, var(--fp-navy-700) 100%);
  padding: 7rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,111,196,0.15), transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  color: #fff;
  position: relative;
  z-index: 2;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 1rem auto 0;
  position: relative;
  z-index: 2;
}

.breadcrumb-fp {
  justify-content: center;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.breadcrumb-fp .breadcrumb-item {
  font-size: 0.85rem;
}

.breadcrumb-fp .breadcrumb-item a {
  color: rgba(255,255,255,0.6);
}

.breadcrumb-fp .breadcrumb-item.active {
  color: var(--fp-orange-400);
}

.breadcrumb-fp .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.3);
}

/* ============================================
   AMC / Process Flow
   ============================================ */

.flow-step {
  background: var(--fp-white);
  border: 1px solid var(--fp-gray-200);
  border-radius: var(--fp-radius);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--fp-transition);
}

.flow-step:hover {
  border-color: var(--fp-accent);
  box-shadow: var(--fp-shadow);
}

.flow-step .flow-icon {
  font-size: 1.8rem;
  color: var(--fp-blue-600);
  margin-bottom: 0.8rem;
}

.flow-step h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

.flow-arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--fp-gray-400);
  padding: 0.5rem 0;
}

/* ============================================
   Timeline (How We Work)
   ============================================ */

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--fp-blue-600), var(--fp-accent));
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem; top: 0.3rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--fp-blue-600);
  border: 3px solid var(--fp-blue-50);
  z-index: 2;
}

.timeline-item.completed::before {
  background: var(--fp-success);
}

.timeline-item.current::before {
  background: var(--fp-accent);
  box-shadow: 0 0 0 5px rgba(245,138,26,0.2);
}

.timeline-content {
  background: var(--fp-white);
  border: 1px solid var(--fp-gray-200);
  border-radius: var(--fp-radius);
  padding: 1.2rem 1.5rem;
}

.timeline-content h6 {
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--fp-gray-600);
  margin: 0;
}

/* ============================================
   Values Cards
   ============================================ */

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--fp-radius);
  background: var(--fp-white);
  border: 1px solid var(--fp-gray-200);
  transition: var(--fp-transition);
  height: 100%;
}

.value-card:hover {
  border-color: var(--fp-blue-400);
  box-shadow: var(--fp-shadow);
  transform: translateY(-4px);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--fp-blue-50);
  color: var(--fp-blue-600);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* ============================================
   Team Cards
   ============================================ */

.team-card {
  background: var(--fp-white);
  border-radius: var(--fp-radius-lg);
  overflow: hidden;
  border: 1px solid var(--fp-gray-200);
  transition: var(--fp-transition);
  height: 100%;
}

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

.team-photo {
  height: 280px;
  background-size: cover;
  background-position: center top;
  position: relative;
}

.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(255,255,255,1), transparent);
}

.team-info {
  padding: 0 1.5rem 1.5rem;
  text-align: center;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.team-info h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

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

.team-desc {
  font-size: 0.85rem;
  color: var(--fp-gray-600);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--fp-gray-100);
  color: var(--fp-gray-600);
  font-size: 0.9rem;
}

.team-social a:hover {
  background: var(--fp-blue-600);
  color: #fff;
}

/* ============================================
   Client Logo Placeholders
   ============================================ */

.client-logo-box {
  background: var(--fp-gray-50);
  border: 2px dashed var(--fp-gray-300);
  border-radius: var(--fp-radius);
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--fp-transition);
  cursor: default;
}

.client-logo-box:hover {
  border-color: var(--fp-blue-400);
  background: var(--fp-blue-50);
}

.client-logo-box i {
  font-size: 2rem;
  color: var(--fp-gray-400);
  margin-bottom: 0.4rem;
}

.client-logo-box span {
  font-size: 0.8rem;
  color: var(--fp-gray-500);
  font-weight: 600;
}

.client-gallery .client-logo-box {
  height: 132px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-gallery .client-wordmark {
  color: var(--fp-navy-800);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.05;
  text-align: center;
}

.client-gallery .client-wordmark small { font-size: .55em; font-weight: 700; letter-spacing: .16em; }
.client-gallery .lulu { color: #2d7a3f; font-style: italic; letter-spacing: -.04em; }
.client-gallery .inorbit { color: #164a92; font-weight: 700; letter-spacing: -.06em; }
.client-gallery .nexus { color: #e73d2f; }
.client-gallery .optic { letter-spacing: .08em; }
.client-gallery .novotel { color: #183c73; letter-spacing: .12em; }
.client-gallery .meenakshi { color: #9c7029; font-family: Georgia, serif; letter-spacing: .09em; }

/* ============================================
   Contact
   ============================================ */

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--fp-radius);
  background: var(--fp-white);
  border: 1px solid var(--fp-gray-200);
  margin-bottom: 1.5rem;
  transition: var(--fp-transition);
}

.contact-info-card:hover {
  border-color: var(--fp-blue-400);
  box-shadow: var(--fp-shadow);
}

.contact-info-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--fp-navy-700), var(--fp-blue-600));
  color: #fff;
  font-size: 1.2rem;
}

.contact-info-card h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-info-card p {
  font-size: 0.85rem;
  color: var(--fp-gray-600);
  margin: 0;
}

.form-control, .form-select {
  border-radius: var(--fp-radius-sm);
  border: 1.5px solid var(--fp-gray-300);
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  transition: var(--fp-transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--fp-blue-500);
  box-shadow: 0 0 0 4px rgba(43,135,224,0.12);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fp-gray-700);
  margin-bottom: 0.4rem;
}

/* ============================================
   Login Page
   ============================================ */

.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--fp-navy-900) 0%, var(--fp-navy-700) 100%);
  position: relative;
  overflow: hidden;
}

.login-wrapper::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,111,196,0.12), transparent 70%);
  border-radius: 50%;
}

.login-wrapper::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,138,26,0.08), transparent 70%);
  border-radius: 50%;
}

.login-card {
  background: #fff;
  border-radius: var(--fp-radius-xl);
  padding: 3rem;
  box-shadow: var(--fp-shadow-xl);
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
}

.login-card .fp-logo {
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.login-demo-badge {
  background: var(--fp-orange-100);
  color: var(--fp-accent-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  text-align: center;
  margin-top: 1.5rem;
}

/* ============================================
   Dashboard — Shared
   ============================================ */

.dashboard-body {
  background: var(--fp-gray-100);
}

.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.dashboard-sidebar {
  width: 260px;
  background: var(--fp-navy-900);
  flex-shrink: 0;
  position: fixed;
  top: 0; bottom: 0; left: 0;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.dashboard-sidebar .sidebar-logo {
  padding: 1.3rem 1.5rem;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.dashboard-sidebar .sidebar-logo .logo-accent { color: var(--fp-accent); }

.sidebar-logo-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.15rem 0;
}

.contact-detail > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--fp-blue-50);
  color: var(--fp-blue-600);
}

.contact-detail strong,
.contact-detail span { display: block; }
.contact-detail span { color: var(--fp-gray-600); font-size: .9rem; }

.sidebar-nav {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1rem 0;
}

.sidebar-nav .sidebar-section {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  padding: 1.2rem 1.5rem 0.5rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--fp-transition);
  border-left: 3px solid transparent;
}

.sidebar-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}

.sidebar-link.active {
  color: #fff;
  background: rgba(26,111,196,0.15);
  border-left-color: var(--fp-accent);
  font-weight: 600;
}

.sidebar-link i { font-size: 1.1rem; width: 22px; text-align: center; }

/* Main Content */
.dashboard-main {
  flex-grow: 1;
  margin-left: 260px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dashboard-topbar {
  background: #fff;
  height: 64px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--fp-shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.dashboard-topbar .topbar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fp-navy-800);
}

.topbar-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: none;
  background: var(--fp-gray-100);
  color: var(--fp-gray-600);
  position: relative;
  transition: var(--fp-transition);
}

.topbar-icon-btn:hover {
  background: var(--fp-blue-50);
  color: var(--fp-blue-600);
}

.topbar-icon-btn .badge-dot {
  position: absolute;
  top: 8px; right: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fp-accent);
  border: 2px solid #fff;
}

.topbar-avatar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.topbar-avatar .avatar-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fp-navy-700), var(--fp-blue-600));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.topbar-avatar .avatar-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fp-gray-800);
}

.topbar-avatar .avatar-role {
  font-size: 0.75rem;
  color: var(--fp-gray-500);
}

.dashboard-content {
  padding: 1.5rem;
  flex-grow: 1;
}

/* Dashboard Cards */
.dash-stat-card {
  background: #fff;
  border-radius: var(--fp-radius);
  padding: 1.5rem;
  border: 1px solid var(--fp-gray-200);
  transition: var(--fp-transition);
  height: 100%;
}

.dash-stat-card:hover {
  box-shadow: var(--fp-shadow);
  transform: translateY(-2px);
}

.dash-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.dash-stat-icon.blue { background: var(--fp-blue-50); color: var(--fp-blue-600); }
.dash-stat-icon.orange { background: var(--fp-orange-100); color: var(--fp-accent); }
.dash-stat-icon.green { background: #e8f8ed; color: var(--fp-success); }
.dash-stat-icon.purple { background: #f0e8fc; color: #7b3fc4; }
.dash-stat-icon.red { background: #fce8e9; color: var(--fp-danger); }
.dash-stat-icon.teal { background: #e0f7fa; color: var(--fp-info); }
.dash-stat-icon.navy { background: var(--fp-blue-50); color: var(--fp-navy-700); }
.dash-stat-icon.gold { background: #fff8e0; color: var(--fp-warning); }

.dash-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--fp-navy-800);
  line-height: 1;
}

.dash-stat-label {
  font-size: 0.82rem;
  color: var(--fp-gray-500);
  margin-top: 0.3rem;
  font-weight: 600;
}

/* Dashboard Panels */
.dash-panel {
  background: #fff;
  border-radius: var(--fp-radius);
  border: 1px solid var(--fp-gray-200);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.dash-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.dash-panel-header h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

/* Dashboard Table */
.dash-table {
  width: 100%;
  font-size: 0.85rem;
}

.dash-table th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fp-gray-500);
  padding: 0.75rem;
  border-bottom: 2px solid var(--fp-gray-200);
  white-space: nowrap;
}

.dash-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--fp-gray-100);
  color: var(--fp-gray-700);
  vertical-align: middle;
}

.dash-table tbody tr:hover {
  background: var(--fp-gray-50);
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-badge.active { background: #e8f8ed; color: var(--fp-success); }
.status-badge.pending { background: #fff8e0; color: var(--fp-warning); }
.status-badge.progress { background: var(--fp-blue-50); color: var(--fp-blue-600); }
.status-badge.danger { background: #fce8e9; color: var(--fp-danger); }
.status-badge.completed { background: #e8f8ed; color: var(--fp-success); }
.status-badge.approved { background: #e8f8ed; color: var(--fp-success); }
.status-badge.awaiting { background: var(--fp-orange-100); color: var(--fp-accent-dark); }

/* Progress Timeline (dashboard) */
.dash-timeline-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.2rem;
  position: relative;
}

.dash-timeline-item::before {
  content: '';
  position: absolute;
  left: 11px; top: 24px; bottom: 0;
  width: 2px;
  background: var(--fp-gray-200);
}

.dash-timeline-item:last-child::before { display: none; }

.dash-timeline-dot {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  z-index: 2;
}

.dash-timeline-dot.completed { background: var(--fp-success); color: #fff; }
.dash-timeline-dot.current { background: var(--fp-accent); color: #fff; box-shadow: 0 0 0 4px rgba(245,138,26,0.2); }
.dash-timeline-dot.pending { background: var(--fp-gray-200); color: var(--fp-gray-500); }

.dash-timeline-content h6 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.dash-timeline-content p {
  font-size: 0.8rem;
  color: var(--fp-gray-500);
  margin: 0;
}

/* Kanban Board */
.kanban-board {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.kanban-column {
  flex-shrink: 0;
  width: 280px;
  background: var(--fp-gray-100);
  border-radius: var(--fp-radius);
  padding: 1rem;
}

.kanban-column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--fp-gray-200);
}

.kanban-column-header h6 {
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
}

.kanban-count {
  background: var(--fp-gray-200);
  color: var(--fp-gray-700);
  padding: 0.1rem 0.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.kanban-card {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.7rem;
  border: 1px solid var(--fp-gray-200);
  cursor: grab;
  transition: var(--fp-transition);
}

.kanban-card:hover {
  box-shadow: var(--fp-shadow);
  border-color: var(--fp-blue-400);
}

.kanban-card.dragging {
  opacity: 0.5;
  cursor: grabbing;
}

.kanban-card .kc-id {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fp-blue-600);
  margin-bottom: 0.3rem;
}

.kanban-card .kc-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fp-navy-800);
  margin-bottom: 0.5rem;
}

.kanban-card .kc-meta {
  font-size: 0.75rem;
  color: var(--fp-gray-500);
}

.kanban-column.drag-over {
  background: var(--fp-blue-50);
  border: 2px dashed var(--fp-blue-400);
}

/* Sidebar Backdrop (mobile) */
.sidebar-backdrop {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1035;
}

.sidebar-backdrop.show { display: block; }

.sidebar-toggle {
  display: none;
  background: var(--fp-gray-100);
  border: none;
  border-radius: 10px;
  width: 40px; height: 40px;
  font-size: 1.2rem;
  color: var(--fp-navy-800);
}

/* ============================================
   Animations
   ============================================ */

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible { opacity: 1; }

/* Counter animation */
.counter { font-weight: 800; }

/* ============================================
   FAQ Accordion
   ============================================ */

.accordion-button:not(.collapsed) {
  background: var(--fp-blue-50);
  color: var(--fp-navy-800);
}

.accordion-button:focus {
  border-color: var(--fp-blue-400);
  box-shadow: 0 0 0 4px rgba(43,135,224,0.1);
}

.accordion-item {
  border: 1px solid var(--fp-gray-200) !important;
  border-radius: var(--fp-radius-sm) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

/* ============================================
   Filter Buttons
   ============================================ */

.filter-btn {
  background: #fff;
  border: 1.5px solid var(--fp-gray-300);
  color: var(--fp-gray-700);
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--fp-transition);
}

.filter-btn:hover {
  border-color: var(--fp-blue-400);
  color: var(--fp-blue-600);
}

.filter-btn.active {
  background: var(--fp-navy-800);
  border-color: var(--fp-navy-800);
  color: #fff;
}

/* ============================================
   Toast
   ============================================ */

.fp-toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 9999;
  min-width: 300px;
}

.fp-mobile-actions {
  position: fixed;
  z-index: 1035;
  left: .75rem;
  right: .75rem;
  bottom: .75rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: .65rem;
  padding: .65rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(10,22,40,.92);
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}

.fp-mobile-actions .btn { padding: .7rem .5rem; font-size: .8rem; white-space: nowrap; }
.btn-whatsapp { border: 2px solid #25D366; background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1fb758; border-color: #1fb758; color: #fff; }

.whatsapp-fab {
  position: fixed;
  z-index: 1030;
  right: 1.5rem;
  bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .78rem 1rem;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(37,211,102,.32);
}
.whatsapp-fab i { font-size: 1.25rem; }
.whatsapp-fab:hover { color: #fff; background: #1fb758; transform: translateY(-2px); }

/* ============================================
   Portfolio UI Refinement
   Consistent rhythm, alignment and presentation
   ============================================ */

body { min-width: 320px; }

section { position: relative; }

.section-padding {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.section-padding-sm { padding: clamp(3rem, 5vw, 4.5rem) 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: var(--fp-orange-100);
  color: var(--fp-accent-dark);
  letter-spacing: .11em;
}

.section-title { max-width: 760px; margin-left: auto; margin-right: auto; }
.section-subtitle { max-width: 680px; }

.page-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 4.5rem;
}

.page-hero .container { width: 100%; }
.page-hero .breadcrumb { margin-bottom: 0; }

.hero-section { min-height: clamp(620px, 78vh, 760px); }
.hero-content { padding-top: 4rem; padding-bottom: 4rem; }

.hero-title { max-width: 780px; letter-spacing: -.035em; }
.hero-subtitle { max-width: 650px; }

.highlight-card,
.service-card,
.project-card,
.team-card,
.client-logo-box,
.why-card,
.dash-stat-card,
.dash-panel {
  box-shadow: 0 8px 28px rgba(10, 22, 40, .055);
}

.highlight-card,
.service-card,
.project-card,
.team-card { overflow: hidden; }

.highlight-card { padding: 2rem 1.4rem; }
.highlight-card .highlight-text { margin-bottom: 0; }

.service-card-body,
.project-card-body,
.team-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card .btn-link,
.project-card .btn-link { margin-top: auto; }

.project-image { height: 240px; }
.project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,22,40,.18));
  pointer-events: none;
}
.project-tag { z-index: 1; }

.project-card-body { padding: 1.55rem; }
.project-card-body h5 { line-height: 1.35; min-height: 2.7em; }
.project-desc { line-height: 1.65; }

.team-photo { height: 290px; background-position: center top; }
.team-info { padding: 1.5rem; }
.team-info h5 { min-height: 2.7em; display: flex; align-items: end; }
.team-desc { flex-grow: 1; }

.client-logo-box {
  min-height: 132px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.client-gallery > [class*='col-'] { display: flex; }
.client-gallery .client-logo-box { width: 100%; }

.cta-banner {
  padding: clamp(2.5rem, 6vw, 4.5rem);
  box-shadow: var(--fp-shadow-lg);
}
.cta-banner .section-title { margin-bottom: .75rem; }

.fp-footer { margin-top: 0; }
.fp-footer .row > div { display: flex; flex-direction: column; align-items: flex-start; }
.fp-footer .footer-social { margin-top: auto; }

.contact-detail { align-items: flex-start; }
.contact-detail > div { padding-top: .1rem; }

.dashboard-content { max-width: 1680px; width: 100%; margin: 0 auto; }
.dash-panel-header { gap: 1rem; flex-wrap: wrap; }
.dash-table td { line-height: 1.45; }

@media (max-width: 767.98px) {
  .page-hero { min-height: 270px; padding: 6.5rem 0 3rem; }
  .hero-content { padding-top: 3rem; padding-bottom: 3rem; }
  .project-image { height: 210px; }
  .team-photo { height: 260px; }
  .fp-footer .row > div { align-items: flex-start; }
  .hero-section .hero-content { padding: 6.5rem 0 3.5rem; }
  .hero-section .hero-stats { gap: 1rem; margin-top: 2.5rem; }
  .hero-section .hero-stats > div { min-width: 0; padding-right: 1rem; margin-right: 0; border-right: 0; }
  .whatsapp-fab { display: none; }
}

/* ============================================
   Premium UI Experience Layer
   ============================================ */

:root {
  --fp-surface: #ffffff;
  --fp-surface-soft: #f8f7f4;
  --fp-border-soft: rgba(35, 42, 49, .11);
  --fp-focus: rgba(43, 135, 224, .28);
}

html { scroll-padding-top: 90px; }
body { background: var(--fp-surface); -webkit-font-smoothing: antialiased; }

::selection { background: rgba(245, 138, 26, .27); color: var(--fp-navy-900); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--fp-focus);
  outline-offset: 3px;
}

.fp-navbar {
  border-bottom: 1px solid rgba(10, 22, 40, .07);
  background: rgba(255, 255, 255, .92);
}
.fp-navbar.scrolled { background: rgba(255, 255, 255, .97); }
.fp-navbar .site-logo { width: 50px; height: 50px; }
.fp-navbar .nav-link {
  position: relative;
  background: transparent !important;
  padding: .5rem .6rem !important;
  font-size: .82rem;
}
.fp-navbar .nav-link::after {
  content: '';
  position: absolute;
  right: .6rem;
  bottom: .2rem;
  left: .6rem;
  height: 2px;
  border-radius: 2px;
  background: var(--fp-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}
.fp-navbar .nav-link:hover::after, .fp-navbar .nav-link.active::after { transform: scaleX(1); }
.fp-navbar .nav-actions { white-space: nowrap; }
.fp-navbar .nav-actions .btn { padding: .52rem .75rem; }

.hero-section { isolation: isolate; }
.hero-eyebrow { box-shadow: 0 8px 22px rgba(0, 0, 0, .12); }
.hero-title { text-wrap: balance; }
.hero-subtitle { text-wrap: pretty; }
.hero-showcase-card { transition: transform .35s ease, box-shadow .35s ease; }
.hero-showcase-card:hover { transform: translateY(-7px) rotate(.15deg); box-shadow: 0 28px 80px rgba(0,0,0,.38); }

.page-hero {
  background: radial-gradient(circle at 82% 12%, rgba(245, 138, 26, .22), transparent 24%), linear-gradient(125deg, #101b28 0%, #1c2d3c 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  right: 8%;
  bottom: -90px;
}
.page-hero h1 { text-wrap: balance; letter-spacing: -.035em; }

.section-title { text-wrap: balance; letter-spacing: -.025em; }
.section-subtitle { text-wrap: pretty; line-height: 1.75; }

.highlight-card, .service-card, .project-card, .team-card, .why-card, .dash-panel, .dash-stat-card {
  border-color: var(--fp-border-soft);
}
.highlight-card, .why-card, .service-card, .project-card, .team-card {
  position: relative;
}
.highlight-card::before, .service-card::before, .project-card::before, .team-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fp-accent), var(--fp-blue-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  z-index: 2;
}
.highlight-card:hover::before, .service-card:hover::before, .project-card:hover::before, .team-card:hover::before { transform: scaleX(1); }
.highlight-card:hover, .why-card:hover, .service-card:hover, .project-card:hover, .team-card:hover { box-shadow: 0 18px 44px rgba(10, 22, 40, .13); }

.service-card-icon { box-shadow: 0 10px 22px rgba(26, 111, 196, .22); }
.project-card { background: var(--fp-surface); }
.project-image { overflow: hidden; }
.project-image { transition: transform .45s cubic-bezier(.2,.75,.25,1); }
.project-card:hover .project-image { transform: scale(1.04); }
.project-card-body { position: relative; z-index: 1; }
.project-meta i { color: var(--fp-accent); }
.project-tag { box-shadow: 0 7px 16px rgba(0, 0, 0, .17); }

.team-card { background: #fff; }
.team-photo { transition: transform .45s cubic-bezier(.2,.75,.25,1); }
.team-card:hover .team-photo { transform: scale(1.035); }
.team-info { position: relative; background: #fff; }
.team-role { color: var(--fp-blue-600) !important; font-weight: 700; letter-spacing: .02em; }
.team-social a { box-shadow: 0 5px 14px rgba(10,22,40,.08); }

.client-logo-box { background: linear-gradient(145deg, #fff, #faf8f3); }
.client-logo-box:hover { box-shadow: 0 14px 30px rgba(10, 22, 40, .10); transform: translateY(-4px); }

.form-control, .form-select {
  background: #fff;
  min-height: 46px;
}
textarea.form-control { min-height: auto; }
.form-label { margin-top: .15rem; }

.fp-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071326 0%, #0c2547 100%);
}
.fp-footer::before {
  content: '';
  position: absolute;
  width: 430px;
  height: 430px;
  right: -180px;
  top: -230px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
}
.fp-footer .container { position: relative; z-index: 1; }
.fp-footer h5 { letter-spacing: .02em; }
.fp-footer > .container:first-child { padding-top: .5rem; }

@media (max-width: 1199.98px) and (min-width: 992px) {
  .fp-navbar .site-logo { width: 42px; height: 42px; }
  .fp-navbar .nav-link { padding: .42rem .38rem !important; font-size: .72rem; }
  .fp-navbar .nav-link::after { right: .38rem; left: .38rem; }
  .fp-navbar .nav-actions .btn { padding: .46rem .5rem; font-size: .72rem; }
}

@media (max-width: 991.98px) {
  .fp-navbar .navbar-collapse { margin-top: .7rem; padding: .85rem; border: 1px solid var(--fp-border-soft); border-radius: 14px; background: #fff; box-shadow: 0 15px 34px rgba(10,22,40,.10); }
  .fp-navbar .navbar-nav { gap: .1rem; }
  .fp-navbar .nav-link { padding: .6rem .7rem !important; }
  .fp-navbar .nav-actions { display: grid !important; grid-template-columns: 1fr 1fr; margin-top: .6rem; }
  .fp-navbar .nav-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ============================================
   Minimal Editorial Refinement
   Inspired by product-focused, content-first interfaces
   ============================================ */

:root {
  --fp-navy-900: #101114;
  --fp-navy-800: #1d1f24;
  --fp-navy-700: #30333a;
  --fp-navy-600: #454952;
  --fp-blue-600: #1d64c8;
  --fp-blue-50: #f4f7fb;
  --fp-orange-500: #f58a1a;
  --fp-gray-900: #16171a;
  --fp-gray-800: #2d2f35;
  --fp-gray-700: #535762;
  --fp-gray-600: #70747d;
  --fp-gray-200: #e6e7e9;
  --fp-gray-100: #f5f5f6;
  --fp-gray-50: #fafafa;
  --fp-radius-sm: 8px;
  --fp-radius: 14px;
  --fp-radius-lg: 20px;
  --fp-radius-xl: 28px;
  --fp-shadow-sm: 0 1px 2px rgba(15, 17, 20, .05);
  --fp-shadow: 0 8px 24px rgba(15, 17, 20, .07);
  --fp-shadow-lg: 0 18px 48px rgba(15, 17, 20, .10);
}

body { letter-spacing: -.01em; }
h1, h2, h3, h4, h5, h6 { letter-spacing: -.035em; }
p { letter-spacing: -.008em; }

.section-padding { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-padding-sm { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.section-eyebrow { background: transparent; border: 0; padding: 0; border-radius: 0; font-size: .72rem; letter-spacing: .14em; }
.section-title { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.14; }
.section-subtitle { font-size: 1rem; max-width: 620px; }

.fp-navbar { box-shadow: none; background: rgba(255,255,255,.96); }
.fp-navbar.scrolled { box-shadow: 0 1px 0 rgba(0,0,0,.09); }
.fp-navbar .container { min-height: 76px; }
.fp-navbar .nav-link { color: #4d515c !important; font-weight: 500; }
.fp-navbar .nav-link.active, .fp-navbar .nav-link:hover { color: #17191e !important; }
.fp-navbar .nav-link::after { height: 1.5px; background: #17191e; }
.fp-navbar .nav-actions .btn { border-radius: 9px; font-weight: 600; }

.btn { border-radius: 9px; box-shadow: none; font-weight: 600; }
.btn-accent { background: #f58a1a; border-color: #f58a1a; }
.btn-accent:hover { background: #df7911; border-color: #df7911; box-shadow: none; }
.btn-outline-navy { border-color: #1d1f24; color: #1d1f24; }

.hero-section { background: #111216; }
.hero-section .hero-overlay { background: linear-gradient(105deg, rgba(17,18,22,.98) 0%, rgba(24,26,31,.95) 58%, rgba(29,31,36,.86) 100%); }
.hero-section::after { display: none; }
.hero-section .hero-content { padding-top: 8.5rem; padding-bottom: 6rem; }
.hero-eyebrow { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); color: #f6aa54; box-shadow: none; }
.hero-title { max-width: 760px; font-size: clamp(2.8rem, 5.6vw, 5rem); font-weight: 700; letter-spacing: -.06em; }
.hero-subtitle { color: rgba(255,255,255,.68); font-size: 1.1rem; }
.hero-stat-number { color: #fff; font-size: 1.9rem; }
.hero-stat-label { color: rgba(255,255,255,.48); }
.hero-section .hero-stats > div { border-color: rgba(255,255,255,.14); }
.hero-showcase-card { border-radius: 18px; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.13); box-shadow: none; }
.hero-showcase-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.22); }
.hero-showcase-image { background: radial-gradient(circle at 75% 15%, rgba(245,138,26,.18), transparent 30%), linear-gradient(145deg, #34363d, #1c1e24 70%); }

.page-hero { min-height: 290px; background: #f5f5f6; }
.page-hero::before, .page-hero::after { display: none; }
.page-hero h1 { color: #17191e; font-size: clamp(2.35rem, 5vw, 4.2rem); }
.page-hero p { color: #626670; }
.breadcrumb-fp .breadcrumb-item a { color: #626670; }
.breadcrumb-fp .breadcrumb-item.active { color: #1d1f24; }
.breadcrumb-fp .breadcrumb-item + .breadcrumb-item::before { color: #a1a4ab; }

.highlight-card, .service-card, .project-card, .team-card, .why-card, .dash-panel, .dash-stat-card {
  box-shadow: none;
  border-color: #e6e7e9;
}
.highlight-card::before, .service-card::before, .project-card::before, .team-card::before { display: none; }
.highlight-card:hover, .why-card:hover, .service-card:hover, .project-card:hover, .team-card:hover { transform: translateY(-3px); border-color: #ced1d6; box-shadow: 0 12px 32px rgba(15,17,20,.08); }
.highlight-icon { background: #f1f2f4; color: #1d1f24; border-radius: 14px; }
.highlight-card:hover .highlight-icon { background: #1d1f24; color: #fff; transform: none; }
.service-card-icon { border-radius: 14px; background: #1d1f24; box-shadow: none; }
.project-image::after { background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.26)); }
.project-card:hover .project-image, .team-card:hover .team-photo { transform: scale(1.018); }
.project-tag { border-radius: 6px; }
.team-social a { box-shadow: none; border: 1px solid #e1e2e5; }
.client-logo-box { background: #fff; box-shadow: none; border-color: #e6e7e9; }
.client-logo-box:hover { transform: none; box-shadow: none; border-color: #c9cbd0; }

.cta-banner { background: #1d1f24; box-shadow: none; }
.fp-footer { background: #111216; }
.fp-footer::before { display: none; }
.footer-social a { border-radius: 50%; background: rgba(255,255,255,.1); }

@media (max-width: 767.98px) {
  .hero-section .hero-content { padding-top: 7rem; padding-bottom: 4.5rem; }
  .hero-title { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .page-hero { min-height: 250px; }
  .section-title { font-size: clamp(1.85rem, 9vw, 2.45rem); }
}

/* Restore FixitPro's original navy, blue and orange palette. */
:root {
  --fp-navy-900: #0a1628;
  --fp-navy-800: #0f2444;
  --fp-navy-700: #163566;
  --fp-navy-600: #1e4677;
  --fp-blue-600: #1a6fc4;
  --fp-blue-500: #2b87e0;
  --fp-blue-400: #4ba3f0;
  --fp-blue-100: #e3f0fc;
  --fp-blue-50: #f0f7ff;
  --fp-orange-600: #e8750c;
  --fp-orange-500: #f58a1a;
  --fp-orange-400: #ffa033;
  --fp-orange-100: #fff0e0;
  --fp-gray-900: #1a1f2e;
  --fp-gray-800: #2d3548;
  --fp-gray-700: #495065;
  --fp-gray-600: #6b7180;
  --fp-gray-500: #8d93a2;
  --fp-gray-400: #b0b5c0;
  --fp-gray-300: #d5d9e0;
  --fp-gray-200: #e8ebef;
  --fp-gray-100: #f4f6f8;
  --fp-gray-50: #fafbfc;
}

.fp-navbar { background: rgba(255,255,255,.92); }
.fp-navbar .nav-link { color: var(--fp-gray-700) !important; }
.fp-navbar .nav-link.active, .fp-navbar .nav-link:hover { color: var(--fp-blue-600) !important; }
.fp-navbar .nav-link::after { background: var(--fp-accent); }
.btn-outline-navy { border-color: var(--fp-navy-800); color: var(--fp-navy-800); }

.hero-section { background: linear-gradient(135deg, var(--fp-navy-900) 0%, var(--fp-navy-700) 50%, var(--fp-navy-600) 100%); }
.hero-section .hero-overlay { background: linear-gradient(105deg, rgba(13,22,33,.98) 0%, rgba(20,34,47,.95) 48%, rgba(31,43,51,.78) 100%); }
.hero-eyebrow { color: var(--fp-orange-400); }
.hero-stat-number { color: var(--fp-orange-400); }
.hero-showcase-card { background: rgba(20,31,42,.82); }
.hero-showcase-image { background: radial-gradient(circle at 75% 15%, rgba(245,138,26,.23), transparent 30%), linear-gradient(145deg, #344653 0%, #223542 45%, #142431 100%); }

.page-hero { background: radial-gradient(circle at 82% 12%, rgba(245,138,26,.22), transparent 24%), linear-gradient(125deg, #101b28 0%, #1c2d3c 100%); }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.7); }
.breadcrumb-fp .breadcrumb-item a { color: rgba(255,255,255,.6); }
.breadcrumb-fp .breadcrumb-item.active { color: var(--fp-orange-400); }
.breadcrumb-fp .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

.highlight-icon { background: var(--fp-blue-50); color: var(--fp-blue-600); }
.highlight-card:hover .highlight-icon { background: var(--fp-accent); color: #fff; }
.service-card-icon { background: linear-gradient(135deg, var(--fp-navy-700), var(--fp-blue-600)); }
.client-logo-box { background: linear-gradient(145deg, #fff, #faf8f3); }
.cta-banner { background: linear-gradient(135deg, var(--fp-navy-900), var(--fp-navy-700)); }
.fp-footer { background: linear-gradient(135deg, #071326 0%, #0c2547 100%); }

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 991.98px) {
  .dashboard-sidebar {
    transform: translateX(-100%);
  }
  .dashboard-sidebar.show {
    transform: translateX(0);
  }
  .dashboard-main {
    margin-left: 0;
  }
  .sidebar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 3rem 0; }
  .section-padding-sm { padding: 2.5rem 0; }
  .cta-banner { padding: 2rem 1.5rem; }
  .hero-section { min-height: auto; padding: 5rem 0; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { gap: 1.5rem; margin-top: 2rem; }
  .hero-stat-number { font-size: 1.6rem; }
  .login-card { padding: 2rem 1.5rem; margin: 1rem; }
  .dash-stat-value { font-size: 1.5rem; }
  .dashboard-content { padding: 1rem; }
  .kanban-column { width: 250px; }
  .fp-toast { left: 1rem; right: 1rem; bottom: 1rem; min-width: auto; }
  .topbar-avatar .avatar-name, .topbar-avatar .avatar-role { display: none; }
}

@media (max-width: 575.98px) {
  .process-step-number { width: 44px; height: 44px; font-size: 0.9rem; }
  .highlight-card { padding: 1.5rem 1rem; }
}

/* Print-safe for dashboards */
@media print {
  .dashboard-sidebar, .dashboard-topbar, .sidebar-backdrop { display: none !important; }
  .dashboard-main { margin-left: 0 !important; }
}
