/* ==========================================================================
   Negrofinch MD Marketing 360 - Production Stylesheet
   Pure CSS3 - Modern, Responsive, Lightweight, Zero Framework Dependencies
   Compatible with all standard web servers & Asura Hosting File Manager
   ========================================================================== */

/* 1. CSS Custom Properties / Design Tokens */
:root {
  --primary: #0a2540;
  --primary-dark: #06192c;
  --primary-light: #163e66;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-soft: #eff6ff;
  --accent-teal: #0d9488;
  --success: #15803d;
  --success-bg: #f0fdf4;
  
  --text-main: #1e293b;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-white: #ffffff;
  
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  --bg-dark: #0a192f;
  
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --border-focus: #2563eb;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  
  --container-max: 1200px;
  --container-safe: min(var(--container-max), calc(100% - 32px));
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-display: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

/* 2. CSS Reset & Global Layout */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

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

ul, ol {
  list-style: none;
}

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

p {
  color: var(--text-muted);
  max-width: 72ch;
}

/* 3. Helper Classes & Safe Containers */
.container {
  width: var(--container-safe);
  margin-left: auto;
  margin-right: auto;
}

.section-padding {
  padding-top: clamp(48px, 6vw, 84px);
  padding-bottom: clamp(48px, 6vw, 84px);
}

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 52px) auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.section-heading {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin-bottom: 14px;
}

.section-subtext {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
}

/* 4. Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  min-height: 44px;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--text-white);
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: var(--text-white);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.35);
}

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

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

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

.btn-outline:hover {
  background-color: var(--bg-card);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-white);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--text-white);
  color: var(--text-white);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  min-height: 38px;
}

.btn-phone {
  background-color: var(--success);
  color: var(--text-white);
  font-weight: 700;
}

.btn-phone:hover {
  background-color: #166534;
  color: var(--text-white);
}

/* 5. Top Information Bar */
.top-bar {
  background-color: var(--primary-dark);
  color: #cbd5e1;
  font-size: 0.8125rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.top-info-item a {
  color: #cbd5e1;
}

.top-info-item a:hover {
  color: var(--text-white);
  text-decoration: underline;
}

.top-info-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: #93c5fd;
}

.badge-24h {
  background-color: rgba(13, 148, 136, 0.25);
  color: #5eead4;
  border: 1px solid rgba(13, 148, 136, 0.4);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* 6. Main Header & Navigation */
.site-header {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-symbol {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--text-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}

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

.logo-brand {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Nav Menu */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link:focus-visible {
  color: var(--accent);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  color: var(--primary);
}

.menu-toggle:hover {
  background-color: var(--bg-alt);
}

.menu-icon-svg {
  width: 24px;
  height: 24px;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 25, 47, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.mobile-nav-drawer.is-open {
  opacity: 1;
  visibility: visible;
  display: block;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 85%);
  height: 100%;
  background-color: var(--bg-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.mobile-nav-drawer.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.mobile-nav-link {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* 7. Hero Section */
.hero-section {
  background: linear-gradient(180deg, #f0f7ff 0%, var(--bg-page) 100%);
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(44px, 6vw, 76px);
  border-bottom: 1px solid var(--border-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #e0f2fe;
  color: #0369a1;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid #bae6fd;
}

.hero-h1 {
  font-size: clamp(2.1rem, 3.8vw, 3.125rem);
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.hero-h1 span {
  color: var(--accent);
}

.hero-p {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-teal);
}

.hero-media {
  position: relative;
}

.hero-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.hero-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.hero-metric-box {
  background-color: var(--bg-alt);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.hero-metric-box .metric-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
}

.hero-metric-box .metric-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 2px;
}

.hero-metric-box .metric-sub {
  font-size: 0.6875rem;
  color: var(--accent-teal);
  font-weight: 600;
}

.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-card-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  background-color: #f8fafc;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.hero-card-list-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

/* 8. Services Section */
.services-section {
  background-color: var(--bg-card);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}

.service-card {
  background-color: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background-color: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.service-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.service-card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.service-card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-deliverables {
  margin-bottom: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

.deliverables-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.deliverable-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-main);
}

.deliverable-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-card-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.service-card-cta:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* 9. Why Choose Us Section */
.why-us-section {
  background-color: var(--bg-alt);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.why-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.why-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.why-icon-box {
  width: 38px;
  height: 38px;
  background-color: #ecfdf5;
  color: var(--success);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon-box svg {
  width: 20px;
  height: 20px;
}

.why-card-title {
  font-size: 1.0625rem;
  color: var(--primary);
}

.why-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 10. Service Areas Section */
.areas-section {
  background-color: var(--bg-card);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.area-box {
  background-color: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.area-box-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background-color: #dbeafe;
  color: #1e40af;
  margin-bottom: 10px;
}

.area-box-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.area-box-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.area-sublist {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.area-chip {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.area-cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.area-cta-text h3 {
  color: var(--text-white);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.area-cta-text p {
  color: #cbd5e1;
  font-size: 0.875rem;
}

/* 11. Our Process Section */
.process-section {
  background-color: var(--bg-alt);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.process-step-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #cbd5e1;
  line-height: 1;
  margin-bottom: 12px;
}

.process-card:hover .process-step-num {
  color: var(--accent);
}

.process-card-title {
  font-size: 1.0625rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.process-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* 12. FAQ Section */
.faq-section {
  background-color: var(--bg-card);
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.is-active {
  border-color: var(--accent);
  background-color: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.faq-button {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--transition-fast);
}

.faq-item.is-active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  padding: 0 20px;
}

.faq-item.is-active .faq-answer {
  max-height: 400px;
  padding: 0 20px 18px 20px;
}

.faq-answer-inner {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

/* 13. Contact & Quote Section */
.contact-section {
  background-color: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.contact-info-card {
  background-color: var(--primary);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: #cbd5e1;
  font-size: 0.9375rem;
  margin-bottom: 24px;
}

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

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

.contact-detail-icon {
  width: 20px;
  height: 20px;
  color: #93c5fd;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #93c5fd;
  margin-bottom: 2px;
}

.contact-detail-text a, .contact-detail-text span {
  color: var(--text-white);
  font-size: 0.9375rem;
  line-height: 1.4;
}

.contact-detail-text a:hover {
  text-decoration: underline;
}

.hours-highlight {
  background-color: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(13, 148, 136, 0.4);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  margin-top: 12px;
}

.hours-highlight-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #5eead4;
  margin-bottom: 2px;
}

.hours-highlight-desc {
  font-size: 0.75rem;
  color: #e2e8f0;
}

/* Contact Form */
.contact-form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: var(--shadow-sm);
}

.form-header {
  margin-bottom: 20px;
}

.form-header h3 {
  font-size: 1.375rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 10px 14px;
  background-color: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--text-main);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background-color: var(--bg-card);
}

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

.form-note {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-top: 8px;
}

.form-alert {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.form-alert.success {
  display: block;
  background-color: var(--success-bg);
  border: 1px solid #bbf7d0;
  color: var(--success);
}

.form-alert.info {
  display: block;
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}

/* 14. Final Call to Action */
.final-cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--text-white);
  text-align: center;
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.final-cta-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.final-cta-title {
  color: var(--text-white);
  font-size: clamp(1.875rem, 3.2vw, 2.5rem);
  margin-bottom: 14px;
}

.final-cta-desc {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  margin: 0 auto 28px auto;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* 15. Social Links Section */
.social-links-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 36px 0;
}

.social-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.social-bar-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.social-icons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.social-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background-color: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.social-link-btn:hover {
  background-color: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.social-link-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* 16. Site Footer */
.site-footer {
  background-color: var(--primary-dark);
  color: #94a3b8;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 3vw, 40px);
}

.footer-col-brand .site-logo {
  margin-bottom: 14px;
}

.footer-col-brand .logo-brand {
  color: var(--text-white);
}

.footer-col-brand p {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-heading {
  color: var(--text-white);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--text-white);
  text-decoration: underline;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8125rem;
  color: #cbd5e1;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  color: #93c5fd;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

/* 17. 404 & Utility Page Styles */
.error-page-wrapper {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 16px;
}

.error-content {
  max-width: 540px;
  background-color: var(--bg-card);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.error-code {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

/* 18. Responsive Breakpoints */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  
  .menu-toggle {
    display: inline-flex;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  
  .top-bar-left, .top-bar-right {
    gap: 10px;
  }
  
  .header-cta-group .btn-secondary {
    display: none;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .area-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .final-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .final-cta-buttons .btn {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-metric-grid {
    grid-template-columns: 1fr;
  }
  
  .logo-brand {
    font-size: 0.9375rem;
  }
  
  .header-cta-group .btn {
    padding: 7px 12px;
    font-size: 0.8125rem;
  }
}

@media (max-width: 375px) {
  :root {
    --container-safe: calc(100% - 20px);
  }
  
  .site-logo {
    gap: 6px;
  }
  
  .logo-symbol {
    width: 34px;
    height: 34px;
    font-size: 0.9375rem;
  }
  
  .logo-sub {
    display: none;
  }
}
