/* ============================================================
   Smart Space Constructions - style-light.css
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --navy:          #1B2B3B;
  --navy-light:    #243447;
  --charcoal:      #424A51;
  --orange:        #F68920;
  --orange-dark:   #D4740E;
  --orange-light:  #FFF3E0;
  --light-bg:      #F8F9FA;
  --light-bg2:     #F0F4F8;
  --white:         #FFFFFF;
  --text:          #2D3436;
  --text-muted:    #636E72;
  --border:        #DDE3E9;
  --shadow-sm:     0 2px 8px rgba(27,43,59,.08);
  --shadow-md:     0 6px 24px rgba(27,43,59,.12);
  --shadow-lg:     0 16px 48px rgba(27,43,59,.16);
  --radius:        10px;
  --radius-lg:     16px;
  --transition:    .25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }

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

ul, ol { padding-left: 1.25rem; }

/* ── Utility ────────────────────────────────────────────────── */
.text-orange  { color: var(--orange) !important; }
.text-navy    { color: var(--navy) !important; }
.text-muted   { color: var(--text-muted) !important; }
.bg-navy      { background: var(--navy) !important; }
.bg-light-alt { background-color: var(--light-bg) !important; }
.bg-orange    { background: var(--orange) !important; }
.fw-800       { font-weight: 800 !important; }
.section-gap  { padding: 80px 0; }
.section-gap-sm { padding: 50px 0; }

/* Section label */
.section-label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  border: 1px solid rgba(246,137,32,.3);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
}

.divider-orange {
  width: 48px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px 0 28px;
}
.divider-orange.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary-ss {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary-ss:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(246,137,32,.35);
}
.btn-primary-ss:active { transform: translateY(0); }

.btn-outline-ss {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--orange);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 27px;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline-ss:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white-ss {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-white-ss:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

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

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar-ss {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding:0px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition:
    padding var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

/* Scrolled state - compact, elevated */
.navbar-ss.scrolled {
  padding: 6px 0;
  box-shadow: 0 2px 24px rgba(27,43,59,.13);
  border-bottom: 1px solid rgba(27,43,59,.06);
}

.navbar-ss .navbar-brand img {
  height: 80px;
  width: auto;
  transition: height var(--transition);
}
.navbar-ss.scrolled .navbar-brand img {
  height: 44px;
}
.navbar-ss .nav-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--charcoal);
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.navbar-ss .nav-link:hover,
.navbar-ss .nav-link.active {
  color: var(--orange);
  background: var(--orange-light);
}
.navbar-ss .dropdown-menu {
  border: none;
  border-top: 3px solid var(--orange);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 8px;
  min-width: 230px;
}
.navbar-ss .dropdown-item {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  color: var(--navy);
  border-radius: 6px;
  padding: 10px 14px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-ss .dropdown-item i {
  color: var(--orange);
  font-size: .85rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.navbar-ss .dropdown-item:hover,
.navbar-ss .dropdown-item:focus {
  background: var(--orange-light);
  color: var(--orange);
}
.navbar-ss .dropdown-item.active,
.navbar-ss .dropdown-item:active {
  background: var(--orange);
  color: var(--white) !important;
}
.navbar-ss .dropdown-item.active i,
.navbar-ss .dropdown-item:active i {
  color: var(--white) !important;
}
.navbar-cta {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.navbar-cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}
.navbar-toggler {
  border: none;
  padding: 4px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23424A51' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero-section {
  background-color: #1B2B3B;
  background-image: linear-gradient(135deg, #1B2B3B 0%, #243447 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: clip;
  padding: 80px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ── Hero Variants ───────────────────────────────────────────── */
.hero-sm {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.min-vh-50 {
  min-height: 50vh;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F68920' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246,137,32,.15);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(246,137,32,.3);
  margin-bottom: 20px;
}
.hero-section h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-section h1 span { color: var(--orange); }
.hero-section .hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 24px;
  margin-top: 40px;
}
.hero-stat {
  text-align: center;
}
@media (max-width: 991px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
}
.hero-stat .stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-form-card .form-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.hero-form-card .form-subtitle {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: #c0392b;
  background: #fff5f5;
  border: 1px solid #f5c6cb;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.urgency-badge::before {
  content: '●';
  color: #e74c3c;
  font-size: .6rem;
  animation: pulse 1.4s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* ── Form Styles ────────────────────────────────────────────── */
.form-label {
  font-family: 'Manrope', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-label-sm {
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
  display: block;
}
.inline-form-wrap .form-label-sm {
  color: rgba(255, 255, 255, .85);
}
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: .9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(246,137,32,.12);
  outline: none;
}
.input-group .input-group-text {
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  background: #f8f9fa;
  color: var(--text-muted);
  font-size: .8rem;
  font-weight: 600;
  padding: 0 10px;
}
.input-group .form-control {
  border-left: none;
  border-radius: 0 8px 8px 0;
}
.input-group:focus-within .input-group-text {
  border-color: var(--orange);
}
.input-group:focus-within .form-control {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(246,137,32,.12);
}
.form-control.is-invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.invalid-feedback {
  font-size: .78rem;
}
.form-control::placeholder { color: #b2bec3; }

/* Inline form (section CTAs) */
.inline-form-wrap {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.inline-form-wrap .form-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.inline-form-wrap .form-subtitle { color: rgba(255,255,255,.7); margin-bottom: 24px; }

/* ── Step Form ──────────────────────────────────────────────── */
.ssic-step-indicator {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.ssic-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}
.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: #adb5bd;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.step-check { display: none; font-size: .75rem; }
.ssic-step-item.active .step-circle {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(246,137,32,.18);
}
.ssic-step-item.completed .step-circle {
  background: var(--orange);
  color: var(--white);
}
.ssic-step-item.completed .step-num  { display: none; }
.ssic-step-item.completed .step-check { display: block; }
.step-label {
  font-size: .62rem;
  font-weight: 600;
  color: #adb5bd;
  white-space: nowrap;
  transition: color var(--transition);
  letter-spacing: .02em;
}
.ssic-step-item.active .step-label,
.ssic-step-item.completed .step-label { color: var(--orange); }
.ssic-step-connector {
  flex: 1;
  height: 2px;
  background: #e9ecef;
  margin: 15px 5px 0;
  transition: background var(--transition);
}
.ssic-step-connector.completed { background: var(--orange); }

/* Step Panels */
.ssic-form-step { display: none; }
.ssic-form-step.active {
  display: block;
  animation: stepSlideIn .25s ease;
}
.ssic-form-step.slide-back.active { animation: stepSlideInBack .25s ease; }
@keyframes stepSlideIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes stepSlideInBack {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.step-hint {
  font-size: .72rem;
  color: var(--text-muted);
  margin: 6px 0 0;
}
.step-nav {
  display: flex;
  gap: 8px;
}
.step-nav .btn-primary-ss {
  flex: 1;
  justify-content: center;
}

/* Inline form overrides */
.inline-form-wrap .step-label  { color: rgba(255,255,255,.45); }
.inline-form-wrap .ssic-step-item.active .step-label,
.inline-form-wrap .ssic-step-item.completed .step-label { color: var(--orange); }
.inline-form-wrap .step-hint   { color: rgba(255,255,255,.55); }
.inline-form-wrap .ssic-step-connector { background: rgba(255,255,255,.2); }
.inline-form-wrap .ssic-step-connector.completed { background: var(--orange); }
.inline-form-wrap .step-circle { background: rgba(255,255,255,.15); color: rgba(255,255,255,.5); }
.inline-form-wrap .ssic-step-item.active .step-circle,
.inline-form-wrap .ssic-step-item.completed .step-circle { background: var(--orange); color: var(--white); }

/* ── Pain Points Section ────────────────────────────────────── */
.pain-section { background: var(--light-bg); }
.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.pain-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--orange-light);
  border-radius: 50%;
  opacity: .6;
  pointer-events: none;
}
.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.pain-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.pain-icon-wrap {
  font-size: 1.8rem;
  width: 54px;
  height: 54px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pain-num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(246,137,32,.1);
  line-height: 1;
}
.pain-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.pain-card p {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.75;
}

/* ── Trust Factor Cards (Services hub) ─────────────────────── */
.trust-factor-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--orange);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.trust-factor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.tf-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(246,137,32,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 16px;
}
.trust-factor-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.trust-factor-card p {
  font-size: .875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ── Service Cards ──────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img .service-icon-overlay {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(246,137,32,.4);
}
.service-card-body {
  padding: 32px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: .875rem;
  color: var(--text-muted);
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  color: var(--orange);
  margin-top: 16px;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 10px; color: var(--orange-dark); }

/* ── Stats Section ──────────────────────────────────────────── */
.stats-section {
  background-color: #1B2B3B;
  background-image: none;
  padding: 60px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-item .stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-item .stat-suffix {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
}
.stat-item .stat-label {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  margin-top: 8px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.1);
  align-self: stretch;
  margin: 20px 0;
}

/* ── Process - Snake Layout ─────────────────────────────────── */
:root { --sp-label-h: 150px; --sp-dot-r: 27px; }

.ssic-process {
  display: flex;
  align-items: stretch;
  position: relative;
}
.ssic-process::before {
  content: '';
  position: absolute;
  top: calc(var(--sp-label-h) + var(--sp-dot-r));
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(to right, var(--orange), var(--orange-dark), var(--orange));
  border-radius: 3px;
  z-index: 0;
}
.sp-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sp-label-area {
  min-height: var(--sp-label-h);
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
}
.sp-above { justify-content: flex-end; padding-bottom: 22px; }
.sp-below { justify-content: flex-start; padding-top: 22px; }
.sp-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(246,137,32,.15), 0 4px 16px rgba(246,137,32,.28);
  transition: transform var(--transition), box-shadow var(--transition);
}
.sp-dot:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 10px rgba(246,137,32,.15), 0 8px 24px rgba(246,137,32,.35);
}
.sp-label-area h5 {
  font-family: 'Manrope', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.35;
}
.sp-label-area p {
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Why Choose Us ──────────────────────────────────────────── */
.why-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.why-item:last-child { border-bottom: none; }
.why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.why-item h5 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-item p {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-section {
  background-color: #0d1a24;
  background-image: linear-gradient(135deg, #0d1a24 0%, #1B2B3B 55%, #0d1a24 100%);
  position: relative;
  overflow: clip;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F68920' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/G%3E%3C/svg%3E");
  pointer-events: none;
}
.testimonials-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/backgrounds/bg-quotes-pattern.svg');
  background-size: 360px 240px;
  background-repeat: repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.testimonials-section .section-label {
  background: rgba(246,137,32,.15);
  color: var(--orange);
  border: 1px solid rgba(246,137,32,.25);
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,.65); }

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 24px rgba(0,0,0,.28);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

/* Google Review card - header row */
.tc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.tc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.22);
}
.tc-info { flex: 1; min-width: 0; }
.tc-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #202124;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tc-stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
}
.tc-stars {
  color: #F59E0B;
  font-size: .78rem;
  display: flex;
  gap: 1px;
}
.tc-date {
  font-size: .7rem;
  color: #70757a;
}
.tc-glogo { flex-shrink: 0; line-height: 0; }

/* Review body */
.tc-review {
  font-size: .875rem;
  color: #3c4043;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 16px;
}

/* Footer */
.tc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #e8eaed;
}
.tc-badge {
  font-size: .7rem;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-light);
  padding: 3px 10px;
  border-radius: 50px;
}
.tc-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  color: #5f6368;
  font-weight: 600;
}

/* Google Reviews trust bar - injected above swiper */
.gr-trust-bar {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 14px 28px;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
}
.gr-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gr-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gr-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: rgba(255,255,255,.9);
  letter-spacing: .01em;
}
.gr-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.2);
}
.gr-score { display: flex; align-items: center; gap: 10px; }
.gr-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
}
.gr-stars { color: #F59E0B; font-size: .82rem; display: flex; gap: 2px; }
.gr-count { font-size: .78rem; color: rgba(255,255,255,.65); }

/* Swiper overrides - global */
.swiper-pagination-bullet { background: var(--border); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--orange); }
.swiper-button-next, .swiper-button-prev {
  color: var(--orange) !important;
  width: 40px !important;
  height: 40px !important;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: .9rem !important; font-weight: 800; }

/* Testimonials swiper - arrows outside cards, dots lower */
.testimonials-swiper-wrap {
  position: relative;
  padding: 0 56px;
}
.testimonials-section .testimonials-swiper {
  padding-bottom: 48px;
}
.testimonials-section .swiper-pagination {
  bottom: 10px;
}
.testimonials-swiper-wrap .swiper-button-prev,
.testimonials-swiper-wrap .swiper-button-next {
  margin-top: -24px; /* re-center on card area, offset half of padding-bottom */
}
.testimonials-swiper-wrap .swiper-button-prev { left: 0; right: auto; }
.testimonials-swiper-wrap .swiper-button-next { right: 0; left: auto; }

/* Swiper overrides - inside dark testimonials section */
.testimonials-section .swiper-pagination-bullet { background: rgba(255,255,255,.25); }
.testimonials-section .swiper-pagination-bullet-active { background: var(--orange); }
.testimonials-section .swiper-button-next,
.testimonials-section .swiper-button-prev {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: none;
}
.testimonials-section .swiper-button-next:hover,
.testimonials-section .swiper-button-prev:hover {
  background: var(--orange);
}

/* ── Videos Section ─────────────────────────────────────────── */
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  position: relative;
  background: var(--navy);
  aspect-ratio: 16/9;
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-card .video-thumb {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.video-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: opacity var(--transition);
}
.video-card:hover .video-thumb img { opacity: .65; }
.video-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(246,137,32,.55);
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 2;
}
.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 12px 40px rgba(246,137,32,.7);
}
.play-ripple {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(246,137,32,.4);
  animation: ripplePulse 2s ease-out infinite;
}
@keyframes ripplePulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.video-card .video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(27,43,59,.95), transparent);
  color: var(--white);
  font-size: .82rem;
  font-weight: 500;
}
.video-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  background: var(--orange);
  padding: 3px 10px;
  border-radius: 50px;
  z-index: 2;
}

/* ── FAQs ───────────────────────────────────────────────────── */
.faq-section { background: var(--light-bg); }
.accordion-item {
  border: none;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.accordion-button {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  padding: 18px 22px;
  border: none;
}
.accordion-button:not(.collapsed) {
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23424A51'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
  font-size: .9rem;
  color: var(--text-muted);
  padding: 16px 22px 20px;
  background: var(--white);
}

/* ── Pricing Cards ──────────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid #c9d3df;
  padding: 32px 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(20, 40, 70, 0.06);
}
.pricing-card:hover, .pricing-card.featured {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(17, 43, 84, 0.14);
}
.pricing-card.featured {
  transform: translateY(-8px);
  background: #1B2B3B;
  border-color: #1B2B3B;
  z-index: 2;
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
  line-height: 1.2;
  z-index: 8;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
.pricing-tier {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0d3f7c;
  margin-bottom: 8px;
}
.pricing-name {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin: 2px 0 8px;
}
.pricing-price span { font-size: 1rem; font-weight: 600; color: #475e78; }
.pricing-desc {
  font-size: 1rem;
  color: #4c6078;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cfd8e3;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.pricing-features li {
  font-size: 1.02rem;
  color: #132844;
  font-weight: 600;
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid #d6deea;
}
.pricing-features li:last-child { border-bottom: 0; }
.pricing-features li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #18a558;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured .pricing-tier,
.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-desc,
.pricing-card.featured .pricing-features li {
  color: #ffffff;
}
.pricing-card.featured .pricing-price {
  color: #ffffff;
}
.pricing-card.featured .pricing-price span {
  color: rgba(255,255,255,.85);
}
.pricing-card.featured .pricing-desc,
.pricing-card.featured .pricing-features li {
  border-color: rgba(255,255,255,.22);
}
.pricing-card.featured .pricing-features li::before {
  color: #74e4a4;
}

/* Pricing carousel (home-construction page) */
.pricing-packages-carousel {
  position: relative;
  overflow: hidden;
}
.pricing-packages-swiper {
  overflow: hidden;
  padding: 34px 6px 10px;
}
.pricing-packages-swiper .swiper-wrapper,
.pricing-package-slide {
  height: auto;
  overflow: visible;
}
.pricing-packages-swiper .pricing-card {
  transform: scale(.9);
  opacity: .54;
  filter: saturate(.82);
  transition: transform .35s ease, opacity .35s ease, filter .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.pricing-packages-swiper .swiper-slide-active .pricing-card {
  transform: scale(1);
  opacity: 1;
  filter: none;
  box-shadow: 0 14px 30px rgba(17, 43, 84, 0.18);
  border-color: var(--orange);
}
.pricing-packages-swiper .pricing-card:hover {
  transform: scale(1);
}
.pricing-packages-swiper .swiper-slide-active .pricing-card.featured {
  transform: scale(1.02);
  border-color: #1B2B3B;
}
.pricing-packages-nav {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.pricing-packages-pagination {
  position: static !important;
  width: auto !important;
}
.pricing-packages-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: .35;
  background: #1B2B3B;
}
.pricing-packages-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--orange);
  transform: scale(1.15);
}
.pricing-packages-prev,
.pricing-packages-next {
  position: static !important;
  width: 38px;
  height: 38px;
  margin: 0 !important;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  background: var(--white);
  color: var(--orange);
}
.pricing-packages-prev::after,
.pricing-packages-next::after {
  font-size: 12px !important;
  font-weight: 800;
}
@media (max-width: 767px) {
  .pricing-packages-swiper {
    padding-top: 30px;
  }
  .pricing-packages-carousel .pricing-card.featured {
    margin-top: 0 !important;
  }
  .pricing-packages-swiper .swiper-slide-active .pricing-card.featured {
    transform: scale(1);
  }
}
.pricing-note {
  border: 1px solid #f2c18f;
  background: #fff8f1;
  color: #4d5968;
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
  font-size: .94rem;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background-color: #1B2B3B;
  background-image: linear-gradient(135deg, #1B2B3B 0%, #243447 100%);
  padding: 70px 0;
  position: relative;
  overflow: clip;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(246,137,32,.12) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,.75); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer-ss {
  background-color: #1B2B3B;
  color: rgba(255,255,255,.75);
  padding: 56px 0 0;
}
.footer-ss .footer-brand img { height: 64px; margin-bottom: 14px; }
.footer-ss .footer-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-ss h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--white);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-ss .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-ss .footer-links li { margin-bottom: 8px; }
.footer-ss .footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
}
.footer-ss .footer-links a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item .contact-icon {
  width: 30px;
  height: 30px;
  background: rgba(246,137,32,.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item .contact-text {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.footer-contact-item .contact-text a {
  color: rgba(255,255,255,.65);
}
.footer-contact-item .contact-text a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  margin-top: 40px;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--orange);
  color: var(--white);
}

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background-color: #1B2B3B;
  background-image: linear-gradient(135deg, #1B2B3B 0%, #243447 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: clip;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F68920' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.1rem; }
.breadcrumb-ss {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.breadcrumb-ss li {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb-ss li a { color: rgba(255,255,255,.65); }
.breadcrumb-ss li a:hover { color: var(--orange); }
.breadcrumb-ss li.active { color: var(--orange); }
.breadcrumb-ss li:not(:last-child)::after { content: '/'; margin-left: 8px; }

/* ── Feature Grid ───────────────────────────────────────────── */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--orange);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Contact Page ───────────────────────────────────────────── */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.contact-info-icon.navy { background: var(--navy); }
.contact-info-text h5 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-info-text p, .contact-info-text a {
  font-size: .875rem;
  color: var(--text-muted);
  margin: 0;
}
.contact-info-text a:hover { color: var(--orange); }

/* ── Thank You Page ─────────────────────────────────────────── */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--light-bg);
}
.thank-you-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}
.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(246,137,32,.3);
}

/* ── Trust Badges ───────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.trust-item .trust-icon { font-size: 1.3rem; color: var(--orange); }
.trust-item span {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--charcoal);
}

/* ── About Page ─────────────────────────────────────────────── */
.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.timeline-dot {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 6px;
  box-shadow: 0 0 0 4px rgba(246,137,32,.2);
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  padding-bottom: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card .team-img {
  height: 200px;
  background: var(--light-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 20px;
}
.team-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.team-card p { font-size: .82rem; color: var(--orange); font-weight: 600; margin: 0; }

/* ── Misc / Loading ─────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--light-bg) 25%, var(--border) 50%, var(--light-bg) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 6px;
}
@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(246,137,32,.4);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 999;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ── Floating WhatsApp ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 80px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform var(--transition);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); color: var(--white); }

/* ── Form Loading State ─────────────────────────────────────── */
.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn-loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  top: 50%;
  left: 50%;
  margin: -9px 0 0 -9px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── AOS overrides ──────────────────────────────────────────── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ── Section Background Sketches ────────────────────────────── */
/*
  SVG sketch backgrounds add architectural line-art texture.
  Dark sections (gradient bg): include gradient as 2nd background layer so
  the gradient is preserved. Light sections: background-image only.
  Hero/page-hero are skipped - they already have ::before patterns.
*/

/* Pain / problem sections (white bg) → navy dot grid tile, 50% overlay */
.pain-section {
  background-image:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url('../images/backgrounds/bg-blueprint-grid.svg');
  background-size: 100% 100%, 200px 200px;
  background-repeat: no-repeat, repeat;
}

/* Features / Why-Us / light-alt sections → architectural elevation at bottom, 50% overlay.
   Note: .bg-light-alt uses background-color !important (safe to add image). */
.bg-light-alt {
  background-image:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url('../images/backgrounds/bg-arch-elevation.svg');
  background-size: 100% 100%, 100% auto;
  background-repeat: no-repeat, no-repeat;
  background-position: center, bottom center;
}

/* Services section → isometric building sketch (right-aligned), 50% overlay */
#services {
  background-image:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url('../images/backgrounds/bg-isometric.svg');
  background-size: 100% 100%, auto 70%;
  background-repeat: no-repeat, no-repeat;
  background-position: center, right bottom;
}

/* Process section → floor plan sketch (left-aligned), 50% overlay */
#our-process {
  background-image:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url('../images/backgrounds/bg-floor-plan.svg');
  background-size: 100% 100%, auto 75%;
  background-repeat: no-repeat, no-repeat;
  background-position: center, left bottom;
}

/* FAQ sections → brick joint tile, 50% overlay */
.faq-section {
  background-image:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url('../images/backgrounds/bg-brick-tile.svg');
  background-size: 100% 100%, 120px 56px;
  background-repeat: no-repeat, repeat;
}

/* Stats section (solid navy from background-color) → white skyline, 50% navy overlay */
.stats-section {
  background-image:
    linear-gradient(rgba(27,43,59,0.5), rgba(27,43,59,0.5)),
    url('../images/backgrounds/bg-skyline.svg');
  background-size: 100% 100%, 100% auto;
  background-repeat: no-repeat, no-repeat;
  background-position: center, bottom center;
}

/* CTA banners: gradient navy bg + skyline + 50% navy overlay */
.cta-banner {
  background-image:
    linear-gradient(rgba(27,43,59,0.5), rgba(27,43,59,0.5)),
    url('../images/backgrounds/bg-skyline.svg'),
    linear-gradient(135deg, #1B2B3B 0%, #243447 100%);
  background-size: 100% 100%, 100% auto, cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center, bottom center, center;
}

/* Video showcase sections → classical columns facade, bottom-anchored */
.videos-section {
  background-image:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url('../images/backgrounds/bg-columns-facade.svg');
  background-size: 100% 100%, 100% auto;
  background-repeat: no-repeat, no-repeat;
  background-position: center, bottom center;
}

/* Pricing packages section → checkmark burst, right-anchored */
#pricing {
  background-image:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url('../images/backgrounds/bg-checkmark-burst.svg');
  background-size: 100% 100%, auto 60%;
  background-repeat: no-repeat, no-repeat;
  background-position: center, right center;
}

/* About us story/team section → interior room sketch, bottom */
#about-story {
  background-image:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url('../images/backgrounds/bg-interior-sketch.svg');
  background-size: 100% 100%, 100% auto;
  background-repeat: no-repeat, no-repeat;
  background-position: center, bottom center;
}

/* Services hub overview → hex grid tile */
#services-hub {
  background-image:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url('../images/backgrounds/bg-hex-grid.svg');
  background-size: 100% 100%, 900px 600px;
  background-repeat: no-repeat, repeat;
}

/* Commercial types section → drafting compass, left-anchored */
#commercial-types {
  background-image:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url('../images/backgrounds/bg-compass-draft.svg');
  background-size: 100% 100%, auto 75%;
  background-repeat: no-repeat, no-repeat;
  background-position: center, left bottom;
}

/* Turnkey scope section → hex grid tile */
#turnkey-scope {
  background-image:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url('../images/backgrounds/bg-hex-grid.svg');
  background-size: 100% 100%, 900px 600px;
  background-repeat: no-repeat, repeat;
}

/* Turnkey process journey → site plan compass, right-anchored */
#turnkey-process {
  background-image:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url('../images/backgrounds/bg-site-compass.svg');
  background-size: 100% 100%, auto 80%;
  background-repeat: no-repeat, no-repeat;
  background-position: center, right center;
}

/* Interior services listing → interior room sketch, bottom */
#interior-services {
  background-image:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url('../images/backgrounds/bg-interior-sketch.svg');
  background-size: 100% 100%, 100% auto;
  background-repeat: no-repeat, no-repeat;
  background-position: center, bottom center;
}

/* Contact info & form section → tools scatter, bottom */
#contact-info {
  background-image:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
    url('../images/backgrounds/bg-tools-scatter.svg');
  background-size: 100% 100%, 100% auto;
  background-repeat: no-repeat, no-repeat;
  background-position: center, bottom center;
}


/* ── Legal Pages ─────────────────────────────────────────────── */
.content-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--orange);
}

.policy-section h3 {
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.policy-section h4 {
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.policy-section ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.policy-section table {
  margin: 1rem 0;
  font-size: 0.9rem;
}

.policy-section .table th {
  background: var(--light-bg);
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--border);
}

.policy-section .table td {
  border: 1px solid var(--border);
  padding: 0.75rem;
}

.cookie-type {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.contact-info {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
}

/* ============================================================
   Vertical Timeline  (.vtl-section / .tl-*)
   Dark navy section that scrolls through milestones.
   ============================================================ */

/* Floating year-dot nav (shown only when vtl-section is in view) */
#vtl-year-nav {
  position: fixed; right: 20px; top: 50%;
  transform: translateY(-50%);
  display: none; flex-direction: column; gap: 8px;
  z-index: 200;
}
#vtl-year-nav.vtl-nav-visible { display: flex; }

.yn-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  cursor: pointer;
  transition: background .25s, transform .25s;
  position: relative;
}
.yn-dot.active { background: var(--orange); transform: scale(1.6); }
.yn-dot::before {
  content: attr(data-year);
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Manrope', sans-serif;
  font-size: .65rem; font-weight: 700;
  color: rgba(255,255,255,.4);
  white-space: nowrap; opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.yn-dot.active::before,
.yn-dot:hover::before { opacity: 1; color: var(--orange); }

/* Section */
.vtl-section {
  background: var(--navy);
  padding: 60px 0 72px;
  position: relative;
  overflow: hidden;
}
.vtl-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/backgrounds/bg-blueprint-grid.svg');
  background-repeat: repeat;
  background-size: 300px;
  opacity: 0.04;
  pointer-events: none;
}
.vtl-section .container { max-width: 860px; }

/* Header */
.tl-header { text-align: center; margin-bottom: 48px; }
.tl-header h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white); line-height: 1.2;
  margin-bottom: 8px;
}
.tl-header h2 em { font-style: normal; color: var(--orange); }
.tl-header p { font-size: .9rem; color: rgba(255,255,255,.5); }

/* Track & rail */
.tl-track { position: relative; }
.tl-rail {
  position: absolute;
  left: 75px; top: 0; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.07);
}
.tl-fill {
  position: absolute; left: 0; top: 0;
  width: 100%; height: 0%;
  background: linear-gradient(to bottom, var(--orange), var(--orange-dark));
  transition: height .1s linear;
}

/* Milestone row */
.tl-item {
  display: grid;
  grid-template-columns: 52px 18px 1fr;
  column-gap: 14px;
  align-items: start;
  margin-bottom: 24px;
}
.tl-item:last-child { margin-bottom: 0; }

/* Year cell */
.tl-year {
  padding-top: 3px;
  text-align: right;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 1rem;
  color: rgba(255,255,255,.2);
  line-height: 1; white-space: nowrap;
  transition: color .4s;
}
.tl-item.visible .tl-year { color: var(--orange); }

/* Dot cell */
.tl-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  position: relative; z-index: 2;
  transition: border-color .35s, background .35s, box-shadow .35s;
  justify-self: center;
}
.tl-dot i { font-size: .45rem; color: rgba(255,255,255,.3); transition: color .35s; }
.tl-item.visible .tl-dot {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(246,137,32,.18);
}
.tl-item.visible .tl-dot i { color: var(--white); }

/* Card cell */
.tl-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 14px 18px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateX(24px);
  transition: opacity .5s cubic-bezier(.16,1,.3,1),
              transform .5s cubic-bezier(.16,1,.3,1),
              border-color .35s, box-shadow .35s;
}
.tl-item.visible .tl-card {
  opacity: 1; transform: translateX(0);
  border-color: rgba(246,137,32,.18);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.tl-tag {
  font-size: .65rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 4px; display: block;
}
.tl-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 1rem;
  color: var(--white); margin-bottom: 6px; line-height: 1.3;
}
.tl-card p {
  font-size: .85rem; color: rgba(255,255,255,.5);
  line-height: 1.6; margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tl-card p strong { color: rgba(255,255,255,.8); font-weight: 600; }
.tl-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.tl-chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(246,137,32,.09);
  color: var(--orange);
  border: 1px solid rgba(246,137,32,.18);
  font-size: .7rem; font-weight: 600;
  padding: 3px 9px; border-radius: 50px;
}
.tl-chip i { font-size: .58rem; }
.tl-chip--solid { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ============================================================
   Horizontal Timeline  (.htl-section / .htl-*)
   Cream section with snap-scroll card strip.
   ============================================================ */
.htl-section {
  padding: 80px 0 100px;
  position: relative;
  background: var(--cream, #F5F3EE);
}
.htl-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/backgrounds/bg-floor-plan.svg');
  background-repeat: repeat;
  background-size: 340px;
  background-position: center top;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}
.htl-section > * { position: relative; z-index: 1; }
.htl-section { --card-w: 520px; --card-h: 340px; }
.htl-section .container { max-width: 1100px; }

/* Header */
.htl-header { text-align: center; margin-bottom: 56px; }
.htl-header h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--navy); line-height: 1.2; margin-bottom: 12px;
}
.htl-header h2 span { color: var(--orange); }
.htl-header p { font-size: 1rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* Year rail */
.htl-rail-wrap {
  max-width: 800px; margin: 0 auto 48px;
  padding: 0 24px; position: relative;
}
.htl-rail-line {
  position: absolute; top: 14px;
  left: calc(24px + 14px); right: calc(24px + 14px);
  height: 2px; background: var(--border); border-radius: 2px;
}
.htl-rail-fill {
  position: absolute; left: 0; top: 0;
  height: 100%; width: 0%;
  background: linear-gradient(to right, var(--orange), var(--orange-dark));
  border-radius: 2px;
  transition: width .4s cubic-bezier(.4,0,.2,1);
}
.htl-rail-dots {
  display: flex; justify-content: space-between;
  position: relative; z-index: 2;
}
.htl-rail-dot {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; cursor: pointer;
  background: none; border: none; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.htl-rail-dot__circle {
  width: 28px; height: 28px; border-radius: 50%;
  background: #EDE9E1; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s, box-shadow .3s, transform .3s;
}
.htl-rail-dot__circle i { font-size: .55rem; color: var(--text-muted); transition: color .3s; }
.htl-rail-dot.active .htl-rail-dot__circle {
  background: var(--orange); border-color: var(--orange);
  box-shadow: 0 0 0 5px rgba(246,137,32,.18); transform: scale(1.15);
}
.htl-rail-dot.active .htl-rail-dot__circle i { color: var(--white); }
.htl-rail-dot.visited .htl-rail-dot__circle { background: var(--orange-dark); border-color: var(--orange-dark); }
.htl-rail-dot.visited .htl-rail-dot__circle i { color: var(--white); }
.htl-rail-dot__year {
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: .8rem;
  color: var(--text-muted); white-space: nowrap; transition: color .3s;
}
.htl-rail-dot.active .htl-rail-dot__year  { color: var(--orange); }
.htl-rail-dot.visited .htl-rail-dot__year { color: var(--navy); }

/* Strip wrapper */
.htl-strip-wrap { position: relative; }
.htl-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 20; width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--navy); font-size: .9rem;
  transition: background .25s, color .25s, box-shadow .25s, opacity .25s;
}
.htl-arrow:hover { background: var(--orange); border-color: var(--orange); color: var(--white); box-shadow: 0 6px 24px rgba(246,137,32,.35); }
.htl-arrow:disabled { opacity: .3; pointer-events: none; }
.htl-arrow--prev { left: 12px; }
.htl-arrow--next { right: 12px; }

/* Scrollable strip */
.htl-strip {
  display: flex; overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  gap: 24px; padding: 16px 0 28px; cursor: grab;
}
.htl-strip:active { cursor: grabbing; }
.htl-strip::-webkit-scrollbar { display: none; }
.htl-strip::before,
.htl-strip::after {
  content: ''; display: block;
  flex: 0 0 max(24px, calc(50vw - calc(var(--card-w) / 2)));
}

/* Slide */
.htl-slide {
  flex: 0 0 var(--card-w);
  scroll-snap-align: center;
  transition: opacity .35s, transform .35s;
  opacity: .55; transform: scale(.97);
}
.htl-slide.active { opacity: 1; transform: scale(1); }

/* Card */
.htl-card {
  display: flex; height: var(--card-h);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.htl-card__left {
  width: 210px; flex-shrink: 0;
  background: var(--navy);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 28px 24px;
}
.htl-card__left::after {
  content: ''; position: absolute; inset: 0;
  background-image: url('../images/backgrounds/bg-arch-elevation.svg');
  background-repeat: no-repeat;
  background-size: cover; background-position: center bottom;
  opacity: 0.06; pointer-events: none;
}
.htl-card__ghost {
  position: absolute; top: -24px; left: -12px;
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 5.8rem; line-height: 1;
  color: rgba(255,255,255,.05);
  pointer-events: none; user-select: none; letter-spacing: -.02em;
}
.htl-card__icon {
  position: relative; z-index: 2;
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(246,137,32,.14); border: 1px solid rgba(246,137,32,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.1rem; margin-bottom: 14px;
}
.htl-card__era {
  position: relative; z-index: 2;
  font-family: 'Inter', sans-serif; font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 4px;
}
.htl-card__year {
  position: relative; z-index: 2;
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: 2rem; color: var(--orange); line-height: 1;
}
.htl-card__right {
  flex: 1; background: var(--white);
  padding: 32px 32px 28px;
  display: flex; flex-direction: column;
  justify-content: space-between; overflow: hidden;
}
.htl-card__tag {
  display: inline-block;
  font-family: 'Inter', sans-serif; font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); background: var(--orange-light, #FFF3E0);
  padding: 4px 12px; border-radius: 50px;
  margin-bottom: 12px; align-self: flex-start;
}
.htl-card__right h3 {
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.2rem;
  color: var(--navy); margin-bottom: 12px; line-height: 1.3;
}
.htl-card__right p {
  font-size: .92rem; color: var(--text-muted); line-height: 1.7;
  flex: 1; overflow: hidden;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
}
.htl-card__right p strong { color: var(--text); font-weight: 600; }
.htl-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.htl-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--cream, #F5F3EE); color: var(--navy);
  border: 1px solid var(--border);
  font-size: .72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 50px;
}
.htl-chip i { font-size: .6rem; color: var(--orange); }
.htl-chip--orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.htl-chip--orange i { color: var(--white); }

/* Bottom nav */
.htl-bottom-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 8px; margin-bottom: 60px;
}
.htl-bottom-dots { display: flex; gap: 8px; }
.htl-bottom-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  border: none; padding: 0;
  transition: background .3s, transform .3s, width .3s;
}
.htl-bottom-dot.active { background: var(--orange); width: 22px; border-radius: 4px; }
.htl-counter {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: .82rem; color: var(--text-muted); min-width: 40px;
}
.htl-counter strong { color: var(--navy); font-size: 1rem; }

/* Hint bar */
.htl-hint {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px;
  margin-top: 4px; margin-bottom: 20px;
}
.htl-hint__item {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; padding: 6px 14px;
  font-size: .78rem; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
.htl-hint__item i { font-size: .72rem; color: var(--orange); }

/* ============================================================
   Project Gallery
   ============================================================ */
.project-gallery-hero {
  background-image:
    linear-gradient(rgba(27,43,59,.65), rgba(27,43,59,.65)),
    url('../images/backgrounds/bg-arch-elevation.svg'),
    linear-gradient(135deg, #1B2B3B 0%, #243447 100%);
  background-size: 100% 100%, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 12px;
  gap: 14px;
}

.pg-tile {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  background: #0f1d2a;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
  grid-column: span 4;
  grid-row: span 20;
}

.pg-tile--landscape { grid-column: span 6; grid-row: span 22; }
.pg-tile--portrait  { grid-column: span 3; grid-row: span 30; }
.pg-tile--square    { grid-column: span 4; grid-row: span 20; }

.pg-tile--feature-wide {
  grid-column: span 8;
  grid-row: span 24;
}

.pg-tile--feature-panorama {
  grid-column: span 12;
  grid-row: span 26;
}

.pg-tile--feature-tall {
  grid-column: span 4;
  grid-row: span 34;
}

.pg-media {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.pg-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pg-preview {
  transform: scale(1.045);
  filter: saturate(.9) contrast(.96) brightness(.95);
}

.pg-hd {
  opacity: 0;
  transition: opacity .35s ease;
}

.pg-hd.is-ready {
  opacity: 1;
}

.pg-tile:hover {
  transform: translateY(-4px) scale(1.006);
  box-shadow: var(--shadow-md);
  filter: saturate(1.05);
}

.pg-tile-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(12, 23, 32, .84), rgba(12, 23, 32, .06));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .02em;
  padding: 24px 14px 12px;
  text-align: left;
}

.pg-tile-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.pg-mid-cta {
  margin: 20px 0 12px;
}

.project-gallery-modal .modal-content {
  border: 0;
  border-radius: 16px;
  background: #0e1a25;
}
.project-gallery-modal .modal-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.project-gallery-modal .modal-body {
  position: relative;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

#projectGalleryModalImage {
  width: 100%;
  max-height: min(78vh, 900px);
  object-fit: contain;
  background: #000;
}

.pg-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}

.pg-modal-nav:hover {
  background: rgba(246,137,32,.92);
}

.pg-modal-prev {
  left: 12px;
}

.pg-modal-next {
  right: 12px;
}

/* ── Project Gallery Carousel ───────────────────────────────── */
.pg-carousel-swiper {
  padding-bottom: 48px !important;
}
.pg-carousel-swiper .swiper-wrapper { align-items: stretch; }

.pg-cs-slide {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--border);
  display: block;
}
.pg-cs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.pg-cs-slide:hover .pg-cs-img { transform: scale(1.06); }

.pg-cs-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,26,37,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  transition: background .3s, opacity .3s;
}
.pg-cs-slide:hover .pg-cs-overlay {
  background: rgba(13,26,37,.42);
  opacity: 1;
}

.pg-carousel-swiper .swiper-button-prev,
.pg-carousel-swiper .swiper-button-next {
  color: var(--orange);
  background: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  top: calc(50% - 24px);
}
.pg-carousel-swiper .swiper-button-prev::after,
.pg-carousel-swiper .swiper-button-next::after { font-size: .9rem; font-weight: 900; }
.pg-carousel-swiper .swiper-pagination-bullet-active { background: var(--orange); }

/* Carousel Modal */
.pgc-modal .modal-content {
  background: #0e1a25;
  border: 0;
  border-radius: 16px;
}
.pgc-modal .modal-header,
.pgc-modal .modal-footer {
  border: 0;
  padding: 18px 24px;
}
.pgc-modal .modal-footer { justify-content: center; gap: 12px; flex-wrap: wrap; }
.pgc-modal h5 { color: #fff; font-size: 1rem; font-weight: 600; margin: 0 0 2px; }
.pgc-modal-counter { color: rgba(255,255,255,.5); font-size: .78rem; }
.pgc-modal .modal-body { position: relative; padding: 0; background: #000; }
#pgcModalImage {
  width: 100%;
  max-height: min(76vh, 860px);
  object-fit: contain;
  background: #000;
  display: block;
}
.pgc-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(246,137,32,.82);
  color: #fff;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.pgc-modal-nav:hover { background: var(--orange); }
.pgc-nav-prev { left: 12px; }
.pgc-nav-next { right: 12px; }
.pgc-footer-outline {
  border-color: rgba(255,255,255,.35) !important;
  color: #fff !important;
}

/* ── Coverflow Lightbox ─────────────────────────────────────── */
.ssic-cf-lb {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(10, 16, 26, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.ssic-cf-lb.is-open { opacity: 1; visibility: visible; }
body.ssic-cf-open { overflow: hidden; }

.ssic-cf-close {
  position: absolute; top: 18px; right: 20px; z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.12); color: #fff;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.ssic-cf-close:hover { background: var(--orange); }

.ssic-cf-stage {
  width: 100%; flex: 1 1 auto;
  display: flex; align-items: center; overflow: hidden;
}

.ssic-cf-swiper {
  width: 100%; height: clamp(340px, 70vh, 640px);
}

/* Center wrapper so slides of different heights stay vertically aligned */
.ssic-cf-swiper .swiper-wrapper {
  align-items: center;
}

.ssic-cf-swiper .swiper-slide {
  width: clamp(200px, 32vw, 400px);
  height: clamp(140px, 34vh, 320px); /* far slides — small */
  border-radius: 14px;
  overflow: hidden;
  will-change: transform;
  transition: height .4s ease;
}

.ssic-cf-swiper .swiper-slide-prev,
.ssic-cf-swiper .swiper-slide-next {
  height: clamp(200px, 50vh, 460px); /* adjacent — medium */
}

.ssic-cf-swiper .swiper-slide-active {
  width: clamp(260px, 42vw, 520px);  /* slightly wider too */
  height: clamp(300px, 66vh, 610px); /* center — tallest */
}

.ssic-cf-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: 14px;
  pointer-events: none; user-select: none;
}

/* Swiper shadow tone-down on dark bg */
.ssic-cf-swiper .swiper-slide-shadow-left,
.ssic-cf-swiper .swiper-slide-shadow-right {
  background-image: linear-gradient(to left, rgba(0,0,0,.45), rgba(0,0,0,0));
}

.ssic-cf-footer {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 22px 0 28px;
}

.ssic-cf-nav-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); color: #fff;
  font-size: .95rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.ssic-cf-nav-btn:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.ssic-cf-info { text-align: center; min-width: 180px; }
.ssic-cf-caption {
  display: block; font-size: .9rem; font-weight: 600;
  color: rgba(255,255,255,.9);
}
.ssic-cf-counter {
  display: block; font-size: .75rem;
  color: rgba(255,255,255,.45); margin-top: 3px;
}

@media (max-width: 576px) {
  .ssic-cf-swiper { height: clamp(280px, 60vh, 480px); }
  .ssic-cf-swiper .swiper-slide        { width: 70vw; height: clamp(100px, 26vh, 220px); }
  .ssic-cf-swiper .swiper-slide-prev,
  .ssic-cf-swiper .swiper-slide-next   { height: clamp(160px, 38vh, 300px); }
  .ssic-cf-swiper .swiper-slide-active { width: 82vw; height: clamp(220px, 52vh, 420px); }
  .ssic-cf-footer { gap: 16px; padding: 16px 0 20px; }
  .ssic-cf-info { min-width: 120px; }
}
