/* ══════════════════════════════════════════
   NORTHBRIDGE RENOVATIONS — GLOBAL STYLESHEET
   ══════════════════════════════════════════ */

/* ── RESET ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #1C1C1C;
  background: #ffffff;
}

/* ── NAVBAR ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 80px;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 150px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #1C1C1C;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #1E3A8A;
  border-bottom: 2px solid #1E3A8A;
  padding-bottom: 2px;
}

.nav-links a.active {
  color: #1E3A8A;
  border-bottom: 2px solid #1E3A8A;
  padding-bottom: 2px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: #1E3A8A;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #162d6e;
}

.btn-outline {
  color: #1C1C1C;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #1C1C1C;
  padding-bottom: 2px;
}

.btn-outline:hover {
  color: #1E3A8A;
  border-color: #1E3A8A;
}

.btn-submit {
  background: #1E3A8A;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.btn-submit:hover {
  background: #162d6e;
}

.btn-white {
  background: white;
  color: #1E3A8A;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.2s;
  margin-top: 8px;
}

.btn-white:hover {
  background: #f0f4ff;
}

/* ── SHARED BADGE ── */
.section-badge {
  display: inline-block;
  background: #f0f4ff;
  border: 1px solid #c7d7f9;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #1E3A8A;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── SHARED PAGE HERO (inner pages) ── */
.page-hero {
  background: #1C1C1C;
  color: white;
  padding: 100px 48px;
  text-align: center;
}

.page-hero-content {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.page-hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: white;
}

.page-hero h1 strong {
  color: #6b9aff;
}

.page-hero p {
  font-size: 17px;
  color: #aaa;
  line-height: 1.7;
  max-width: 580px;
}

/* ── SHARED CTA BANNER ── */
.cta-banner {
  background: #1E3A8A;
  padding: 80px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-banner h2 {
  font-size: 42px;
  font-weight: 800;
  color: white;
}

.cta-banner p {
  font-size: 17px;
  color: #c7d7f9;
  max-width: 500px;
  line-height: 1.6;
}

/* ── SHARED STEP TAG & LIST ── */
.step-tag {
  display: inline-block;
  background: #f0f4ff;
  border: 1px solid #c7d7f9;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #1E3A8A;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
  margin-bottom: 8px;
}

.step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-list li {
  font-size: 15px;
  color: #444;
  font-weight: 500;
}

/* ── SHARED FORM ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #1C1C1C;
  outline: none;
  transition: border-color 0.2s;
  font-family: Arial, sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1E3A8A;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.form-sub {
  font-size: 14px;
  color: #777;
  margin-top: -8px;
}

/* ══════════════════════════════════════════
   HOME PAGE
   ══════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 48px;
  gap: 60px;
  min-height: calc(100vh - 80px);
  background: #ffffff;
}

.hero-left {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f3;
  border: 1px solid #e0e0e0;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  width: fit-content;
}

.hero-left h1 {
  font-size: 76px;
  line-height: 1.1;
  color: #1C1C1C;
  font-weight: 700;
}

.hero-left h1 strong {
  color: #1E3A8A;
  font-weight: 900;
}

.hero-left p {
  font-size: 23px;
  line-height: 1.7;
  color: #555;
  max-width: 560px;
}

.hero-link {
  color: #1E3A8A;
  font-weight: 700;
  text-decoration: underline;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-right {
  flex: 1.4;
  position: relative;
  max-width: 700px;
}

.hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

.hero-badge-float {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: white;
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-num {
  font-size: 28px;
  font-weight: 800;
  color: #1E3A8A;
  line-height: 1;
}

.badge-text {
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

/* ── TRUST BADGES ── */
.badges {
  background: #f5f5f3;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 40px 48px;
  text-align: center;
}

.badges-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 24px;
}

.badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.badge-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

.badge-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ── SERVICES GRID (home) ── */
.services {
  padding: 100px 48px;
  background: #ffffff;
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #1C1C1C;
}

.services-header h2 strong {
  color: #1E3A8A;
  font-weight: 900;
}

.services-header p {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

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

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1C;
}

.service-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.service-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.service-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #1E3A8A;
  text-decoration: none;
  border-bottom: 2px solid #1E3A8A;
  padding-bottom: 2px;
  width: fit-content;
  transition: opacity 0.2s;
}

.service-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-link:hover {
  opacity: 0.6;
}

.service-ctas .btn-primary {
  position: relative;
  z-index: 1;
}

/* ── WHY CHOOSE US (home) ── */
.why {
  background: #1C1C1C;
  padding: 100px 48px;
  color: white;
}

.why-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-header h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: white;
}

.why-header h2 strong {
  color: #6b9aff;
  font-weight: 900;
}

.why-header p {
  font-size: 16px;
  color: #aaa;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.why-card {
  background: #262626;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.why-card:hover {
  border-color: #1E3A8A;
  transform: translateY(-4px);
}

.why-icon {
  font-size: 32px;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: white;
}

.why-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* ── QUOTE FORM (home) ── */
.quote {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 100px 48px;
  background: #f0f4ff;
}

.quote-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 480px;
}

.quote-left h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #1C1C1C;
}

.quote-left h2 strong {
  color: #1E3A8A;
  font-weight: 900;
}

.quote-perks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.perk-icon {
  font-size: 24px;
  flex-shrink: 0;
  background: white;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.perk strong {
  font-size: 15px;
  font-weight: 700;
  color: #1C1C1C;
  display: block;
  margin-bottom: 4px;
}

.perk p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.quote-right {
  flex: 1;
}

.quote-form-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-form-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1C1C1C;
}

/* ── FOOTER ── */
.footer {
  background: #1C1C1C;
  color: white;
  padding: 80px 48px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #333;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 70px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 14px;
  font-style: italic;
  color: #aaa;
}

.footer-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
  background: #262626;
  border: 1px solid #333;
  padding: 6px 14px;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
  border-color: #1E3A8A;
  color: white;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-contact li {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

.footer-contact a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: white;
}

.footer-cta {
  margin-top: 24px;
  display: inline-block;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid #2a2a2a;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: white;
}

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 48px;
  max-width: 1300px;
  margin: 0 auto;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

.story-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #1E3A8A;
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(30,58,138,0.3);
}

.story-badge .badge-num {
  font-size: 36px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.story-badge .badge-text {
  font-size: 13px;
  color: #c7d7f9;
  margin-top: 4px;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1C1C1C;
  line-height: 1.2;
}

.story-content h2 strong {
  color: #1E3A8A;
}

.story-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.story-stats {
  display: flex;
  gap: 32px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.story-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.story-stat-num {
  font-size: 32px;
  font-weight: 900;
  color: #1E3A8A;
  line-height: 1;
}

.story-stat-label {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}

.values {
  background: #1C1C1C;
  padding: 100px 48px;
}

.values-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.values-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: white;
}

.values-header h2 strong {
  color: #6b9aff;
}

.values-header p {
  font-size: 16px;
  color: #aaa;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.value-card {
  background: #262626;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.value-card:hover {
  border-color: #1E3A8A;
  transform: translateY(-4px);
}

.value-icon {
  font-size: 36px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.value-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

.team {
  padding: 100px 48px;
  background: #ffffff;
}

.team-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.team-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1C1C1C;
}

.team-header h2 strong {
  color: #1E3A8A;
}

.team-header p {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.team-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

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

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

.team-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1C;
}

.team-role {
  font-size: 13px;
  font-weight: 600;
  color: #1E3A8A;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-top: 4px;
}

.awards {
  background: #f0f4ff;
  padding: 100px 48px;
}

.awards-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.awards-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1C1C1C;
}

.awards-header h2 strong {
  color: #1E3A8A;
}

.awards-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.award-card {
  background: white;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.award-card:hover {
  transform: translateY(-4px);
}

.award-icon {
  font-size: 36px;
}

.award-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1C1C1C;
}

.award-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════ */

.services-list {
  padding: 100px 48px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse > * {
  direction: ltr;
}

.service-row-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.service-row-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-row-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #1C1C1C;
  line-height: 1.2;
}

.service-row-content h2 strong {
  color: #1E3A8A;
}

.service-row-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   PORTFOLIO PAGE
   ══════════════════════════════════════════ */

.portfolio-filter {
  padding: 48px 48px 0;
  display: flex;
  justify-content: center;
}

.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid #e0e0e0;
  background: white;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: #1E3A8A;
  color: #1E3A8A;
}

.filter-btn.active {
  background: #1E3A8A;
  border-color: #1E3A8A;
  color: white;
}

.portfolio-section {
  padding: 48px 48px 100px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.portfolio-card.large {
  grid-column: span 2;
}

.portfolio-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.portfolio-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.portfolio-card.large .portfolio-img-wrap img {
  height: 380px;
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 138, 0.88);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.overlay-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c7d7f9;
  margin-bottom: 8px;
}

.portfolio-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.portfolio-overlay p {
  font-size: 14px;
  color: #c7d7f9;
  line-height: 1.5;
}

.portfolio-info {
  padding: 16px 4px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.portfolio-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1E3A8A;
}

.portfolio-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1C1C1C;
}

.portfolio-info p {
  font-size: 13px;
  color: #888;
}

.stats-strip {
  background: #1E3A8A;
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-num {
  font-size: 48px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #c7d7f9;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
}

.testimonials {
  padding: 100px 48px;
  background: #f0f4ff;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.testimonials-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1C1C1C;
  line-height: 1.2;
}

.testimonials-header h2 strong {
  color: #1E3A8A;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1E3A8A;
  color: white;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1C1C1C;
}

.testimonial-author span {
  font-size: 13px;
  color: #888;
}

/* ══════════════════════════════════════════
   PROCESS PAGE
   ══════════════════════════════════════════ */

.steps {
  padding: 100px 48px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.step-card {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.step-card.reverse {
  grid-template-columns: 1fr 1fr 80px;
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  color: #1E3A8A;
  line-height: 1;
}

.step-line {
  width: 2px;
  height: 200px;
  background: linear-gradient(to bottom, #1E3A8A, transparent);
}

.step-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-right h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1C1C1C;
  line-height: 1.2;
}

.step-right h2 strong {
  color: #1E3A8A;
}

.step-right p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.step-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.process-why {
  background: #f0f4ff;
  padding: 100px 48px;
}

.process-why-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.process-why-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1C1C1C;
}

.process-why-header h2 strong {
  color: #1E3A8A;
}

.process-why-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.process-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.process-why-card {
  background: white;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.process-why-card:hover {
  transform: translateY(-4px);
}

.why-num {
  font-size: 36px;
  font-weight: 900;
  color: #1E3A8A;
  opacity: 0.3;
  line-height: 1;
}

.process-why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1C;
}

.process-why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 48px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: #1C1C1C;
}

.info-block h2 strong {
  color: #1E3A8A;
  font-weight: 900;
}

.info-block p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  background: #f0f4ff;
  border: 1px solid #c7d7f9;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #1E3A8A;
  flex-shrink: 0;
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-detail-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #1C1C1C;
}

.contact-detail-text a {
  font-size: 15px;
  color: #1E3A8A;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-detail-text a:hover {
  opacity: 0.7;
}

.contact-detail-text span {
  font-size: 14px;
  color: #888;
}

.contact-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #f5f5f3;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px 28px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.trust-num {
  font-size: 24px;
  font-weight: 800;
  color: #1E3A8A;
  line-height: 1;
}

.trust-label {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
  text-align: center;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: #ddd;
}

.contact-form-wrap {
  position: sticky;
  top: 100px;
}

.form-disclaimer {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  line-height: 1.5;
  margin-top: -8px;
}

.contact-why {
  background: #1C1C1C;
  padding: 100px 48px;
}

.contact-why-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.contact-why-header h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}

.contact-why-header h2 strong {
  color: #6b9aff;
  font-weight: 900;
}

.contact-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.contact-why-card {
  background: #262626;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.contact-why-card:hover {
  border-color: #1E3A8A;
  transform: translateY(-4px);
}

.why-step-num {
  font-size: 36px;
  font-weight: 900;
  color: #1E3A8A;
  line-height: 1;
}

.contact-why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: white;
}

.contact-why-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   3D DESIGN PAGE
   ══════════════════════════════════════════ */

.design-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 48px;
  gap: 60px;
  min-height: calc(100vh - 80px);
  background: #ffffff;
}

.design-hero-content {
  flex: 1;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.design-hero-content h1 {
  font-size: 62px;
  line-height: 1.1;
  color: #1C1C1C;
  font-weight: 700;
}

.design-hero-content h1 strong {
  color: #1E3A8A;
  font-weight: 900;
}

.design-hero-content p {
  font-size: 20px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
}

.hero-note {
  font-size: 13px !important;
  color: #999 !important;
  font-style: italic;
}

.design-hero-visual {
  flex: 1.4;
  position: relative;
  max-width: 700px;
}

.design-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

.design-hero-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: white;
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.included {
  padding: 100px 48px;
  background: #f5f5f3;
}

.included-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.included-header h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #1C1C1C;
}

.included-header h2 strong {
  color: #1E3A8A;
  font-weight: 900;
}

.included-header p {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.included-card {
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.included-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.included-icon {
  width: 56px;
  height: 56px;
  background: #f0f4ff;
  border: 1px solid #c7d7f9;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #1E3A8A;
}

.included-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1C;
}

.included-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.design-how {
  padding: 100px 48px;
  background: white;
}

.design-how-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.design-how-header h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #1C1C1C;
}

.design-how-header h2 strong {
  color: #1E3A8A;
  font-weight: 900;
}

.design-how-header p {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
}

.design-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.design-step {
  flex: 1;
  background: #f0f4ff;
  border: 1px solid #c7d7f9;
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.design-step-num {
  font-size: 42px;
  font-weight: 900;
  color: #1E3A8A;
  line-height: 1;
}

.design-step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 8px;
}

.design-step-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.design-step-arrow {
  flex-shrink: 0;
}

/* 3D Design gallery — scoped to .gallery section */
.gallery {
  padding: 100px 48px;
  background: #1C1C1C;
}

.gallery .gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.gallery .gallery-header h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}

.gallery .gallery-header h2 strong {
  color: #6b9aff;
  font-weight: 900;
}

.gallery .gallery-header p {
  font-size: 16px;
  color: #aaa;
  line-height: 1.7;
}

.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery .gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery .gallery-card.large {
  grid-column: span 2;
}

.gallery .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.gallery .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 28px 20px 20px;
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gallery .gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  display: inline-block;
  background: #1E3A8A;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
}

.gallery .gallery-overlay p {
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.why-3d {
  padding: 100px 48px;
  background: #f5f5f3;
}

.why-3d-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.why-3d-header h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #1C1C1C;
}

.why-3d-header h2 strong {
  color: #1E3A8A;
  font-weight: 900;
}

.why-3d-header p {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
}

.why-3d-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.why-3d-card {
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-3d-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
}

.why-3d-icon {
  width: 52px;
  height: 52px;
  background: #f0f4ff;
  border: 1px solid #c7d7f9;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #1E3A8A;
}

.why-3d-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1C1C1C;
}

.why-3d-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.free-offer {
  padding: 100px 48px;
  background: white;
}

.free-offer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.free-offer-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.free-offer-left h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #1C1C1C;
}

.free-offer-left h2 strong {
  color: #1E3A8A;
  font-weight: 900;
}

.free-offer-left p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.free-offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.free-offer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #1C1C1C;
  font-weight: 500;
}

.free-offer-right {
  position: relative;
}

.free-offer-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.free-offer-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: #1E3A8A;
  color: white;
  border-radius: 12px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(30,58,138,0.35);
}

.offer-badge-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.offer-badge-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.design-testimonial {
  background: #f0f4ff;
  padding: 100px 48px;
}

.design-testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

blockquote {
  font-size: 22px;
  font-weight: 500;
  color: #1C1C1C;
  line-height: 1.7;
  font-style: italic;
}

/* ══════════════════════════════════════════
   SERVICE DETAIL PAGES (kitchen, bathroom, basement, interlock)
   ══════════════════════════════════════════ */

.service-intro-split {
  padding: 80px 48px 100px;
  background: #f0f4ff;
}

.service-intro-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-intro-left h1 {
  font-size: 48px;
  font-weight: 800;
  color: #1C1C1C;
  line-height: 1.15;
  margin: 14px 0 20px;
}

.service-intro-left h1 strong {
  color: #1E3A8A;
}

.service-intro-left .intro-lead {
  font-size: 18px;
  font-weight: 600;
  color: #1E3A8A;
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-intro-left p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

.service-intro-left .intro-cta-text {
  font-size: 16px;
  font-weight: 600;
  color: #1E3A8A;
  text-decoration: none;
  border-bottom: 2px solid #1E3A8A;
  padding-bottom: 2px;
  margin-top: 8px;
  display: inline-block;
}

.service-intro-left .intro-cta-text:hover {
  color: #162d6e;
  border-color: #162d6e;
}

.service-intro-form-card {
  background: white;
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  border: 1px solid #e0e8ff;
  position: sticky;
  top: 100px;
}

.service-intro-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 6px;
}

.service-intro-form-card .form-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.service-hero {
  background: linear-gradient(135deg, #1C1C1C 0%, #2a2a2a 100%);
  padding: 120px 48px 100px;
  color: white;
}

.service-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-hero-left .section-badge {
  background: rgba(107, 154, 255, 0.15);
  color: #6b9aff;
  border: 1px solid rgba(107, 154, 255, 0.3);
}

.service-hero-left h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin: 16px 0 20px;
}

.service-hero-left h1 strong {
  color: #6b9aff;
}

.service-hero-left p {
  font-size: 17px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 32px;
  max-width: 520px;
}

.service-hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.service-hero-ctas .btn-outline-white {
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}

.service-hero-ctas .btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.service-hero-right {
  position: relative;
}

.service-hero-right img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.hero-stats-float {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: white;
  border-radius: 10px;
  padding: 16px 24px;
  display: flex;
  gap: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #1E3A8A;
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 11px;
  color: #666;
  margin-top: 4px;
  white-space: nowrap;
}

.service-overview {
  padding: 100px 48px;
  background: white;
}

.service-overview-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-overview-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-overview-left h2 strong {
  color: #1E3A8A;
}

.service-overview-left p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

.service-features-list {
  list-style: none;
  margin: 28px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.service-features-list li {
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1E3A8A;
  flex-shrink: 0;
}

.service-overview-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.overview-img-main {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 10px;
}

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

.overview-img-row img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.service-process {
  background: #f5f5f3;
  padding: 80px 48px;
}

.service-process-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.service-process-inner h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1C1C1C;
  text-align: center;
  margin-bottom: 12px;
}

.service-process-inner h2 strong {
  color: #1E3A8A;
}

.service-process-inner > p {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 52px;
}

.process-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-step-card {
  background: white;
  border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid #eee;
  text-align: center;
}

.process-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1E3A8A;
  color: white;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process-step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 10px;
}

.process-step-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Service page gallery — scoped to .service-gallery section */
.service-gallery {
  padding: 100px 48px;
  background: white;
}

.service-gallery-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.service-gallery .gallery-header {
  text-align: center;
  margin-bottom: 52px;
}

.service-gallery .gallery-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1C1C1C;
  margin: 12px 0 12px;
}

.service-gallery .gallery-header h2 strong {
  color: #1E3A8A;
}

.service-gallery .gallery-header p {
  font-size: 16px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
}

.service-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-gallery .gallery-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #1C1C1C;
}

.service-gallery .gallery-card.tall {
  grid-row: span 2;
}

.service-gallery .gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s, opacity 0.3s;
}

.service-gallery .gallery-card.tall img {
  height: 100%;
}

.service-gallery .gallery-card:hover img {
  transform: scale(1.05);
  opacity: 0.7;
}

.service-gallery .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  transform: translateY(100%);
  transition: transform 0.3s;
}

.service-gallery .gallery-card:hover .gallery-overlay {
  transform: translateY(0);
}

.service-gallery .gallery-overlay h4 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-gallery .gallery-overlay p {
  color: #ccc;
  font-size: 13px;
}

.service-testimonial {
  background: #1E3A8A;
  padding: 80px 48px;
}

.service-testimonial-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote-icon {
  font-size: 56px;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  margin-bottom: 16px;
}

.service-testimonial blockquote {
  font-size: 22px;
  font-style: italic;
  color: white;
  line-height: 1.6;
  margin-bottom: 28px;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar-lg {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.4);
}

.author-info strong {
  display: block;
  color: white;
  font-size: 16px;
}

.author-info span {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.service-faq {
  padding: 100px 48px;
  background: #f5f5f3;
}

.service-faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 52px;
}

.faq-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1C1C1C;
  margin: 12px 0 12px;
}

.faq-header h2 strong {
  color: #1E3A8A;
}

.faq-item {
  background: white;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 12px;
  border: 1px solid #eee;
}

.faq-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   HAMBURGER BUTTON (hidden on desktop)
   ══════════════════════════════════════════ */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1C1C1C;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 768px)
   ══════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── NAVBAR ── */
  .navbar { padding: 0 20px; position: relative; }
  .nav-toggle { display: flex; }
  .navbar > .btn-primary { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a {
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    border-left: none;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: #f0f4ff;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 16px;
  }

  /* ── HOME HERO ── */
  .hero { flex-direction: column; padding: 48px 20px; gap: 36px; min-height: unset; }
  .hero-left { max-width: 100%; }
  .hero-left h1 { font-size: 40px; }
  .hero-left p { font-size: 17px; }
  .hero-right { max-width: 100%; width: 100%; }
  .hero-img { height: 260px; }
  .hero-badge-float { display: none; }

  /* ── TRUST BADGES ── */
  .badges { padding: 32px 20px; }

  /* ── SERVICES ── */
  .services { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }

  /* ── WHY CHOOSE US ── */
  .why { padding: 60px 20px; }
  .why-header h2 { font-size: 36px; }
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* ── QUOTE FORM ── */
  .quote { flex-direction: column; padding: 60px 20px; gap: 40px; }
  .quote-left { max-width: 100%; }
  .quote-left h2 { font-size: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form-card { padding: 24px 20px; }

  /* ── PAGE HERO ── */
  .page-hero { padding: 60px 20px; }
  .page-hero h1 { font-size: 36px; }

  /* ── CTA BANNER ── */
  .cta-banner { padding: 60px 20px; }
  .cta-banner h2 { font-size: 32px; }

  /* ── FOOTER ── */
  .footer { padding: 60px 20px 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* ── ABOUT PAGE ── */
  .about-story { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .story-badge { display: none; }
  .story-image img { height: 300px; }
  .values { padding: 60px 20px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team { padding: 60px 20px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .awards { padding: 60px 20px; }
  .awards-grid { grid-template-columns: 1fr 1fr; }

  /* ── PORTFOLIO PAGE ── */
  .portfolio-filter { padding: 32px 20px 0; }
  .portfolio-section { padding: 32px 20px 60px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-card.large { grid-column: span 1; }
  .portfolio-card.large .portfolio-img-wrap img { height: 280px; }
  .stats-strip { flex-direction: column; gap: 24px; padding: 48px 20px; }
  .stat-divider { width: 60px; height: 1px; }
  .testimonials { padding: 60px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* ── PROCESS PAGE ── */
  .steps { padding: 60px 20px; gap: 60px; }
  .step-card { grid-template-columns: 1fr; gap: 24px; }
  .step-card.reverse { grid-template-columns: 1fr; direction: ltr; }
  .step-left { flex-direction: row; justify-content: flex-start; }
  .step-line { display: none; }
  .step-image { order: -1; }
  .step-image img { height: 220px; }
  .process-why { padding: 60px 20px; }
  .process-why-grid { grid-template-columns: 1fr 1fr; }

  /* ── CONTACT PAGE ── */
  .contact-split { grid-template-columns: 1fr; gap: 48px; padding: 60px 20px; }
  .contact-form-wrap { position: static; }
  .contact-why { padding: 60px 20px; }
  .contact-why-grid { grid-template-columns: 1fr 1fr; }

  /* ── 3D DESIGN PAGE ── */
  .design-hero { flex-direction: column; padding: 48px 20px; gap: 36px; min-height: unset; }
  .design-hero-content { max-width: 100%; }
  .design-hero-content h1 { font-size: 40px; }
  .design-hero-content p { font-size: 16px; }
  .design-hero-visual { max-width: 100%; width: 100%; }
  .design-hero-img { height: 260px; }
  .design-hero-badge { display: none; }
  .included { padding: 60px 20px; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .design-how { padding: 60px 20px; }
  .design-steps { flex-direction: column; gap: 16px; }
  .design-step-arrow { transform: rotate(90deg); align-self: center; }
  .why-3d { padding: 60px 20px; }
  .why-3d-grid { grid-template-columns: 1fr 1fr; }
  .free-offer { padding: 60px 20px; }
  .free-offer-inner { grid-template-columns: 1fr; gap: 40px; }
  .free-offer-badge { display: none; }
  .design-testimonial { padding: 60px 20px; }
  blockquote { font-size: 18px; }

  /* ── SERVICE DETAIL PAGES ── */
  .service-hero { padding: 60px 20px; }
  .service-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-hero-left h1 { font-size: 38px; }
  .hero-stats-float { display: none; }
  .service-hero-right img { height: 260px; }
  .service-overview { padding: 60px 20px; }
  .service-overview-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-overview-left h2 { font-size: 32px; }
  .service-features-list { grid-template-columns: 1fr; }
  .service-process { padding: 60px 20px; }
  .process-steps-row { grid-template-columns: 1fr; }
  .service-gallery { padding: 60px 20px; }
  .service-gallery .gallery-grid { grid-template-columns: 1fr 1fr; }
  .service-gallery .gallery-card.tall { grid-row: span 1; }
  .service-gallery .gallery-card.tall img { height: 260px; }
  .service-testimonial { padding: 60px 20px; }
  .service-testimonial blockquote { font-size: 18px; }
  .service-faq { padding: 60px 20px; }
  .service-intro-split { padding: 40px 20px 60px; }
  .service-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-intro-form-card { position: static; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 480px)
   ══════════════════════════════════════════ */

@media (max-width: 480px) {

  /* ── NAVBAR ── */
  .logo-img { height: 100px; }

  /* ── HOME HERO ── */
  .hero-left h1 { font-size: 32px; }
  .hero-left p { font-size: 16px; }
  .hero-img { height: 220px; }

  /* ── PAGE HERO ── */
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 15px; }

  /* ── CTA BANNER ── */
  .cta-banner h2 { font-size: 26px; }

  /* ── QUOTE ── */
  .quote-left h2 { font-size: 30px; }

  /* ── ALL 4-COL GRIDS → 1 COL ── */
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .process-why-grid { grid-template-columns: 1fr; }
  .contact-why-grid { grid-template-columns: 1fr; }
  .why-3d-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }

  /* ── PORTFOLIO → 1 COL ── */
  .portfolio-grid { grid-template-columns: 1fr; }
  .filter-tabs { gap: 8px; }
  .filter-btn { font-size: 13px; padding: 8px 14px; }

  /* ── SERVICE GALLERY → 1 COL ── */
  .service-gallery .gallery-grid { grid-template-columns: 1fr; }

  /* ── FOOTER → 1 COL ── */
  .footer-top { grid-template-columns: 1fr; }

  /* ── 3D DESIGN ── */
  .design-hero-content h1 { font-size: 32px; }

  /* ── SERVICE PAGES ── */
  .service-hero-left h1 { font-size: 30px; }
  .service-overview-left h2 { font-size: 28px; }

  /* ── PROCESS ── */
  .step-right h2 { font-size: 28px; }

  /* ── BLOCKQUOTE ── */
  blockquote { font-size: 16px; }
}
