/* ============================================================
   Mudassar Shakeel — main.css
   System font stack enabled
   ============================================================ */

:root {
  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --orange:          #dc3b41; /* Darkened for accessibility */
  --orange-dark:     #c73d42;
  --orange-light:    #fff5f5;
  --orange-border:   #ffd5d6;
  --black:           #1d1d1f; /* Apple Black */
  --gray-900:        #1d1d1f;
  --gray-700:        #424245;
  --gray-600:        #525252; /* Darkened for accessibility */
  --gray-500:        #626262; /* Darkened for accessibility */
  --gray-400:        #727272; /* Darkened for accessibility */
  --gray-300:        #d2d2d7;
  --gray-200:        #e8e8ed;
  --gray-100:        #f5f5f7;
  --cream:           #f5f5f7;
  --white:           #ffffff;
  --border:          #d2d2d7;
  --success:         #1b7a36; /* Darkened for accessibility */
  --success-bg:      #f5f5f7;
  --success-border:  #d2d2d7;
  --radius-sm:       6px;
  --radius:          10px;
  --radius-lg:       16px;
  --nav-h:           64px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

body {
  font-family: var(--font-stack);
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
 
}

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 780px; }

section { padding: 100px 0; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-stack);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--black);
}
h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(24px, 3.5vw, 36px); }
h3 { font-size: 20px; }
h4 { font-size: 16px; }
p  { color: var(--gray-600); line-height: 1.7; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}
.section-heading { margin-bottom: 14px; }
.section-sub {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 22px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gray-400);
  background: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1.5px solid transparent;
  border-radius: 0;
}
.btn-ghost:hover {
  color: var(--black);
  border-color: var(--black);
  transform: none;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}
.badge-green {
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  color: var(--success);
}
.badge-green .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateZ(0); /* Triggers GPU acceleration for smoother scrolling */
  border-bottom: 1px solid var(--border);
}
.site-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-chat-btn { font-size: 13.5px; padding: 9px 18px; min-width: 110px; justify-content: center; }
.nav-link { font-size: 14px; font-weight: 600; color: var(--gray-700); text-decoration: none; margin-right: 12px; }
.nav-link:hover { color: var(--orange); }
.nav-logo { text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 30px; }
.nav-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
}

/* ── LOADING SPINNER ── */
.loader-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  z-index: 5;
}
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── ABOUT PAGE ── */
.about-hero { background: var(--white); border-bottom: none; }
.about-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.about-feature-card { padding: 32px; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.about-feature-card h3 { margin-bottom: 12px; }
.about-section { padding: 64px 0; }
.about-section--first { padding-top: 80px; }
.about-content h2 { margin-bottom: 24px; }
.mission-box {
  margin-top: 80px;
  padding: 64px 40px;
  background: var(--black);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
}
.mission-box h2 { color: var(--white) !important; margin-bottom: 16px; }
.mission-box p { color: rgba(255,255,255,0.7) !important; font-style: italic; max-width: 600px; margin: 0 auto 32px; }

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding: 20px 0;
  margin-top: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-left: 44px;
  margin-bottom: 48px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 4px solid var(--orange);
  border-radius: 50%;
  z-index: 2;
}
.timeline-year {
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.timeline-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.timeline-body {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── HERO ── */
.hero {
  padding: 90px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: 680px; }
.hero-badge { margin-bottom: 28px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero .lead {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 560px;
  margin-bottom: 38px;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-proof-video {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 32px;
  align-items: start;
}
.hero-proof-video .hero-proof {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  border: none;
}

.hero-video-review .container {
  padding: 0;
}
.hero-video-review .section-label { margin-bottom: 14px; }
.hero-video-review h2 { margin-bottom: 16px; }
.hero-proof-video .about-home-card {
  align-self: start;
}
.hero-proof-video .about-home-photo {
  padding: 24px;
}
.hero-proof-video .about-home-meta {
  padding: 22px;
}
.hero-proof-video .proof-item { display: flex; flex-direction: column; gap: 3px; }
.proof-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.02em;
}
.proof-label { font-size: 12.5px; color: var(--gray-500); }
.proof-divider { width: 1px; height: 36px; background: var(--border); }

/* ── CLIENTS STRIP ── */
.clients-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.clients-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 22px;
  text-align: center;
}
.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.client-logo-slot {
  width: 110px;
  height: 44px;
  background: var(--white);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  overflow: hidden;
}
.client-logo-slot img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.client-logo-slot:hover { border-color: var(--gray-400); }

/* ── STATS ── */
.stats { padding: 64px 0; background: var(--black); position: relative; z-index: 10; }
.stats--light { background: var(--cream); border-bottom: 1px solid var(--border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stats--light .stat-item { border-right-color: var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stats--light .stat-num { color: var(--black); }
.stat-num span { color: var(--orange); }
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.stats--light .stat-label { color: var(--gray-600); }

/* ── SERVICES ── */
.services-tabs-container {
  position: relative;
  margin-bottom: 36px;
}
.services-tabs-container::after {
  content: '';
  position: absolute;
  top: 0; right: -1px; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--white));
  pointer-events: none;
  z-index: 5;
}
.services-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.services-tabs::-webkit-scrollbar {
  display: none;
}
.tab-btn {
  flex-shrink: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-500);
  padding: 10px 16px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border: 1px solid transparent;
  border-bottom: none;
  position: relative;
  bottom: -1px;
  background: transparent;
}
.tab-btn:hover { color: var(--black); background: var(--cream); }
.tab-btn.active {
  color: var(--black);
  background: var(--white);
  border-color: var(--border);
  border-bottom-color: var(--white);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.service-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.service-item:hover {
  border-color: var(--orange-border);
  background: var(--orange-light);
}
.service-item-icon {
  width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-item-icon svg { width: 10px; height: 10px; color: var(--white); }
.service-item-text {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.45;
}
.services-cta-bar {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.services-cta-bar p {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
}

/* ── COMPARISON ── */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
  
}
.compare-col {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-col--bad { border-color: #fecaca; } /* No explicit shadow to remove */
.compare-col--good { border-color: var(--success-border); }
.compare-header {
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-header svg { width: 16px; height: 16px; flex-shrink: 0; }
.compare-col--bad .compare-header { background: #fff5f5; color: #dc2626; border-bottom: 1px solid #fecaca; }
.compare-col--good .compare-header { background: var(--success-bg); color: var(--success); border-bottom: 1px solid var(--success-border); }
.compare-list { padding: 8px 0; }
.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 20px;
  font-size: 13.5px;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
  color: var(--gray-700);
}
.compare-item:last-child { border-bottom: none; }
.compare-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.compare-col--bad  .compare-icon { color: #dc2626; }
.compare-col--good .compare-icon { color: var(--success); }

/* ── HERO LAYOUT (two-column) ── */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.hero-left { max-width: 600px; }
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* ── HERO PANELS (right side) ── */
.hero-panel {
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hero-panel--warn {
  background: #fffbf0;
  border: 1px solid #fde68a;
}
.hero-panel-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-panel-icon svg {
  width: 18px !important;
  height: 18px !important;
  color: #d97706;
  flex-shrink: 0;
}
.hero-panel-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 5px;
  line-height: 1.4;
}
.hero-panel-body {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}
/* Slots panel */
.hero-panel--slots {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-slots-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hero-slots-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--orange-light);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slots-icon svg {
  width: 16px !important;
  height: 16px !important;
  color: var(--orange);
}
.hero-slots-sub {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 3px;
}
.hero-slots-grid {
  display: flex;
  gap: 8px;
}
.slot {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.slot svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}
.slot--taken {
  background: var(--gray-100);
  color: var(--gray-400);
}
.slot--taken svg { fill: var(--gray-300); color: var(--gray-300); }
.slot--open {
  background: var(--success-bg);
  border: 1.5px dashed var(--success-border);
  color: var(--success);
}
.slot--open svg { color: var(--success); }
.hero-slots-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--white);
  background: var(--orange);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  justify-content: center;
}

.hero-slots-cta:hover { background: var(--orange-dark); }
.hero-slots-cta svg {
  width: 13px !important;
  height: 13px !important;
}

/* ── HERO SOCIAL LINKS (Inline) ── */
.hero-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 4px 0;
  flex-wrap: wrap;
}
.hero-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 13.5px;
  color: var(--gray-500);
  transition: color 0.2s ease;
}
.hero-social-link:hover {
  color: var(--orange);
}
.hero-social-link img { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-right { max-width: 540px; }
  .hero-proof-video { grid-template-columns: 1fr; }
}

/* ── HERO PROOF ── */

/* ── PORTFOLIO LIST ── */
.portfolio-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 940px;
}
.portfolio-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.portfolio-list-item:first-child { border-top: 1px solid var(--border); }
.portfolio-list-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.portfolio-list-tag {
  font-size: 13px;

  color: var(--gray-400);
  min-width: 160px;
}
.portfolio-list-url {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
}
.portfolio-list-url:hover { color: var(--orange); }
.portfolio-list-case {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.portfolio-list-case:hover { opacity: 0.7; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}
.faq-trigger:hover { color: var(--orange); }
.faq-trigger svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--gray-400);
}
.faq-item.open .faq-trigger svg { transform: rotate(45deg); color: var(--orange); }
.faq-item.open .faq-trigger { color: var(--orange); }
.faq-body {
  overflow: hidden;
  max-height: 0;
  padding: 0;
}
.faq-item.open .faq-body { max-height: 400px; padding-bottom: 20px; }
.faq-body p {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  background: var(--black);
  padding: 96px 0;
}
.cta-section .section-label { color: rgba(255,255,255,0.4); }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.5); max-width: 440px; margin: 0 auto 40px; font-size: 16px; }
.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-top: 20px;
}
.cta-email:hover { color: rgba(255,255,255,0.9); }
.cta-email svg { width: 15px; height: 15px; color: var(--orange); }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-top: 14px;
  margin-bottom: 20px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.footer-col--right { text-align: right; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col--right ul { margin-top: 20px; justify-content: flex-end; flex-direction: row; gap: 24px; flex-wrap: wrap; }

.footer-col ul a {
  font-size: 14px;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul a:hover { color: var(--orange); }

.footer-col ul a svg,
.footer-col ul a img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--gray-500); }
.footer-bottom a { color: var(--orange); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: var(--gray-500); max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gray-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ── CASE STUDIES ── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.case-card-img {
  height: 180px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.case-card-img img { width: 100%; height: 100%; object-fit: cover; }
.case-card-img-placeholder {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}
.case-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.case-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.case-card-body h3 { font-size: 17px; color: var(--black); }
.case-card-body p { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; flex: 1; }
.case-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
}
.case-card-footer svg { width: 14px; height: 14px; }

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.about-aside {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.about-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  border: 1px dashed var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--gray-400);
}
.skills-list { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-tag {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.notion-embed-wrapper {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 500px;
  background: var(--cream);
}
.notion-embed-wrapper iframe { width: 100%; min-height: 500px; border: none; }
.notion-placeholder {
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.notion-placeholder svg { width: 36px; height: 36px; color: var(--gray-300); }
.notion-placeholder h4 { font-size: 16px; color: var(--gray-600); }
.notion-placeholder p { font-size: 13.5px; color: var(--gray-400); }
.notion-placeholder code {
  font-size: 12px;
  background: var(--gray-100);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--gray-600);
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--orange-light);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 17px; height: 17px; color: var(--orange); }
.contact-info-item h4 { font-size: 13px; color: var(--gray-500); margin-bottom: 4px; font-weight: 600; }
.contact-info-item a, .contact-info-item p {
  font-size: 15px;
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
}
.contact-info-item a:hover { color: var(--orange); }

/* ── CASE STUDY INNER ── */
.case-study-hero { padding: 72px 0 64px; border-bottom: 1px solid var(--border); }
.case-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.case-meta-item { display: flex; flex-direction: column; gap: 4px; }
.case-meta-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); }
.case-meta-value { font-size: 15px; font-weight: 600; color: var(--black); }
.case-screenshot {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gray-400);
  margin: 48px 0;
}
.case-screenshot img {  height: 100%; }
.result-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.result-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.result-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.result-label { font-size: 13px; color: var(--gray-500); }

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 1;
  transform: none;
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-aside { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), 
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }
  .stats--light .stat-item:nth-child(3), 
  .stats--light .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .case-grid    { grid-template-columns: 1fr 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .result-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .service-panel-inner { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .case-grid    { grid-template-columns: 1fr; }
  .footer-top   { grid-template-columns: 1fr; gap: 32px; }
  .hero-proof   { gap: 20px; }
  .proof-divider{ display: none; }
  .footer-col--right { text-align: left; }
  .footer-col--right ul { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .result-cards { grid-template-columns: 1fr; }
  .tab-btn { font-size: 12.5px; padding: 8px 12px; }
}

/* ── DOCK NAV ── */
.dock-nav {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  transform: translateZ(0); /* Hardware acceleration for the fixed dock */
  padding: 8px 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.28);

  .dock-item {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 54px;
    padding: 8px 10px;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;

    svg {
      width: 18px;
      height: 18px;
      display: block;
      flex-shrink: 0;
      stroke-width: 1.6;
    }

    .dock-label {
      font-size: 11px;
      line-height: 1;
      color: rgba(255,255,255,0.95);
      font-weight: 600;
    }

    &:hover {
      background: rgba(255,255,255,0.06);
      color: #ffffff;
      transform: translateY(-3px);

      &::after, &::before { opacity: 1; }
    }

    &.active {
      color: #ffffff;
      background: rgba(255,255,255,0.2);
    }

    /* Tooltip */
    &::after {
      content: attr(data-tip);
      position: absolute;
      bottom: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      background: var(--black);
      color: var(--white);
      font-size: 11.5px;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 6px;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
    }

    &::before {
      content: '';
      position: absolute;
      bottom: calc(100% + 5px);
      left: 50%;
      transform: translateX(-50%);
      border: 5px solid transparent;
      border-top-color: var(--black);
      pointer-events: none;
      opacity: 0;
    }
  }
}

.dock-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin: 0 6px;
  flex-shrink: 0;
}


@media (max-width: 600px) {
  .dock-nav { display: none; }
}

/* ── VIDEO WRAPPER ── */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0.22), rgba(0,0,0,0.66));
  color: var(--white);
  text-align: center;
}
.video-fallback-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.88);
  color: var(--white);
  text-decoration: none;
  max-width: 100%;
}
.video-fallback-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.video-fallback-text {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* ── ABOUT HOME ── */
.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 56px;
  align-items: start;
}
.about-home-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.about-home-body p { font-size: 15px; }
.about-home-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.about-home-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.about-home-photo {
  min-height: 280px;
  padding: 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--cream);
  background-image: url('../images/mudassar-shakeel.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-home-meta { padding: 22px; }

@media (max-width: 900px) {
  .about-home-grid { grid-template-columns: 1fr; }
}

/* ── REVIEW SCREENSHOTS ── */
.review-screenshots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-screenshot-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.review-screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 640px) {
  .review-screenshots { grid-template-columns: 1fr; }
}

/* ── VIDEO FACADE STYLES ── */
.video-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black);
}
.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.video-facade:hover img {
  opacity: 1;
}
.video-play-button {
  position: absolute;
  width: 68px;
  height: 48px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
}
.video-facade:hover .video-play-button {
  background: #ff0000;
  transform: scale(1.1);
}
.video-play-button svg {
  width: 30px;
  height: 30px;
}

/* ── SCHEDULE PAGE ── */
.schedule-container {
  padding: 64px 0;
}
.schedule-frame-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
@media (max-width: 768px) {
  .schedule-frame-wrapper { margin-top: 24px; height: 750px; }
  .schedule-frame-wrapper iframe { height: 100%; }
}
