/* ============================================================
   BUILDCRAFT CONSTRUCTION THEME — Premium CSS Design System
   Colors: #FF6B00 (orange), #1A1A1A (charcoal), #F5F5F5 (light)
   ============================================================ */

/* ---- Google Fonts are loaded in layout.blade.php ---- */

:root {
  --cn-primary:       #FFB800;
  --cn-primary-dark:  #E0A200;
  --cn-primary-light: #FFC838;
  --cn-dark:          #111111;
  --cn-dark-2:        #1A1A1A;
  --cn-dark-3:        #242424;
  --cn-dark-4:        #2E2E2E;
  --cn-card-bg:       #FFFFFF;
  --cn-border:        #E5E7EB;
  --cn-text-light:    #111111;
  --cn-text-muted:    #666666;
  --cn-text-dim:      #888888;
  --cn-white:         #FFFFFF;
  --cn-radius:        8px;
  --cn-radius-lg:     12px;
  --cn-shadow:        0 4px 24px rgba(0,0,0,0.08);
  --cn-shadow-orange: 0 4px 20px rgba(255,184,0,0.3);
  --cn-transition:    all 0.3s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
.cn-body *,
.cn-body *::before,
.cn-body *::after { box-sizing: border-box; }

html, body, .cn-body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

.cn-body {
  font-family: 'Inter', sans-serif;
  background: #FAFAFA;
  color: #222222;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.cn-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TOPBAR — White Background
   ============================================================ */
.cn-topbar {
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  padding: 9px 0;
  font-size: 13px;
}
.cn-topbar-pill {
  background: var(--cn-primary);
  color: #111111;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cn-topbar-tagline { color: #333333 !important; font-size: 13px; font-weight: 500; opacity: 1; }
.cn-topbar-link {
  color: #333333 !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: var(--cn-transition);
  opacity: 1;
}
.cn-topbar-link:hover { color: #E0A200 !important; }
.cn-topbar-divider {
  width: 1px; height: 14px;
  background: #E5E7EB;
  display: inline-block;
}

/* ============================================================
   HEADER / NAVBAR — White Background
   ============================================================ */
.cn-header {
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.cn-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.cn-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.cn-logo-icon {
  width: 42px; height: 42px;
  background: var(--cn-primary);
  border-radius: var(--cn-radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #111111;
}
.cn-logo-text {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #111111;
  letter-spacing: 0.5px;
  line-height: 1;
}
.cn-logo-text span { color: var(--cn-primary); }
.cn-logo-img { height: 52px; width: auto; object-fit: contain; }

.cn-nav { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.cn-nav-link {
  color: #222222 !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--cn-radius);
  transition: var(--cn-transition);
  position: relative;
  white-space: nowrap;
}
.cn-nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 3px;
  background: var(--cn-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--cn-transition);
}
.cn-nav-link:hover,
.cn-nav-link.active { color: #111111 !important; font-weight: 700; }
.cn-nav-link:hover::after,
.cn-nav-link.active::after { transform: scaleX(1); }

/* Hamburger */
.cn-hamburger {
  display: none;
  background: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-radius: var(--cn-radius);
  padding: 8px 10px;
  cursor: pointer;
  color: #111111;
  font-size: 18px;
}
.cn-mobile-nav {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
  padding: 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease, visibility 0.3s ease;
}
.cn-mobile-nav.open {
  max-height: 480px;
  opacity: 1;
  visibility: visible;
  padding: 12px 0;
}
.cn-mobile-nav-link {
  display: block;
  padding: 12px 24px;
  color: #222222 !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #F0F0F0;
  transition: var(--cn-transition);
}
.cn-mobile-nav-link:hover,
.cn-mobile-nav-link.active { color: #E0A200 !important; padding-left: 30px; background: #FFF9E6; }
  transition: var(--cn-transition);
}
.cn-mobile-nav-link:hover { color: var(--cn-primary); padding-left: 30px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.cn-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--cn-radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--cn-transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.cn-btn-primary {
  background: var(--cn-primary);
  color: var(--cn-white);
  border-color: var(--cn-primary);
}
.cn-btn-primary:hover {
  background: var(--cn-primary-dark);
  border-color: var(--cn-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--cn-shadow-orange);
  color: var(--cn-white);
  text-decoration: none;
}
.cn-btn-outline {
  background: transparent;
  color: var(--cn-white);
  border-color: rgba(255,255,255,0.35);
}
.cn-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--cn-white);
  color: var(--cn-white);
  transform: translateY(-2px);
  text-decoration: none;
}
.cn-btn-outline-orange {
  background: transparent;
  color: var(--cn-primary);
  border-color: var(--cn-primary);
}
.cn-btn-outline-orange:hover {
  background: var(--cn-primary);
  color: var(--cn-white);
  transform: translateY(-2px);
  box-shadow: var(--cn-shadow-orange);
  text-decoration: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.cn-hero {
  position: relative;
  min-height: 520px;
  display: block;
  overflow: hidden;
  padding: 60px 0 40px;
}
.cn-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.3) 60%, rgba(10,10,10,0.05) 100%);
  z-index: 1;
}
.cn-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 70px 0;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}
.cn-hero .row {
  justify-content: flex-start !important;
  text-align: left !important;
}
.cn-hero .col-lg-7,
.cn-hero .col-lg-6,
.cn-hero .col-12 {
  text-align: left !important;
}
.cn-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--cn-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: left !important;
  align-self: flex-start !important;
}
.cn-hero-title {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  color: var(--cn-white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.cn-hero-title span { color: var(--cn-primary); }
.cn-hero-subtitle {
  font-size: 17px;
  color: #FFFFFF !important;
  opacity: 0.95;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
}
.cn-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.cn-hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.cn-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cn-trust-icon {
  width: 36px; height: 36px;
  background: rgba(255,107,0,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cn-primary);
  font-size: 14px;
  flex-shrink: 0;
}
.cn-trust-label { font-size: 12px; font-weight: 700; color: var(--cn-white); line-height: 1.2; }
.cn-trust-sub   { font-size: 11px; color: rgba(255,255,255,0.85); }

/* ============================================================
   STATS BAR
   ============================================================ */
.cn-stats-bar {
  background: var(--cn-primary);
  padding: 0;
}
.cn-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cn-stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: var(--cn-transition);
}
.cn-stat-item:last-child { border-right: none; }
.cn-stat-item:hover { background: rgba(0,0,0,0.12); }
.cn-stat-number {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--cn-white);
  line-height: 1;
  margin-bottom: 4px;
}
.cn-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.cn-section {
  padding: 56px 0 !important;
  background: #FFFFFF;
  color: #111111;
}
.cn-section-alt {
  background: #F4F5F7;
  color: #111111;
  padding: 56px 0 !important;
}
.cn-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,184,0,0.12);
  border: 1px solid rgba(255,184,0,0.35);
  color: #E0A200;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.cn-section-title {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #111111;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.cn-section-title span { color: #FFB800; }
.cn-section-subtitle {
  font-size: 16px;
  color: var(--cn-text-muted);
  max-width: 580px;
  line-height: 1.7;
}
.cn-section-header-center { text-align: center; }
.cn-section-header-center .cn-section-subtitle { margin: 0 auto; }

.cn-divider {
  width: 56px; height: 3px;
  background: var(--cn-primary);
  border-radius: 2px;
  margin: 16px 0 24px;
}
.cn-divider-center { margin: 16px auto 24px; }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.cn-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cn-service-card {
  background: var(--cn-card-bg);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-lg);
  overflow: hidden;
  transition: var(--cn-transition);
  cursor: pointer;
}
.cn-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--cn-primary);
  box-shadow: var(--cn-shadow-orange);
}
.cn-service-img {
  height: 180px;
  object-fit: cover;
  width: 100%;
  display: block;
  transition: var(--cn-transition);
}
.cn-service-card:hover .cn-service-img { transform: scale(1.04); }
.cn-service-body {
  padding: 20px;
}
.cn-service-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(255,107,0,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cn-primary);
  font-size: 18px;
  margin-bottom: 12px;
  transition: var(--cn-transition);
}
.cn-service-card:hover .cn-service-icon-wrap {
  background: var(--cn-primary);
  color: var(--cn-white);
}
.cn-service-title {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 8px;
}
.cn-service-desc { font-size: 14px; color: var(--cn-text-muted); line-height: 1.6; }

/* ============================================================
   PROJECT PORTFOLIO CARDS
   ============================================================ */
.cn-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cn-filter-tab {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255,107,0,0.25);
  color: var(--cn-text-muted);
  background: transparent;
  transition: var(--cn-transition);
}
.cn-filter-tab:hover,
.cn-filter-tab.active {
  background: var(--cn-primary);
  color: var(--cn-white);
  border-color: var(--cn-primary);
}

.cn-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cn-project-card {
  position: relative;
  border-radius: var(--cn-radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--cn-card-bg);
  transition: var(--cn-transition);
}
.cn-project-card:hover { transform: translateY(-6px); box-shadow: var(--cn-shadow-orange); }
.cn-project-img {
  width: 100%; height: 240px;
  object-fit: cover;
  display: block;
  transition: var(--cn-transition);
}
.cn-project-card:hover .cn-project-img { transform: scale(1.06); }
.cn-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  transition: var(--cn-transition);
}
.cn-project-card:hover .cn-project-overlay { background: linear-gradient(0deg, rgba(255,107,0,0.85) 0%, rgba(0,0,0,0.5) 100%); }
.cn-project-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
}
.cn-project-cat {
  display: inline-block;
  background: var(--cn-primary);
  color: var(--cn-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.cn-project-title {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.cn-project-meta { font-size: 12px; color: rgba(255,255,255,0.75); }
.cn-project-desc { font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 6px; line-height: 1.5; }

/* ============================================================
   WHY CHOOSE US / SPECIALIZATIONS
   ============================================================ */
.cn-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cn-why-card {
  background: var(--cn-card-bg);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-lg);
  padding: 28px;
  transition: var(--cn-transition);
}
.cn-why-card:hover {
  border-color: var(--cn-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.15);
}
.cn-why-icon {
  width: 52px; height: 52px;
  background: rgba(255,107,0,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cn-primary);
  font-size: 22px;
  margin-bottom: 16px;
  transition: var(--cn-transition);
}
.cn-why-card:hover .cn-why-icon {
  background: var(--cn-primary);
  color: var(--cn-white);
}
.cn-why-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 8px;
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
}
.cn-why-desc { font-size: 14px; color: var(--cn-text-muted); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.cn-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cn-testimonial-card {
  background: var(--cn-card-bg);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-lg);
  padding: 28px;
  position: relative;
  transition: var(--cn-transition);
}
.cn-testimonial-card:hover {
  border-color: var(--cn-primary);
  transform: translateY(-4px);
}
.cn-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 64px;
  color: var(--cn-primary);
  opacity: 0.15;
  font-family: serif;
  line-height: 1;
}
.cn-stars {
  display: flex; gap: 3px; margin-bottom: 14px;
}
.cn-stars i { color: var(--cn-primary); font-size: 14px; }
.cn-testimonial-text {
  font-size: 14px;
  color: var(--cn-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.cn-testimonial-author { display: flex; align-items: center; gap: 12px; }
.cn-author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cn-primary);
  flex-shrink: 0;
}
.cn-author-name { font-size: 14px; font-weight: 700; color: var(--cn-white); }
.cn-author-role { font-size: 12px; color: var(--cn-text-muted); }

/* ============================================================
   TEAM MEMBERS
   ============================================================ */
.cn-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cn-team-card {
  background: var(--cn-card-bg);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-lg);
  overflow: hidden;
  transition: var(--cn-transition);
  text-align: center;
}
.cn-team-card:hover {
  border-color: var(--cn-primary);
  transform: translateY(-6px);
  box-shadow: var(--cn-shadow-orange);
}
.cn-team-img-wrap {
  position: relative;
  overflow: hidden;
}
.cn-team-img {
  width: 100%; height: 200px;
  object-fit: cover;
  display: block;
  transition: var(--cn-transition);
}
.cn-team-card:hover .cn-team-img { transform: scale(1.06); }
.cn-team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,107,0,0.7);
  opacity: 0;
  transition: var(--cn-transition);
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
}
.cn-team-card:hover .cn-team-overlay { opacity: 1; }
.cn-social-btn {
  width: 36px; height: 36px;
  background: var(--cn-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cn-primary);
  font-size: 14px;
  text-decoration: none;
  transition: var(--cn-transition);
}
.cn-social-btn:hover { background: var(--cn-primary); color: var(--cn-white); }
.cn-team-body { padding: 18px; }
.cn-team-name {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cn-white);
  margin-bottom: 4px;
}
.cn-team-role { font-size: 13px; color: var(--cn-primary); font-weight: 600; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cn-cta-section {
  background: var(--cn-primary);
  padding: 80px 0;
}
.cn-cta-title {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--cn-white);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.cn-cta-subtitle { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.cn-btn-cta-dark {
  background: var(--cn-dark);
  color: var(--cn-white);
  border-color: var(--cn-dark);
}
.cn-btn-cta-dark:hover {
  background: #000;
  border-color: #000;
  color: var(--cn-white);
  transform: translateY(-2px);
  text-decoration: none;
}
.cn-btn-cta-white {
  background: transparent;
  color: var(--cn-white);
  border-color: rgba(255,255,255,0.5);
}
.cn-btn-cta-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--cn-white);
  color: var(--cn-white);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ============================================================
   PAGE HERO (About / Services / Contact / Portfolio)
   ============================================================ */
.cn-page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cn-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(255,107,0,0.2) 100%);
  z-index: 1;
}
.cn-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 0;
}
.cn-page-hero-title {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--cn-white);
  margin-bottom: 12px;
}
.cn-page-hero-subtitle { font-size: 17px; color: #FFFFFF !important; opacity: 0.95; max-width: 540px; margin: 0 auto; }
.cn-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.cn-breadcrumb a { color: var(--cn-primary); text-decoration: none; }
.cn-breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.cn-about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cn-about-img {
  border-radius: var(--cn-radius-lg);
  width: 100%; height: 420px;
  object-fit: cover;
  box-shadow: var(--cn-shadow);
  border: 2px solid var(--cn-border);
}
.cn-about-badge-wrap {
  position: relative;
}
.cn-about-years-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--cn-primary);
  color: var(--cn-white);
  border-radius: var(--cn-radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--cn-shadow-orange);
}
.cn-about-years-num {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}
.cn-about-years-label { font-size: 12px; font-weight: 600; opacity: 0.9; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.cn-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.cn-contact-info-card {
  background: var(--cn-card-bg);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-lg);
  padding: 32px;
}
.cn-contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cn-contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cn-contact-icon {
  width: 44px; height: 44px;
  background: rgba(255,107,0,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cn-primary);
  font-size: 18px;
  flex-shrink: 0;
}
.cn-contact-info-label { font-size: 12px; color: var(--cn-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.cn-contact-info-value { font-size: 15px; color: var(--cn-white); font-weight: 500; }
.cn-contact-info-value a { color: var(--cn-white); text-decoration: none; }
.cn-contact-info-value a:hover { color: var(--cn-primary); }

.cn-contact-form-card {
  background: var(--cn-card-bg);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-lg);
  padding: 36px;
}
.cn-form-group { margin-bottom: 20px; }
.cn-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--cn-text-light);
  margin-bottom: 8px;
}
.cn-form-control {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--cn-radius);
  color: var(--cn-text-light);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: var(--cn-transition);
  font-family: inherit;
}
.cn-form-control:focus {
  border-color: var(--cn-primary);
  background: rgba(255,107,0,0.05);
}
.cn-form-control::placeholder { color: var(--cn-text-dim); }
textarea.cn-form-control { resize: vertical; min-height: 120px; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.cn-services-page-list { display: flex; flex-direction: column; gap: 32px; }
.cn-service-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--cn-card-bg);
  border: 1px solid var(--cn-border);
  border-radius: var(--cn-radius-lg);
  overflow: hidden;
  transition: var(--cn-transition);
}
.cn-service-row:hover { border-color: var(--cn-primary); }
.cn-service-row-img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
}
.cn-service-row-body { padding: 32px 32px 32px 0; }
.cn-service-row-title {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--cn-white);
  margin-bottom: 12px;
}
.cn-service-row-desc { font-size: 15px; color: var(--cn-text-muted); line-height: 1.7; margin-bottom: 16px; }
.cn-service-features { display: flex; flex-wrap: wrap; gap: 8px; }
.cn-service-feature {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--cn-text-muted);
}
.cn-service-feature i { color: var(--cn-primary); }

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   FOOTER (Ref Image 4 Match)
   ============================================================ */
.cn-footer {
  background: #0B111F;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 64px;
  padding-bottom: 0;
  color: #FFFFFF;
}
.cn-footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 1fr 1.4fr;
  gap: 36px;
  padding-bottom: 50px;
}
.cn-footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin: 14px 0 20px;
  max-width: 300px;
}
.cn-footer-social { display: flex; gap: 8px; }
.cn-footer-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #FFFFFF;
  font-size: 14px;
  text-decoration: none;
  transition: var(--cn-transition);
  border: 1px solid rgba(255,255,255,0.12);
}
.cn-footer-social-btn:hover { background: #FFB800; color: #111111; border-color: #FFB800; transform: translateY(-2px); }
.cn-footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.cn-footer-links { list-style: none; padding: 0; margin: 0; }
.cn-footer-links li { margin-bottom: 10px; }
.cn-footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13.5px;
  transition: var(--cn-transition);
  display: inline-block;
}
.cn-footer-links a:hover { color: #FFB800; padding-left: 2px; }
.cn-footer-contact-item {
  display: flex; gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.cn-footer-contact-icon {
  color: #FFFFFF;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}
.cn-footer-contact-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.cn-footer-contact-text a { color: rgba(255,255,255,0.8); text-decoration: none; }
.cn-footer-contact-text a:hover { color: #FFB800; }
.cn-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.cn-footer-copy { font-size: 13px; color: rgba(255,255,255,0.6); }
.cn-footer-copy span { color: #FFB800; }
.cn-footer-yellow-line {
  display: inline-block; width: 24px; height: 2px; background: #FFB800; vertical-align: middle; margin-left: 6px;
}
.cn-footer-contact-item {
  display: flex; gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.cn-footer-contact-icon {
  color: var(--cn-primary);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}
.cn-footer-contact-text {
  font-size: 13px;
  color: var(--cn-text-muted);
  line-height: 1.5;
}
.cn-footer-contact-text a { color: var(--cn-text-muted); text-decoration: none; }
.cn-footer-contact-text a:hover { color: var(--cn-primary); }
.cn-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.cn-footer-copy { font-size: 13px; color: var(--cn-text-dim); }
.cn-footer-copy span { color: var(--cn-primary); }

/* ============================================================
   FORM ALERT
   ============================================================ */
.cn-alert {
  padding: 14px 20px;
  border-radius: var(--cn-radius);
  font-size: 14px;
  margin-bottom: 20px;
}
.cn-alert-success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }
.cn-alert-error   { background: rgba(239,68,68,0.12);  border: 1px solid rgba(239,68,68,0.3);  color: #fca5a5; }

/* ============================================================
   UTILITIES
   ============================================================ */
.cn-text-orange { color: var(--cn-primary) !important; }
.cn-text-muted  { color: var(--cn-text-muted) !important; }
.cn-text-white  { color: var(--cn-white) !important; }
.cn-bg-dark     { background: var(--cn-dark) !important; }

/* ============================================================
   RESPONSIVE — TABLET (≤991px)
   ============================================================ */
/* ============================================================
   RESPONSIVE — TABLET & MOBILE SLIDERS, FOOTER & HERO CTA
   ============================================================ */
@media (max-width: 991.98px) {
  .cn-services-grid,
  .cn-why-grid { grid-template-columns: repeat(2, 1fr); }
  .cn-projects-grid { grid-template-columns: repeat(2, 1fr); }
  .cn-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .cn-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .cn-stat-item:nth-child(2n) { border-bottom: none; }
  .cn-about-story-grid { grid-template-columns: 1fr; }
  .cn-contact-grid { grid-template-columns: 1fr; }
  .cn-service-row { grid-template-columns: 1fr; }
  .cn-service-row-body { padding: 24px; }
  .cn-service-row-img { height: 200px; }
  .cn-hero-content { padding: 50px 0; }
  .cn-nav { display: none; }
  .cn-hamburger { display: flex; }

  /* Dynamic FAQ Accordion Icon Toggle */
  .cn-custom-faq-button::after { display: none !important; }
  .cn-custom-faq-button.collapsed .faq-icon-plus,
  .cn-custom-faq-button[aria-expanded="false"] .faq-icon-plus { display: inline-block !important; }
  .cn-custom-faq-button.collapsed .faq-icon-minus,
  .cn-custom-faq-button[aria-expanded="false"] .faq-icon-minus { display: none !important; }
  .cn-custom-faq-button:not(.collapsed) .faq-icon-plus,
  .cn-custom-faq-button[aria-expanded="true"] .faq-icon-plus { display: none !important; }
  .cn-custom-faq-button:not(.collapsed) .faq-icon-minus,
  .cn-custom-faq-button[aria-expanded="true"] .faq-icon-minus { display: inline-block !important; }
  .cn-custom-faq-button:not(.collapsed) {
    color: #0D0F12 !important;
    background: #F8F9FA !important;
  }
  .cn-custom-faq-button:not(.collapsed) .cn-faq-icon-toggle {
    background: #FFB800 !important;
    color: #111111 !important;
  }

  /* Testimonials: 1 Container ONLY Per Row (100% Width, Zero Peaking) */
  .cn-testimonials-grid,
  #cnTestiTrack,
  .cn-services-grid-5,
  .cn-team-grid,
  #teamSliderTrack {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    gap: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    -webkit-overflow-scrolling: touch;
  }
  .cn-testimonials-grid::-webkit-scrollbar,
  #cnTestiTrack::-webkit-scrollbar,
  .cn-services-grid-5::-webkit-scrollbar,
  .cn-team-grid::-webkit-scrollbar,
  #teamSliderTrack::-webkit-scrollbar {
    display: none !important;
  }
  .cn-testimonial-ref-card,
  .cn-tst-card,
  #cnTestiTrack > *,
  .cn-service-card-ref,
  .cn-team-grid > [class*="col-"],
  #teamSliderTrack > [class*="col-"] {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* Task 2: Projects Container Display Block (No Sliding) */
  .cn-projects-grid-5,
  .cn-projects-grid,
  #cnProjectsCardsContainer {
    display: flex !important;
    flex-direction: column !important;
    overflow-x: visible !important;
    gap: 16px !important;
  }
  .cn-projects-grid-5 .cn-project-card-ref,
  .cn-projects-grid .cn-project-card,
  .cn-project-card-item {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 767.98px) {
  /* Task 2: Mobile Dark Overlay for Hero on All Pages */
  .cn-hero-overlay {
    background: linear-gradient(180deg, rgba(10,10,10,0.80) 0%, rgba(10,10,10,0.68) 100%) !important;
    z-index: 1;
  }
  /* Task 5: 2 Columns Per Row on Mobile Footer */
  .cn-footer-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px 16px !important;
  }
  .cn-footer-col-brand {
    grid-column: span 2 !important;
  }
}

@media (max-width: 576px) {
  .cn-section { padding: 50px 0; }
  .cn-services-grid { grid-template-columns: 1fr; }
  .cn-projects-grid { grid-template-columns: 1fr; }
  .cn-why-grid { grid-template-columns: 1fr; }
  .cn-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .cn-hero-content { padding: 36px 0; }
  
  /* Task 3: Get a Quote & Watch Video Buttons Single Row on Mobile */
  .cn-hero-cta,
  .cn-hero-content .cn-hero-cta,
  .cn-hero-content .d-flex.gap-2,
  .cn-hero-content .d-flex.gap-sm-3 {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100% !important;
    margin-bottom: 24px !important;
  }
  .cn-hero-cta .cn-btn,
  .cn-hero-content .cn-hero-cta .cn-btn,
  .cn-hero-content .cn-btn {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    padding: 10px 8px !important;
    font-size: 12px !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
    letter-spacing: 0px !important;
  }
  .cn-hero-trust { gap: 16px; }
  .cn-cta-section { text-align: center; }
  .cn-filter-tabs { justify-content: center; }
  .cn-footer-bottom { flex-direction: column; text-align: center; }
  .cn-header-inner { height: 60px; }
  .cn-logo-img { height: 40px; }
  .cn-about-years-badge { bottom: 10px; right: 10px; }
  .cn-contact-form-card,
  .cn-contact-info-card { padding: 24px; }
}

/* ============================================================
   ANIMATIONS — LEFT TO RIGHT SLIDE (INTERIOR THEME STYLE)
   ============================================================ */
@keyframes cn-fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cn-slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes cn-slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.cn-animate { animation: cn-fadeInUp 0.6s ease both; }
.cn-animate-left { animation: cn-slideInLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) both !important; }
.cn-animate-right { animation: cn-slideInRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) both !important; }
.cn-animate-delay-1 { animation-delay: 0.1s; }
.cn-animate-delay-2 { animation-delay: 0.2s; }
.cn-animate-delay-3 { animation-delay: 0.3s; }

/* ============================================================
   BUILDCRAFT REFERENCE STYLES (MATCHING SCREENSHOT 2 PIXEL-BY-PIXEL)
   ============================================================ */
.cn-text-yellow { color: #FFB800 !important; }

/* Outline Dark Button ("View All Services" / "View All Projects") */
.cn-btn-outline-dark {
  background: transparent;
  color: #111111;
  border: 1.5px solid #CCCCCC;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.cn-btn-outline-dark:hover {
  background: #111111;
  color: #FFFFFF;
  border-color: #111111;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Yellow Button */
.cn-btn-yellow {
  background: #FFB800;
  color: #111111;
  border-color: #FFB800;
  font-weight: 800;
  border-radius: 30px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cn-btn-yellow:hover {
  background: #e0a200;
  border-color: #e0a200;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
  text-decoration: none;
}

/* Dark Pill Button with Play Icon */
.cn-btn-pill-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cn-btn-pill-dark:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: #ffffff;
  text-decoration: none;
}
.cn-play-icon {
  width: 28px; height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}

/* Script Font Overlays */
.cn-hero-script-overlay {
  position: absolute;
  top: 60px; right: 50px;
  font-family: 'Caveat', cursive;
  font-size: 42px;
  color: rgba(255, 255, 255, 0.85);
  transform: rotate(-4deg);
  z-index: 3;
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Hero Trust Bar & Highlights */
.cn-hero-trust-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.cn-trust-icon-yellow {
  width: 38px; height: 38px;
  background: #FFB800;
  color: #111111;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.cn-trust-title { font-size: 13px; font-weight: 700; color: #ffffff; line-height: 1.2; }
.cn-trust-sub   { font-size: 11px; color: rgba(255,255,255,0.7); }

/* Hero Bottom Right Floating Card */
.cn-hero-bottom-badge {
  position: absolute;
  bottom: 40px; right: 60px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 184, 0, 0.3);
  backdrop-filter: blur(12px);
  padding: 14px 22px;
  border-radius: 12px;
  z-index: 3;
}

/* Light Section for Services & Portfolio */
.cn-section-light {
  background: #FFFFFF;
  color: #111111;
}
/* Grey section (Testimonials) */
.cn-section-grey {
  background: #F9FAFB;
  color: #111111;
}
.cn-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #FFB800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cn-section-heading {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #111111;
  line-height: 1.15;
}
.cn-section-sub {
  font-size: 15px;
  color: #666666;
  max-width: 540px;
}

/* 5 Services Row Grid */
.cn-services-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cn-service-card-ref {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
}
.cn-service-card-ref:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.cn-service-img-wrap {
  position: relative;
  height: 140px;
  overflow: hidden;
}
.cn-service-ref-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.cn-service-card-ref:hover .cn-service-ref-img { transform: scale(1.08); }
.cn-service-icon-badge {
  position: absolute;
  bottom: 8px; left: 12px;
  width: 32px; height: 32px;
  background: #FFB800;
  color: #111111;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.cn-service-ref-body {
  padding: 14px;
  position: relative;
}
.cn-service-ref-title {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}
.cn-service-ref-desc {
  font-size: 12px;
  color: #777777;
  line-height: 1.4;
  margin-bottom: 0;
}
.cn-service-ref-arrow {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 26px; height: 26px;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #111111;
  font-size: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.cn-service-card-ref:hover .cn-service-ref-arrow {
  background: #FFB800;
  border-color: #FFB800;
  color: #111111;
}

/* About Us Section Ref */
.cn-about-ref-section {
  background: #FFFFFF;
  color: #111111;
  padding: 56px 0 !important;
}
.cn-about-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cn-about-card-full {
  grid-column: span 2;
}
.cn-about-card {
  background: #FFFFFF;
  border: 1.5px solid #F0F0F0;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.cn-about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  border-color: #E5E7EB;
}
.cn-about-card-icon {
  width: 44px; height: 44px;
  background: #FFF9E6;
  color: #FFB800;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.cn-about-card-title {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 8px;
}
.cn-about-card-desc { font-size: 14px; color: #666666; margin: 0; line-height: 1.6; }
.cn-values-list { display: flex; flex-wrap: wrap; gap: 10px 20px; font-size: 13.5px; color: #222222; font-weight: 700; margin-top: 10px; }

/* Dark Stats Bar */
.cn-dark-stats-bar {
  background: #111111;
  border-radius: 14px;
  padding: 24px 20px;
  margin-top: 36px;
}
.cn-dark-stat-item { padding: 10px; }
.cn-dark-stat-icon {
  width: 40px; height: 40px;
  background: #FFB800;
  color: #111111;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-bottom: 8px;
}
.cn-dark-stat-num {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}
.cn-dark-stat-label { font-size: 12px; color: rgba(255,255,255,0.7); }

/* 5 Projects Grid */
.cn-projects-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cn-project-card-ref {
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.cn-project-card-ref:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.cn-project-img-wrap {
  position: relative;
  height: 150px;
  overflow: hidden;
}
.cn-project-ref-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.cn-project-card-ref:hover .cn-project-ref-img { transform: scale(1.08); }
.cn-project-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,0.7);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}
.cn-project-ref-body { padding: 12px; }
.cn-project-ref-title { font-size: 14px; font-weight: 700; color: #111111; margin-bottom: 2px; }
.cn-project-ref-loc { font-size: 11px; color: #777777; }
.cn-project-arrow-btn {
  width: 28px; height: 28px;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #111111;
  font-size: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.cn-project-card-ref:hover .cn-project-arrow-btn {
  background: #FFB800;
  border-color: #FFB800;
  color: #111111;
}

/* Testimonial Quote Mark Icon */
.cn-quote-mark {
  width: 44px; height: 44px;
  background: #FFF9E6;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 20px;
}

/* Testimonial Ref Card (Task 3 Gap & Styling) */
.cn-section-grey {
  background: #FAFAFA;
  color: #111111;
  padding: 56px 0 !important;
}
.cn-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cn-testimonial-ref-card {
  background: #FFFFFF;
  border: 1.5px solid #F0F0F0;
  border-radius: 16px;
  padding: 34px 28px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.cn-testimonial-ref-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.cn-testimonial-quote { font-size: 14.5px; color: #333333; line-height: 1.7; font-style: italic; margin-bottom: 0; }
.cn-testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.cn-testimonial-name { font-size: 16px; font-weight: 700; color: #111111; }
.cn-testimonial-role { font-size: 12.5px; color: #777777; }

.cn-text-yellow { color: #FFB800 !important; }

/* Footer CTA Banner Wrapper (Ref Image 4 Match - Floating Card) */
.cn-footer-cta-wrapper {
  padding: 48px 0 36px !important;
  background: #FFFFFF;
}
.cn-footer-cta-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 32px 36px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.cn-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,18,30,0.65) 0%, rgba(10,18,30,0.35) 100%);
}
.cn-cta-script-overlay {
  position: absolute;
  top: 24px; right: 36px;
  font-family: 'Caveat', cursive;
  font-size: 32px;
  color: rgba(255,255,255,0.7);
  transform: rotate(-3deg);
  z-index: 3;
}
.cn-cta-sub {
  color: #FFFFFF !important;
  font-size: 15px;
  opacity: 0.95;
  max-width: 480px;
  line-height: 1.55;
}
.cn-cta-steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-left: auto;
  max-width: 240px;
}
.cn-step-v-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.cn-step-icon {
  width: 36px; height: 36px;
  background: #FFB800;
  color: #111111;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.cn-step-text { font-size: 13.5px; font-weight: 700; color: #FFFFFF; }

/* Section Navigation Arrows (prev/next on Services, Projects, Testimonials) */
.cn-nav-arrow {
  width: 36px; height: 36px;
  background: #FFFFFF;
  border: 1.5px solid #DDDDDD;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #333333;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.cn-nav-arrow:hover {
  background: #FFB800;
  border-color: #FFB800;
  color: #111111;
  transform: translateY(-1px);
}

/* Team Card Ref */
.cn-team-card-ref {
  background: #FFFFFF;
  border: 1.5px solid #F0F0F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  text-align: center;
}
.cn-team-card-ref:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  border-color: #E5E7EB;
}
.cn-team-card-img {
  width: 100%; height: 230px;
  object-fit: cover;
  display: block;
}
.cn-team-card-body {
  padding: 20px 16px;
}
.cn-team-card-name {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 2px;
}
.cn-team-card-role {
  font-size: 13px;
  color: #777777;
  margin-bottom: 14px;
}
.cn-team-social-row {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.cn-team-social-btn-sm {
  width: 30px; height: 30px;
  background: #F4F5F7;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #555555;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.cn-team-social-btn-sm:hover {
  background: #FFB800;
  color: #111111;
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
  .cn-services-grid-5,
  .cn-projects-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .cn-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .cn-team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .cn-services-grid-5,
  .cn-projects-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .cn-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .cn-team-grid { grid-template-columns: repeat(2, 1fr); }
  .cn-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .cn-dark-stats-bar .row { gap: 0; }
  .cn-cta-steps-vertical { align-items: flex-start; margin-top: 20px; }
}
@media (max-width: 767.98px) {
  section, .cn-section, .cn-about-ref-section, .cn-hero {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .cn-section-heading { font-size: 24px !important; margin-bottom: 8px !important; }
  .cn-about-cards-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .cn-about-card-full { grid-column: span 2 !important; }
  .cn-projects-grid-5 { grid-template-columns: 1fr !important; gap: 16px !important; }
  .cn-about-card { padding: 12px 10px !important; border-radius: 12px !important; }
  .cn-about-card-title { font-size: 13px !important; margin-bottom: 4px !important; }
  .cn-about-card-desc { font-size: 11px !important; line-height: 1.4 !important; }
  .cn-about-card-icon { width: 36px !important; height: 36px !important; font-size: 16px !important; margin-bottom: 8px !important; }
  .cn-hero-actions, .cn-hero-cta {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 8px !important;
    justify-content: flex-start !important;
  }
  .cn-hero-actions > a, .cn-hero-actions > button,
  .cn-hero-cta > a, .cn-hero-cta > button {
    flex: 1 1 50% !important;
    width: 50% !important;
    min-width: 0 !important;
    padding: 10px 4px !important;
    font-size: 11.5px !important;
    text-align: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .cn-testimonials-grid { grid-template-columns: 1fr; }
  .cn-team-grid { grid-template-columns: 1fr; }
  .cn-hero-script-overlay, .cn-cta-script-overlay, .cn-hero-bottom-badge { display: none !important; }
  .cn-footer-cta-card { padding: 28px 20px; }
}
@media (max-width: 576px) {
  .cn-team-grid { grid-template-columns: repeat(2, 1fr); }
  .cn-footer-grid { grid-template-columns: 1fr; }
  .cn-dark-stats-bar { padding: 16px 10px; }
  .cn-dark-stat-num { font-size: 22px; }
  .cn-dark-stat-label { font-size: 11px; }
  .cn-hero-cta .cn-btn { width: auto; justify-content: center; }
}

/* Testimonial Card Styling & Mobile Slider for Construction Theme */
.cn-tst-card {
    background: #ffffff;
    border: 1px solid var(--cn-border);
    border-radius: 16px;
    padding: 24px 20px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.cn-tst-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: var(--cn-primary);
}
.cn-tst-quote {
    font-size: 24px;
    color: var(--cn-primary);
    margin-bottom: 10px;
    line-height: 1;
}
.cn-tst-text {
    font-size: 13.5px;
    color: #4B5563;
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 14px;
}
.cn-tst-stars {
    color: #FFB800;
    font-size: 13px;
    margin-bottom: 14px;
}
.cn-tst-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cn-tst-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cn-primary);
}
.cn-tst-name {
    font-weight: 700;
    font-size: 14px;
    color: #111111;
}
.cn-tst-role {
    font-size: 12px;
    color: #64748B;
}

@media (max-width: 991.98px) {
    .tx-mobile-slider {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 0 !important;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    .tx-mobile-slider::-webkit-scrollbar { display: none; }
    .tx-mobile-slider > [class*="col-"] {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        scroll-snap-align: start !important;
        scroll-snap-stop: always !important;
        margin: 0 !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}

/* ============================================================
   INTERIOR-STYLE CONTACT PAGE STYLES FOR CONSTRUCTION THEME
   ============================================================ */
.cn-contact-hero-section {
  background: linear-gradient(180deg, #F4F5F7 0%, #FFFFFF 100%);
  padding: 60px 0 50px;
  position: relative;
}
.cn-contact-badge-pill {
  background: rgba(255, 184, 0, 0.15);
  color: #E0A200;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.cn-contact-hero-title {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  color: #111111;
  margin-bottom: 18px;
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
}
.cn-contact-hero-desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.cn-contact-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.cn-contact-bullet-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 184, 0, 0.15);
  color: #FFB800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cn-contact-bullet-title {
  font-size: 15px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 2px;
}
.cn-contact-bullet-sub {
  font-size: 13.5px;
  color: #666666;
  line-height: 1.5;
}
.cn-contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 44px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}
.cn-form-card-title {
  font-size: 24px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 4px;
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
}
.cn-form-card-sub {
  font-size: 14px;
  color: #666666;
  margin-bottom: 28px;
}
.cn-input-wrap {
  position: relative;
  margin-bottom: 18px;
}
.cn-input-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999999;
  font-size: 14px;
  pointer-events: none;
}
.cn-input-wrap textarea + i {
  top: 18px;
  transform: none;
}
.cn-custom-form-input {
  width: 100%;
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  padding: 12px 16px 12px 44px;
  font-size: 14px;
  color: #111111;
  transition: all 0.25s ease;
  outline: none;
}
.cn-custom-form-input:focus {
  background: #ffffff;
  border-color: #FFB800;
  box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.15);
}

/* ============================================================
   TAXIGO-MATCHED LAYOUT CLASSES FOR CONSTRUCTION THEME (.cn-)
   ============================================================ */
.cn-pill-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start !important;
    gap: 7px;
    padding: 5px 16px;
    background: #FFF8E6;
    color: #945B00;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    border-radius: 9999px;
    margin-bottom: 14px;
    margin-left: 0 !important;
    text-transform: uppercase;
    border: 1px solid rgba(255,184,0,0.3);
}

.cn-btn-yellow {
    background: #FFB800;
    color: #111111 !important;
    border: 1.5px solid #FFB800;
    border-radius: 9999px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}
.cn-btn-yellow:hover {
    background: #E0A200;
    color: #111111 !important;
    border-color: #E0A200;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,184,0,0.35);
}

.cn-btn-outline-dark {
    background: #ffffff;
    color: #111111 !important;
    border: 1.5px solid #111111;
    border-radius: 9999px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}
.cn-btn-outline-dark:hover {
    background: #111111;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.cn-light-stats-bar {
    background: #F4F5F7;
    border-radius: 16px;
    border: 1.5px solid #E2E8F0;
    padding: 24px 0;
    margin: 36px 0;
}
.cn-light-stats-bar .cn-stat-icon {
    background: #FFF8E6;
    color: #111111;
    border: 2px solid rgba(255,184,0,0.45);
}
.cn-light-stats-bar .cn-stat-num {
    color: #111111;
}
.cn-light-stats-bar .cn-stat-label {
    color: #64748B;
}
.cn-light-stats-bar .cn-stat-border {
    border-right: 1px solid #E2E8F0;
}
@media (max-width: 991.98px) {
    .cn-light-stats-bar .cn-stat-border {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
}

.cn-tst-card {
    background: #ffffff;
    border: 1.5px solid #F1F5F9;
    border-radius: 16px;
    padding: 28px 26px 24px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.cn-tst-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    border-color: rgba(255,184,0,0.4);
}
.cn-tst-quote {
    font-size: 28px;
    color: #FFB800;
    margin-bottom: 12px;
    line-height: 1;
}
.cn-tst-text {
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.65;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 14px;
}
.cn-tst-stars {
    color: #FFB800;
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.cn-tst-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cn-tst-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #F1F5F9;
}
.cn-tst-name {
    font-size: 14px;
    font-weight: 700;
    color: #0D0F12;
    line-height: 1.2;
}
.cn-tst-role {
    font-size: 11.5px;
    color: #64748B;
}

.cn-portfolio-card {
    background: #ffffff;
    border: 1.5px solid #F1F5F9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}
.cn-portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    border-color: rgba(255,184,0,0.4);
}
.cn-portfolio-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #F8F9FA;
    position: relative;
}
.cn-portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.cn-portfolio-card:hover .cn-portfolio-img-wrap img {
    transform: scale(1.06);
}
.cn-portfolio-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 16px 14px;
}
.cn-portfolio-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #FFB800;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}
.cn-portfolio-text {
    flex-grow: 1;
}
.cn-portfolio-title {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 4px;
    font-family: 'Barlow Condensed', 'Inter', sans-serif;
}
.cn-portfolio-desc {
    font-size: 12px;
    color: #64748B;
    line-height: 1.45;
    margin: 0;
}
.cn-portfolio-arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #F8F9FA;
    border: 1px solid #E2E8F0;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-decoration: none;
    flex-shrink: 0;
    align-self: flex-end;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.cn-portfolio-arrow:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.cn-category-scroll-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.cn-category-scroll-track::-webkit-scrollbar { display: none; }


/* Universal Full-Page Reveal Animations (Interior Style) */
.ic-reveal, .cn-reveal, .ev-reveal, .tx-reveal, .agency-reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.ic-reveal-left, .cn-reveal-left, .ev-reveal-left, .tx-reveal-left, .agency-reveal-left { opacity: 0; transform: translateX(-35px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.ic-reveal-right, .cn-reveal-right, .ev-reveal-right, .tx-reveal-right, .agency-reveal-right { opacity: 0; transform: translateX(35px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.ic-reveal-zoom, .cn-reveal-zoom, .ev-reveal-zoom, .tx-reveal-zoom, .agency-reveal-zoom { opacity: 0; transform: scale(0.92); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.ic-revealed, .cn-revealed, .ev-revealed, .tx-revealed, .agency-revealed { opacity: 1 !important; transform: translate(0, 0) scale(1) !important; }
