/* ==========================================================================
   AhmadHarunDev — Premium Business Landing Page Stylesheet
   Identity: Warm, Elegant, Modern, Professional, Trustworthy
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Warm Color Palette */
  --bg-main: #FBF9F5;
  --bg-subtle: #F4F1EA;
  --bg-surface: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FCFBF8;
  
  /* Text Colors */
  --text-primary: #171717;
  --text-secondary: #52525B;
  --text-muted: #71717A;
  --text-inverse: #FFFFFF;

  /* Accent & Warm Terracotta */
  --accent-primary: #C85A32;
  --accent-hover: #AF4A25;
  --accent-active: #963D1C;
  --accent-soft: rgba(200, 90, 50, 0.08);
  --accent-soft-hover: rgba(200, 90, 50, 0.14);
  --accent-border: rgba(200, 90, 50, 0.22);
  
  /* Secondary Accents */
  --warm-ochre: #D97736;
  --sage-accent: #3F6253;
  --sage-soft: rgba(63, 98, 83, 0.09);
  --navy-accent: #2B3A4A;

  /* Neutral Borders & Dividers */
  --border-light: #EBE7DF;
  --border-card: #E5E0D6;
  --border-focus: #C85A32;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(23, 23, 23, 0.03), 0 1px 2px rgba(23, 23, 23, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(23, 23, 23, 0.05), 0 3px 8px -2px rgba(23, 23, 23, 0.03);
  --shadow-lg: 0 20px 40px -10px rgba(23, 23, 23, 0.07), 0 6px 14px -3px rgba(23, 23, 23, 0.04);
  --shadow-hover: 0 24px 48px -12px rgba(200, 90, 50, 0.12), 0 8px 20px -4px rgba(23, 23, 23, 0.05);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   02. Global Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

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

a:hover {
  color: var(--accent-hover);
}

/* Accessible focus ring */
:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 3px;
}

/* Container polish */
.container {
  max-width: 1200px;
}

/* Section Spacing */
.section-padding {
  padding: 100px 0;
  position: relative;
}

.section-bg-subtle {
  background-color: var(--bg-subtle);
}

/* Section Header Standards */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background-color: var(--accent-soft);
  color: var(--accent-primary);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   03. Ambient Canvas & Background
   -------------------------------------------------------------------------- */
#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.page-content-wrapper {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   04. Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.btn-primary-custom {
  background-color: var(--accent-primary);
  color: #FFFFFF !important;
  border: 1px solid var(--accent-primary);
  box-shadow: 0 4px 14px rgba(200, 90, 50, 0.25);
}

.btn-primary-custom:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(200, 90, 50, 0.35);
  transform: translateY(-2px);
}

.btn-secondary-custom {
  background-color: var(--bg-surface);
  color: var(--text-primary) !important;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
}

.btn-secondary-custom:hover {
  background-color: var(--bg-subtle);
  border-color: var(--border-light);
  color: var(--text-primary) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--accent-primary) !important;
  border: 1px solid var(--accent-border);
}

.btn-outline-custom:hover {
  background-color: var(--accent-soft);
  color: var(--accent-hover) !important;
  border-color: var(--accent-primary);
}

.btn-sm-custom {
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg-custom {
  padding: 0.9rem 1.85rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* --------------------------------------------------------------------------
   05. Navigation / Header
   -------------------------------------------------------------------------- */
.navbar-custom {
  background-color: rgba(251, 249, 245, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
  transition: all var(--transition-fast);
  z-index: 1030;
}

.navbar-custom.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(23, 23, 23, 0.04);
  background-color: rgba(251, 249, 245, 0.96);
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary) !important;
  letter-spacing: -0.03em;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background-color: var(--accent-primary);
  color: #FFFFFF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(200, 90, 50, 0.28);
}

.brand-name {
  color: var(--text-primary);
}

.brand-name span {
  color: var(--accent-primary);
  font-weight: 500;
}

.nav-link-custom {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.95rem !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--text-primary) !important;
  background-color: rgba(200, 90, 50, 0.06);
}

.navbar-toggler-custom {
  border: 1px solid var(--border-card);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  color: var(--text-primary);
}

.navbar-toggler-custom:focus {
  box-shadow: 0 0 0 2px var(--accent-primary);
}

/* --------------------------------------------------------------------------
   06. SECTION 01 — HERO
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background-color: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.hero-headline {
  font-size: clamp(2.35rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.35rem;
  letter-spacing: -0.03em;
}

.hero-headline-accent {
  color: var(--accent-primary);
  position: relative;
  display: inline-block;
}

.hero-subheadline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-trust-indicators {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-item i {
  color: var(--accent-primary);
  font-size: 1.1rem;
}

/* Hero Visual Composition */
.hero-visual-wrapper {
  position: relative;
  perspective: 1000px;
}

.hero-visual-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.mockup-window-header {
  background: #FDFCF9;
  border-bottom: 1px solid var(--border-light);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E4E0D6;
}

.mockup-dot.red { background: #F87171; }
.mockup-dot.yellow { background: #FBBF24; }
.mockup-dot.green { background: #34D399; }

.mockup-url-bar {
  background: #F4F0E6;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mockup-body {
  padding: 1.5rem;
  background: #FFFFFF;
}

.dashboard-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.dashboard-stat-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 0.85rem;
  border-radius: var(--radius-md);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.stat-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-val.highlight {
  color: var(--accent-primary);
}

.dashboard-chart-preview {
  background: #FAFAF8;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  height: 140px;
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.chart-bar {
  flex: 1;
  background: #E8E3D8;
  border-radius: 4px 4px 0 0;
  transition: height 0.4s ease;
}

.chart-bar.active {
  background: var(--accent-primary);
}

/* Floating UI Badges */
.floating-hero-badge {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.15rem;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  animation: floatSlow 6s ease-in-out infinite;
}

.floating-hero-badge.badge-1 {
  top: -20px;
  right: -20px;
}

.floating-hero-badge.badge-2 {
  bottom: 20px;
  left: -30px;
  animation-delay: -3s;
}

.badge-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.badge-icon-box.orange {
  background: var(--accent-soft);
  color: var(--accent-primary);
}

.badge-icon-box.green {
  background: var(--sage-soft);
  color: var(--sage-accent);
}

.badge-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.badge-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* --------------------------------------------------------------------------
   07. SECTION 02 — SERVICES
   -------------------------------------------------------------------------- */
.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-border);
}

.service-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-wrapper {
  background: var(--accent-primary);
  color: #FFFFFF;
  transform: scale(1.05);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.service-features-list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-features-list li i {
  color: var(--accent-primary);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   08. SECTION 03 — PROJECTS
   -------------------------------------------------------------------------- */
.project-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-border);
}

.project-preview-box {
  background: #F4F0E6;
  position: relative;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-light);
}

.project-preview-mockup {
  width: 90%;
  height: 85%;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth);
}

.project-card:hover .project-preview-mockup {
  transform: scale(1.03) translateY(-4px);
}

.project-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  z-index: 2;
}

.project-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.project-summary {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.project-outcome-box {
  background: var(--bg-subtle);
  border-left: 3px solid var(--accent-primary);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1.25rem;
}

.outcome-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.15rem;
}

.outcome-desc {
  font-size: 0.85rem;
  color: var(--text-primary);
  margin: 0;
  font-weight: 500;
}

.project-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.tech-tag {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   09. SECTION 04 — PRICING
   -------------------------------------------------------------------------- */
.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.pricing-card.featured {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg);
  background: #FFFFFF;
}

.pricing-badge-popular {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent-primary);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  min-height: 44px;
}

.pricing-amount-box {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.price-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.price-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-features li i {
  color: var(--accent-primary);
  font-size: 1rem;
  margin-top: 2px;
}

.pricing-notice-box {
  background: #FAF8F3;
  border: 1px dashed var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  max-width: 840px;
  margin: 2.5rem auto 0;
}

/* --------------------------------------------------------------------------
   10. SECTION 05 — BUSINESS PROFILE & PHILOSOPHY
   -------------------------------------------------------------------------- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.philosophy-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.philosophy-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-md);
}

.philosophy-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.philosophy-heading {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.philosophy-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. SECTION 06 — PARTNERS
   -------------------------------------------------------------------------- */
.partners-wrapper {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.partners-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.partner-logo-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  padding: 1rem 1.75rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.partner-logo-item:hover {
  border-color: var(--accent-border);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.partner-logo-item i {
  font-size: 1.35rem;
  color: var(--accent-primary);
}

/* --------------------------------------------------------------------------
   12. SECTION 07 — TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: var(--accent-soft-hover);
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  font-style: italic;
}

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

.client-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.client-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-primary);
}

.client-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   13. SECTION 08 — ABOUT (MEET AHMAD)
   -------------------------------------------------------------------------- */
.about-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.about-avatar-box {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #F4ECE1 0%, #E6DAC8 100%);
  border: 3px solid #FFFFFF;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--accent-primary);
  margin: 0 auto 1.5rem;
}

.about-name {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.about-role-tag {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.about-skills-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.about-skill-pill {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   14. SECTION 09 — FAQ (ACCORDION)
   -------------------------------------------------------------------------- */
.accordion-custom .accordion-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.accordion-custom .accordion-item:hover {
  border-color: var(--accent-border);
}

.accordion-custom .accordion-button {
  background: var(--bg-surface);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background: #FCFBF9;
  color: var(--accent-primary);
  border-bottom: 1px solid var(--border-light);
}

.accordion-custom .accordion-button::after {
  filter: grayscale(1);
  transition: transform var(--transition-fast);
}

.accordion-custom .accordion-button:not(.collapsed)::after {
  filter: none;
}

.accordion-custom .accordion-body {
  padding: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   15. SECTION 10 — CONTACT / FINAL CTA
   -------------------------------------------------------------------------- */
.contact-container-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-info-panel {
  background: #F8F5EE;
  padding: 3rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border-light);
}

.contact-direct-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  transition: all var(--transition-fast);
}

.contact-direct-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.contact-icon-box.wa {
  background: rgba(37, 211, 102, 0.12);
  color: #128C7E;
}

.contact-icon-box.email {
  background: var(--accent-soft);
  color: var(--accent-primary);
}

.contact-form-panel {
  padding: 3rem 2.5rem;
}

.form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-control, .form-select {
  border: 1px solid var(--border-card);
  background-color: #FAF8F5;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  background-color: #FFFFFF;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(200, 90, 50, 0.15);
}

/* Form success alert */
.form-feedback-modal {
  display: none;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   16. SECTION 11 — FOOTER
   -------------------------------------------------------------------------- */
.footer-custom {
  background: #F4F0E6;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 30px;
  color: var(--text-secondary);
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 320px;
  margin-top: 1rem;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

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

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

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid var(--border-card);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.back-to-top-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.back-to-top-btn:hover {
  background: var(--accent-primary);
  color: #FFFFFF;
  border-color: var(--accent-primary);
}

/* --------------------------------------------------------------------------
   17. MODAL STYLES (Project Showcase & Quote Details)
   -------------------------------------------------------------------------- */
.modal-content-custom {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modal-header-custom {
  background: #FAF8F3;
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 1.75rem;
}

.modal-body-custom {
  padding: 2rem;
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .hero-section {
    padding: 110px 0 60px;
  }

  .hero-visual-wrapper {
    margin-top: 3.5rem;
  }

  .floating-hero-badge.badge-1 {
    right: 0px;
    top: -15px;
  }

  .floating-hero-badge.badge-2 {
    left: 0px;
    bottom: -15px;
  }

  .contact-info-panel {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .about-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 55px 0;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .dashboard-stat-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hero-trust-indicators {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .floating-hero-badge {
    position: static;
    margin-top: 1rem;
    animation: none;
  }

  .partners-track {
    gap: 1rem;
  }

  .partner-logo-item {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   19. ACCESSIBILITY & REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  #ambient-canvas {
    display: none;
  }
  
  .floating-hero-badge {
    animation: none !important;
  }
}
