/* ═══════════════════════════════════════════
   Modular Kitchen Page — Overrides
   (re-uses .mw-* styles from service.css)
   ═══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   HERO — Kitchen background + heavier left overlay
══════════════════════════════════════════ */
.mk-hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 78vh;
  min-height: 480px;
  overflow: hidden;
}

.mk-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../Images/modular_kitchen.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.mk-hero:hover .mk-hero-bg { transform: scale(1); }

/* Gradient overlay — darker on left, fades right */
.mk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 15, 30, 0.78) 0%,
    rgba(8, 15, 30, 0.55) 40%,
    rgba(8, 15, 30, 0.15) 80%
  );
  display: flex;
  align-items: center;
  padding: 0 6%;
}

.mk-hero-content {
  max-width: 600px;
}

.mk-hero-title {
  font-size: clamp(26px, 3.6vw, 46px);
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1.2;
  margin-bottom: 16px;
}

.mk-hero-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 400;
  color: rgba(255,255,255,.9);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 580px;
}

/* Button reuses .mw-hero-btn */

/* Breadcrumb reuses .mw-breadcrumb */

@media (max-width: 767px) {
  .mk-hero-title { font-size: clamp(22px, 6vw, 32px); }
  .mk-hero-content { max-width: 100%; }
}

/* ══════════════════════════════════════════
   TYPES OF MODULAR KITCHEN
══════════════════════════════════════════ */
.mk-types-section {
  padding: 70px 0 80px;
  background: #fff;
}

.mk-types-heading {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #111;
  margin: 6px 0 14px;
}

.mk-types-sub {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 860px;
}

/* Card */
.mk-type-card {
  text-align: center;
  transition: transform .3s;
}
.mk-type-card:hover { transform: translateY(-6px); }

.mk-type-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #eee;
  margin-bottom: 20px;
}
.mk-type-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.mk-type-card:hover .mk-type-img img { transform: scale(1.06); }

.mk-type-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

/* ══════════════════════════════════════════
   WHY CHOOSE INTERLAY — DARK (Kitchen)
══════════════════════════════════════════ */
.mk-why-dark {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-image: url('../Images/modular_kitchen.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.mk-why-dark-overlay {
  background: rgba(10, 15, 25, 0.88);
  padding: 70px 20px;
}

.mk-why-sub-text {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.75;
  margin: 12px auto 0;
  max-width: 860px;
}

/* ══════════════════════════════════════════
   WHY INTERLAY INTERIORS — WHITE (Kitchen)
══════════════════════════════════════════ */
.mk-why-white {
  padding: 70px 0 80px;
  background: #fff;
}

.mk-why-white-heading {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin: 6px 0 10px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.mk-ww-text {
  font-size: 13.5px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Slider */
.mk-slider {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.mk-slider .carousel-item img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* Nav arrows */
.mk-slider-arrow {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.85) !important;
  border: none !important;
  border-radius: 50% !important;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  transition: background .2s, color .2s;
  color: #111;
  font-size: 18px;
}
.mk-slider-arrow:hover {
  background: var(--color-gold) !important;
  color: #fff;
}
.mk-slider-arrow i { font-size: 18px; }
.carousel-control-prev.mk-slider-arrow { left: 16px; }
.carousel-control-next.mk-slider-arrow { right: 16px; }

/* Dots */
.mk-slider-dots {
  bottom: 14px;
  gap: 6px;
}
.mk-slider-dots button {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  border: 1.5px solid #fff !important;
  background: transparent !important;
  opacity: .8;
}
.mk-slider-dots button.active {
  background: var(--color-gold) !important;
  border-color: var(--color-gold) !important;
  opacity: 1;
}

@media (max-width: 991px) {
  .mk-slider .carousel-item img { height: 360px; }
}

/* ══════════════════════════════════════════
   APART FROM MODULAR KITCHEN
══════════════════════════════════════════ */
.mk-apart-section {
  padding: 70px 0 80px;
  background: #fff;
}

.mk-apart-heading {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin: 6px 0 8px;
}

.mk-apart-sub {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.mk-apart-cta-heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 16px;
}

.mk-apart-cta-text {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 380px;
}

.mk-apart-btn {
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 14px 42px;
  border-radius: 2px;
  border: 2px solid #111;
  transition: background .2s, color .2s;
  text-decoration: none;
  display: inline-block;
}
.mk-apart-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}

/* 2x3 image grid */
.mk-apart-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mk-apart-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eee;
}
.mk-apart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.mk-apart-thumb:hover img { transform: scale(1.06); }

/* ══════════════════════════════════════════
   KITCHEN CHRONICLES CTA BANNER
══════════════════════════════════════════ */
.mk-chronicles-banner {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-image: url('../Images/modular_kitchen.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.mk-chronicles-overlay {
  background: rgba(10, 15, 25, 0.75);
  padding: 70px 20px;
}

.mk-chronicles-heading {
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 10px 0 18px;
}

.mk-chronicles-sub {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  margin: 0 auto 28px;
  max-width: 720px;
}

.mk-chronicles-btn {
  background: var(--color-gold);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 13px 32px;
  border-radius: 4px;
  border: 2px solid var(--color-gold);
  transition: background .2s, color .2s;
  text-decoration: none;
  display: inline-block;
}
.mk-chronicles-btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* ══════════════════════════════════════════
   PRICE SECTION
══════════════════════════════════════════ */
.mk-price-section {
  padding: 60px 0 20px;
  background: #fff;
}

.mk-price-heading {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: #111;
  margin-bottom: 18px;
}

.mk-price-text {
  font-size: 14px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 14px;
}

@media (max-width: 575px) {
  .mk-apart-grid { grid-template-columns: repeat(2, 1fr); }
}
