/* ═══════════════════════════════════════════════════════════
   IKON CONSTRUCTIONS — services.css
   Services page specific styles
   ═══════════════════════════════════════════════════════════ */

/* ─── LOGO IMAGE (shared, in case style.css not loaded first) ─── */
.logo-img {
  height: 110PX;
  width: 110PX;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 20px;
}

/* ─── SERVICES HERO ─── */
.srv-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.srv-hero-bg { position: absolute; inset: 0; }
.srv-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.srv-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(6,15,30,0.94) 0%, rgba(10,25,49,0.82) 55%, rgba(6,15,30,0.65) 100%);
}
.srv-hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%);
}

.srv-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 900px;
}
.srv-hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 16px 0 20px;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}
.srv-hero-title em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-italic);
  font-weight: 300;
}
.srv-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.8s ease 0.4s both;
}
.srv-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}
.srv-pill {
  display: inline-block;
  padding: 9px 20px;
  border: 1px solid rgba(201,168,76,0.45);
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
}
.srv-pill:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.srv-hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 1.6s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(10px); opacity: 0.4; }
}

/* ─── SERVICE OVERVIEW CARDS ─── */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ov-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.ov-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.ov-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.ov-card:hover::before { transform: scaleX(1); }
.ov-icon { font-size: 36px; margin-bottom: 14px; }
.ov-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.ov-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.ov-arrow {
  font-size: 18px;
  color: var(--gold);
  transition: transform var(--transition);
  display: inline-block;
}
.ov-card:hover .ov-arrow { transform: translateX(6px); }

/* ─── SERVICE DETAIL SECTIONS ─── */
.srv-detail { padding: 100px 0; }
.srv-detail.alt-bg { background: var(--off-white); }

.srv-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.srv-detail-grid.reverse { direction: rtl; }
.srv-detail-grid.reverse > * { direction: ltr; }

.srv-detail-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.srv-detail-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.srv-img-fallback {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0A1931 0%, #1a3a6e 50%, #0A1931 100%);
  box-shadow: var(--shadow-lg);
}
.srv-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 2;
}
.srv-img-badge.gold-badge { background: var(--gold); color: var(--navy); }
.sib-num {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
}
.gold-badge .sib-num { color: var(--navy); }
.sib-unit {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}
.gold-badge .sib-unit { color: rgba(10,25,49,0.75); }

.srv-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: rgba(10,25,49,0.05);
  line-height: 1;
  margin-bottom: -16px;
}

.srv-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 28px;
}
.srv-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sf-icon {
  color: var(--gold);
  font-size: 12px;
  margin-top: 6px;
  flex-shrink: 0;
}
.srv-feat strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.srv-feat span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.srv-specs {
  display: flex;
  gap: 0;
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.alt-bg .srv-specs { background: var(--white); }
.spec-item {
  flex: 1;
  padding: 18px 20px;
  border-right: 1px solid var(--light-grey);
  text-align: center;
}
.spec-item:last-child { border-right: none; }
.spec-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.spec-val {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.srv-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-outline-navy {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ─── APARTMENT FEATURE CHIPS ─── */
.apt-feature-chips {
  position: absolute;
  bottom: -20px; left: -16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 280px;
  z-index: 2;
}
.apt-feature-chips span {
  display: inline-block;
  padding: 6px 14px;
  background: var(--white);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(10,25,49,0.12);
  border: 1px solid var(--light-grey);
}

/* ─── RENOVATION BEFORE / AFTER ─── */
.renovation-before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ba-panel {
  position: relative;
  overflow: hidden;
}
.ba-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.ba-label {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(0,0,0,0.65);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}
.ba-label.gold-label { background: var(--gold); color: var(--navy); }
.ba-divider {
  width: 40px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.ba-handle {
  font-size: 18px;
  color: var(--gold);
  writing-mode: vertical-rl;
  font-weight: 700;
}

/* ─── PEB ADVANTAGES ─── */
.peb-advantages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.peb-adv {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(10,25,49,0.06);
  transition: var(--transition);
}
.peb-adv:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.peb-adv-icon { font-size: 28px; flex-shrink: 0; }
.peb-adv-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.peb-adv-content span { font-size: 12px; color: var(--text-muted); }

.peb-stats-overlay {
  position: absolute;
  bottom: 24px; right: -16px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.peb-stat-item { text-align: center; }
.peb-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.peb-stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.peb-fallback {
  background: linear-gradient(135deg, #1a3a6e, #0A1931) !important;
}

/* ─── INTERIOR THEMES ─── */
.interior-themes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.theme-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--off-white);
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.theme-card:hover, .theme-card.active {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--white);
}
.theme-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--light-grey);
  transition: var(--transition);
}
.theme-card.active .theme-dot { background: var(--gold); }
.interior-fallback {
  background: linear-gradient(135deg, #2c1654, #0A1931) !important;
}
.interior-style-tags {
  position: absolute;
  bottom: 24px; left: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}
.interior-style-tags span {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(10,25,49,0.8);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(4px);
}

/* ─── LANDSCAPE FEATURES ─── */
.landscape-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.lf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--light-grey);
  transition: var(--transition);
}
.lf-item:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); color: var(--gold); }
.lf-icon { font-size: 28px; }
.landscape-fallback {
  background: linear-gradient(135deg, #1a4a2e, #0A1931) !important;
}

/* ─── PROCESS FLOW ─── */
.process-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 16px;
}
.pf-step { text-align: center; padding: 0 12px; }
.pf-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pf-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  cursor: default;
}
.pf-step:hover .pf-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}
.pf-connector {
  position: absolute;
  top: 50%; left: 50%;
  width: calc(100% + 24px);
  height: 1px;
  background: rgba(201,168,76,0.25);
  z-index: 0;
}
.pf-connector.no-line { display: none; }
.pf-step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pf-step h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pf-step p { font-size: 12px; color: rgba(255,255,255,0.58); line-height: 1.7; }

/* ─── WHY IKON ─── */
.srv-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sw-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.sw-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,25,49,0.03), transparent);
  opacity: 0;
  transition: var(--transition);
}
.sw-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.sw-card:hover::after { opacity: 1; }
.sw-icon { font-size: 44px; margin-bottom: 16px; display: block; }
.sw-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.sw-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 24px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(10,25,49,0.07);
  transition: var(--transition);
  position: relative;
  border-top: 3px solid var(--light-grey);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured-price {
  border-top-color: var(--gold);
  background: var(--navy);
  transform: scale(1.03);
}
.price-card.featured-price:hover { transform: scale(1.03) translateY(-6px); }
.price-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.price-amt {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}
.featured-price .price-amt { color: var(--white); }
.price-amt span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}
.featured-price .price-amt span { color: rgba(255,255,255,0.6); }
.price-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-grey);
}
.featured-price .price-desc {
  color: rgba(255,255,255,0.6);
  border-bottom-color: rgba(255,255,255,0.1);
}
.price-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  font-size: 13px;
  color: var(--text-dark);
  display: flex;
  gap: 8px;
}
.featured-price .price-features li { color: rgba(255,255,255,0.8); }
.price-features li.inactive { color: var(--text-muted); opacity: 0.5; }
.featured-price .price-features li.inactive { color: rgba(255,255,255,0.35); }
.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

/* ─── CTA BANNER ─── */
.srv-cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.srv-cta-bg { position: absolute; inset: 0; }
.srv-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.srv-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,15,30,0.93), rgba(10,25,49,0.86));
}
.srv-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.srv-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.srv-cta-content h2 em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-italic);
  font-weight: 300;
}
.srv-cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.srv-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.breadcrumb a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.bc-sep { color: rgba(255,255,255,0.3); font-size: 13px; }
.breadcrumb span:last-child { font-size: 13px; color: var(--gold); font-weight: 600; }

/* ─── STICKY SERVICE NAV ─── */
.srv-sticky-nav {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  box-shadow: 0 4px 20px rgba(10,25,49,0.08);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  padding: 0;
}
.srv-sticky-nav.visible { transform: translateY(0); }
.srv-sticky-inner {
  display: flex;
  overflow-x: auto;
  gap: 0;
  scrollbar-width: none;
}
.srv-sticky-inner::-webkit-scrollbar { display: none; }
.srv-sticky-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}
.srv-sticky-link:hover { color: var(--navy); border-bottom-color: var(--navy); }
.srv-sticky-link.active { color: var(--navy); border-bottom-color: var(--gold); }
.srv-sticky-link .snav-icon { font-size: 14px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .process-flow { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .pf-connector { display: none; }
  .overview-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .srv-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .srv-detail-grid.reverse { direction: ltr; }
  .srv-detail-image img { height: 360px; }
  .srv-img-fallback { height: 360px; }
  .renovation-before-after { height: 360px; }
  .peb-stats-overlay { right: 0; bottom: 16px; }
  .apt-feature-chips { left: 0; bottom: -16px; }
  .overview-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 24px; }
  .price-card.featured-price { transform: scale(1); }
  .price-card.featured-price:hover { transform: translateY(-6px); }
  .srv-why-grid { grid-template-columns: repeat(2, 1fr); }
  .peb-advantages { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .srv-hero { min-height: 90vh; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .process-flow { grid-template-columns: repeat(2, 1fr); }
  .srv-why-grid { grid-template-columns: 1fr; }
  .landscape-features-grid { grid-template-columns: repeat(4, 1fr); }
  .srv-detail { padding: 60px 0; }
  .srv-specs { flex-wrap: wrap; }
  .spec-item { min-width: 33%; }
}
@media (max-width: 480px) {
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .srv-hero-pills { gap: 8px; }
  .srv-pill { font-size: 10px; padding: 7px 14px; }
  .landscape-features-grid { grid-template-columns: repeat(2, 1fr); }
  .renovation-before-after { height: 260px; }
  .interior-themes { gap: 8px; }
  .process-flow { grid-template-columns: 1fr; }
}