/* ==========================================================================
   TNV TECH DESIGNS LTD - OFFICIAL STYLESHEET (LIGHT THEME)
   RC NO. 7047365 | Architecture • Design • Building • Construction
   ========================================================================== */

:root {
  /* Brand Colors */
  --tnv-red: #d8232a;
  --tnv-red-hover: #b91c22;
  --tnv-red-light: #fef2f2;
  --tnv-red-border: #fecaca;
  --tnv-red-glow: rgba(216, 35, 42, 0.18);
  
  /* Neutral Palette - Light Architecture Aesthetic */
  --tnv-bg: #f8fafc;
  --tnv-card-bg: #ffffff;
  --tnv-card-hover: #ffffff;
  --tnv-border: #e2e8f0;
  --tnv-border-subtle: #f1f5f9;
  
  /* Typography Colors */
  --tnv-heading: #0f172a;
  --tnv-text: #334155;
  --tnv-muted: #64748b;
  --tnv-white: #ffffff;
  
  /* Fonts */
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Dimensions & Timing */
  --container-max: 1240px;
  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--tnv-bg);
  color: var(--tnv-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--tnv-heading);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1rem;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   01. STICKY TOP HEADER WRAPPER & FAITH ANNOUNCEMENT BAR
   ========================================================================== */
.sticky-header-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.top-faith-bar {
  background: linear-gradient(90deg, #991b1b 0%, #d8232a 50%, #991b1b 100%);
  color: #ffffff;
  padding: 8px 16px;
  text-align: center;
  position: relative;
  z-index: 1002;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.faith-caption {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.faith-caption::before,
.faith-caption::after {
  content: "✦";
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   02. NAVIGATION BAR (WHITE BACKGROUND MATCHING COMPANY LOGO)
   ========================================================================== */
.site-header {
  position: relative;
  width: 100%;
  z-index: 1000;
  background-color: var(--tnv-white);
  border-bottom: 2px solid #e2e8f0;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 58px;
}

.site-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1e293b;
  position: relative;
  padding: 8px 0;
}

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

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--tnv-red);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #0f172a;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--tnv-red);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(216, 35, 42, 0.25);
}

.btn-primary:hover {
  background-color: var(--tnv-red-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 35, 42, 0.35);
}

.btn-secondary {
  background-color: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: #f1f5f9;
  border-color: #94a3b8;
  color: var(--tnv-red);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: #0f172a;
  color: #ffffff;
  border: 1px solid #0f172a;
}

.btn-dark:hover {
  background-color: var(--tnv-red);
  border-color: var(--tnv-red);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 14px;
}

/* ==========================================================================
   03. HERO SECTION (LIGHT ARCHITECTURAL SHOWCASE)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.91) 50%, rgba(255, 255, 255, 0.82) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80');
  background-position: center 25%;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 44px 0 38px;
  overflow: hidden;
  border-bottom: 1px solid var(--tnv-border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 36px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tnv-red-light);
  border: 1px solid var(--tnv-red-border);
  padding: 5px 14px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--tnv-red);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  color: var(--tnv-heading);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.hero-title .highlight {
  color: var(--tnv-red);
}

.hero-subtitle {
  font-size: clamp(14.5px, 1.35vw, 17px);
  color: var(--tnv-text);
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust-bar {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.trust-label {
  font-size: 11px;
  color: var(--tnv-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Hero Floating Quick Quote Card */
.hero-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 22px 24px;
  box-shadow: var(--shadow-xl);
  max-width: 480px;
  width: 100%;
}

.hero-card-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.hero-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}

.hero-card-desc {
  font-size: 12.5px;
  color: var(--tnv-muted);
  margin-bottom: 0;
}

/* Subpage Hero Banner (Dark Architectural Showcase) */
.subpage-hero {
  background-color: #090d16;
  background-image: 
    linear-gradient(rgba(9, 13, 22, 0.90), rgba(15, 23, 42, 0.95)),
    url('https://images.unsplash.com/photo-1541888946425-d0fbb186c5f7?auto=format&fit=crop&w=1920&q=80');
  background-position: center 30%;
  background-size: cover;
  padding: 46px 0 38px 0;
  border-bottom: 1px solid #1e293b;
}

.subpage-hero .section-tag {
  color: #ef4444;
  font-size: 11px;
}

.subpage-hero h1 {
  font-size: clamp(26px, 3.8vw, 42px);
  color: #ffffff;
  margin-bottom: 10px;
}

.subpage-hero p {
  color: #cbd5e1;
  font-size: 16px;
  max-width: 700px;
  line-height: 1.55;
  margin-bottom: 0;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
.section {
  padding: 88px 0;
  position: relative;
  background-color: var(--tnv-bg);
}

.section-white {
  background-color: #ffffff;
  border-top: 1px solid var(--tnv-border);
  border-bottom: 1px solid var(--tnv-border);
}

.section-dark {
  background-color: #090d16;
  color: #cbd5e1;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
}

.section-dark .section-title {
  color: #ffffff;
}

.section-dark .section-desc {
  color: #94a3b8;
}

.section-dark .section-tag {
  color: #ef4444;
}

.section-dark .filter-btn {
  background-color: #111827;
  border-color: #334155;
  color: #cbd5e1;
}

.section-dark .filter-btn:hover,
.section-dark .filter-btn.active {
  background-color: var(--tnv-red);
  border-color: var(--tnv-red);
  color: #ffffff;
}

.section-dark .project-card {
  background-color: #111827;
  border-color: #1f293d;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.section-dark .project-card:hover {
  border-color: var(--tnv-red);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.section-dark .project-title {
  color: #ffffff;
}

.section-dark .project-desc {
  color: #94a3b8;
}

.section-dark .project-specs {
  background-color: #0c101b;
  border-color: #1e293b;
}

.section-dark .spec-label {
  color: #64748b;
}

.section-dark .spec-value {
  color: #f1f5f9;
}

.section-dark .founder-box {
  background-color: #111827;
  border-color: #1f293d;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.section-dark .founder-name {
  color: #ffffff;
}

.section-dark .founder-bio {
  color: #cbd5e1;
}

.section-dark .founder-quote {
  background-color: #0c101b;
  border-left-color: var(--tnv-red);
  color: #e2e8f0;
}

.section-dark .pillar-card {
  background-color: #111827;
  border-color: #1f293d;
}

.section-dark .pillar-card h2,
.section-dark .pillar-card h3 {
  color: #ffffff !important;
}

.section-dark .pillar-card p {
  color: #94a3b8 !important;
}

.section-charcoal {
  background-color: #ffffff;
  border-top: 1px solid var(--tnv-border);
  border-bottom: 1px solid var(--tnv-border);
}

.section-light {
  background-color: var(--tnv-bg);
  color: var(--tnv-text);
}

.section-header {
  margin-bottom: 52px;
}

.section-header.center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--tnv-red);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.6vw, 42px);
  color: #0f172a;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16.5px;
  color: var(--tnv-muted);
  line-height: 1.65;
}

/* ==========================================================================
   04. PILLARS & ARCHITECTURE / DESIGN / BUILD
   ========================================================================== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.pillar-card:hover {
  border-color: var(--tnv-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pillar-number {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--tnv-red);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.pillar-title {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 14px;
}

.pillar-desc {
  color: var(--tnv-text);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pillar-list {
  list-style: none;
  margin-bottom: 24px;
}

.pillar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  margin-bottom: 8px;
}

.pillar-list li::before {
  content: "✓";
  color: var(--tnv-red);
  font-weight: bold;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 28px;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

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

.service-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: #0f172a;
  color: #ffffff;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.service-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-outcome {
  background-color: #f1f5f9;
  border-left: 3px solid var(--tnv-red);
  padding: 10px 14px;
  font-size: 13px;
  color: #1e293b;
  margin-bottom: 20px;
  border-radius: 0 4px 4px 0;
}

/* ==========================================================================
   PROJECTS & PORTFOLIO
   ========================================================================== */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--tnv-red);
  border-color: var(--tnv-red);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(216, 35, 42, 0.25);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.project-card:hover {
  border-color: var(--tnv-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.project-thumb {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.06);
}

.project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--tnv-red);
  color: #ffffff;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.project-location {
  position: absolute;
  bottom: 14px;
  left: 16px;
  background-color: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(6px);
  padding: 4px 12px;
  font-size: 12px;
  color: #ffffff;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-content {
  padding: 26px;
}

.project-title {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 8px;
}

.project-meta {
  font-size: 13px;
  color: var(--tnv-red);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.project-desc {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;
}

.project-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 18px;
  font-size: 12.5px;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  color: var(--tnv-muted);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
}

.spec-value {
  color: #0f172a;
  font-weight: 700;
}

/* ==========================================================================
   08. PROCESS SECTION (5-STEP METHODOLOGY)
   ========================================================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

.process-step {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 28px 20px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step:hover {
  border-color: var(--tnv-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: rgba(216, 35, 42, 0.35);
  line-height: 1;
  margin-bottom: 12px;
  transition: var(--transition);
}

.process-step:hover .process-num {
  color: var(--tnv-red);
}

.process-title {
  font-size: 17px;
  color: #0f172a;
  margin-bottom: 10px;
}

.process-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 0;
}

/* ==========================================================================
   09. FOUNDER & LEADERSHIP
   ========================================================================== */
.founder-box {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  align-items: stretch;
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}

.founder-media-col {
  position: relative;
  display: flex;
  flex-direction: column;
}

.founder-primary-img-wrap {
  position: relative;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
}

.founder-img {
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  display: block;
}

.founder-badge-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(9, 13, 22, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--tnv-red);
  padding: 12px 16px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.founder-badge-role {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1.2px;
}

.founder-badge-sub {
  font-size: 12px;
  color: #cbd5e1;
}

.founder-info {
  padding: 38px 42px 38px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--tnv-red);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: inline-block;
}

.founder-name {
  font-size: clamp(26px, 3vw, 34px);
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.2;
}

.founder-credentials-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(216, 35, 42, 0.08);
  border: 1px solid rgba(216, 35, 42, 0.22);
  color: #0f172a;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
}

.cred-pill svg {
  color: var(--tnv-red);
  flex-shrink: 0;
}

.section-dark .cred-pill {
  background: rgba(216, 35, 42, 0.16);
  border-color: rgba(216, 35, 42, 0.35);
  color: #f1f5f9;
}

.founder-bio-content {
  margin-bottom: 22px;
}

.founder-bio {
  color: #334155;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.founder-bio strong {
  color: #0f172a;
}

.section-dark .founder-bio strong {
  color: #ffffff;
}

.founder-bio:last-child {
  margin-bottom: 0;
}

.ceo-mottos-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-dark .ceo-mottos-card {
  background: #090e17;
  border-color: #1e293b;
}

.motto-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.motto-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tnv-red);
}

.motto-text-bold {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.section-dark .motto-text-bold {
  color: #ffffff;
}

.motto-item.motto-faith {
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
}

.section-dark .motto-item.motto-faith {
  border-top-color: #1e293b;
}

.motto-text-faith {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: #b91c1c;
  letter-spacing: 0.8px;
}

.section-dark .motto-text-faith {
  color: #f87171;
}

.founder-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.founder-quote {
  font-style: italic;
  padding-left: 18px;
  border-left: 3px solid var(--tnv-red);
  color: #1e293b;
  font-size: 15px;
  margin-bottom: 24px;
  background: #f8fafc;
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
}

/* 3-Photo CEO In-Action Gallery */
.ceo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.ceo-gallery-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.section-dark .ceo-gallery-card {
  background: #111827;
  border-color: #1f293d;
}

.ceo-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ceo-gallery-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
  background-color: #0f172a;
}

.ceo-gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.3s ease;
}

.ceo-gallery-card:hover .ceo-gallery-img-wrap img {
  transform: scale(1.04);
}

.gallery-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 3px solid var(--tnv-red);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.ceo-gallery-caption {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.ceo-gallery-caption h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0;
  line-height: 1.35;
}

.section-dark .ceo-gallery-caption h4 {
  color: #ffffff;
}

.ceo-gallery-caption p {
  font-size: 13.5px;
  color: var(--tnv-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.section-dark .ceo-gallery-caption p {
  color: #94a3b8;
}

/* ==========================================================================
   10. TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.65;
  color: #334155;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
}

.testimonial-location {
  font-size: 12px;
  color: var(--tnv-muted);
}

/* ==========================================================================
   11. CTA BANNER (DARK ARCHITECTURAL IMPACT)
   ========================================================================== */
.cta-banner {
  background-color: #090d16;
  background-image: 
    linear-gradient(rgba(9, 13, 22, 0.90), rgba(15, 23, 42, 0.94)),
    url('https://images.unsplash.com/photo-1541888946425-d0fbb186c5f7?auto=format&fit=crop&w=1920&q=80');
  background-position: center;
  background-size: cover;
  padding: 88px 0;
  text-align: center;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
}

.cta-title {
  font-size: clamp(28px, 4.2vw, 46px);
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 17px;
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto 32px auto;
  line-height: 1.65;
}

/* ==========================================================================
   12. CONTACT & FORMS
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
}

.contact-info-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background-color: var(--tnv-red-light);
  border: 1px solid var(--tnv-red-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tnv-red);
  flex-shrink: 0;
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--tnv-muted);
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-value {
  font-size: 15.5px;
  color: #0f172a;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 36px;
  box-shadow: var(--shadow-md);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  padding: 12px 16px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14.5px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.form-control:focus {
  outline: none;
  border-color: var(--tnv-red);
  box-shadow: 0 0 0 3px var(--tnv-red-glow);
}

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

/* ==========================================================================
   13. FOOTER (DARK ARCHITECTURAL PRESTIGE)
   ========================================================================== */
.site-footer {
  background-color: #090d16;
  border-top: 1px solid #1e293b;
  padding-top: 70px;
  padding-bottom: 30px;
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 14.5px;
  line-height: 1.65;
  margin-top: 18px;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--tnv-red);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--tnv-red);
  transform: translateX(4px);
}

.footer-contact p,
.footer-contact strong {
  color: #cbd5e1;
}

.footer-contact a {
  color: #ffffff !important;
}

.footer-contact a:hover {
  color: var(--tnv-red) !important;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #64748b;
}

/* ==========================================================================
   06. FLOATING WHATSAPP BUTTON (RIGHT POSITIONED)
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 24px;
  top: auto;
  left: auto;
  transform: none;
  z-index: 9999;
  background-color: #25d366;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.08);
  background-color: #20ba59;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
  color: #ffffff;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  left: auto;
  background-color: #0f172a;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.whatsapp-tooltip::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  left: auto;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #0f172a;
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Footer Logo & Download Badge Pill */
.site-footer .footer-brand img {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 4px;
  display: inline-block;
  height: 48px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.download-pill {
  background: #111827;
  border: 1px solid #334155;
  color: #f1f5f9;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.download-pill:hover {
  background: var(--tnv-red);
  border-color: var(--tnv-red);
  color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLET & MOBILE AUDIT)
   ========================================================================== */
@media (max-width: 1024px) {
  .top-faith-bar {
    padding: 7px 16px;
  }

  .faith-caption {
    font-size: 11.5px;
    letter-spacing: 1.4px;
    gap: 8px;
  }

  .nav-container {
    height: 72px;
  }

  .site-logo img {
    height: 44px;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    background-color: var(--tnv-white);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 12px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
    border-bottom: 2px solid var(--tnv-border);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 14.5px;
    padding: 10px 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-actions .download-pill {
    display: none;
  }

  .hero-section {
    padding: 34px 0 28px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-card {
    max-width: 100%;
  }

  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .founder-box {
    grid-template-columns: 1fr;
    margin-bottom: 36px;
  }

  .founder-primary-img-wrap {
    min-height: 380px;
  }

  .founder-info {
    padding: 32px 28px;
  }

  .founder-img {
    max-height: 440px;
    min-height: 360px;
  }

  .ceo-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .top-faith-bar {
    padding: 6px 12px;
  }
  
  .faith-caption {
    font-size: 10.5px;
    letter-spacing: 1px;
    gap: 6px;
  }
  
  .nav-container {
    height: 66px;
  }
  
  .site-logo img {
    height: 40px;
  }

  .nav-actions .btn-sm {
    font-size: 11px;
    padding: 7px 12px;
  }

  .hero-section {
    padding: 28px 0 24px;
    min-height: auto;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 10px;
    width: 100%;
  }

  .hero-buttons .btn {
    flex: 1 1 auto;
    text-align: center;
    font-size: 12px;
    padding: 11px 16px;
  }

  .hero-trust-bar {
    margin-top: 20px;
    padding-top: 14px;
    gap: 16px 20px;
    justify-content: space-between;
  }

  .trust-number {
    font-size: 18px;
  }

  .trust-label {
    font-size: 10px;
  }

  .section {
    padding: 50px 0;
  }

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

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

  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .founder-info {
    padding: 24px 18px;
  }

  .founder-credentials-pills {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .ceo-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ceo-gallery-img-wrap {
    height: 220px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  /* Floating WhatsApp on Mobile (Right-Aligned) */
  .floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 18px;
    top: auto;
    left: auto;
    transform: none;
    width: 52px;
    height: 52px;
  }
  
  .floating-whatsapp:hover {
    transform: translateY(-2px) scale(1.06);
  }
  
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

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

@media (max-width: 480px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-section {
    padding: 22px 0 18px;
  }

  .hero-title {
    font-size: 27px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-card {
    padding: 18px 14px;
  }

  .hero-trust-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 12px;
  }

  .subpage-hero {
    padding: 34px 0 24px 0;
  }

  .subpage-hero h1 {
    font-size: 24px;
  }

  .subpage-hero p {
    font-size: 14px;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 20px 14px;
  }

  .service-body {
    padding: 18px 14px;
  }

  .project-content {
    padding: 18px 14px;
  }

  .project-specs {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    gap: 6px;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 11.5px;
  }

  .floating-whatsapp {
    bottom: 16px;
    right: 14px;
    width: 48px;
    height: 48px;
  }

  .floating-whatsapp svg {
    width: 25px;
    height: 25px;
  }
}
