/* ===============================
   JKC DYNAMIC CONTENT STANDARD
   =============================== */

.jkc-dynamic-content {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont;
  line-height: 1.75;
  color: #2c2c2c;
}

/* Headings */
.jkc-dynamic-content h2,
.jkc-dynamic-content h3,
.jkc-dynamic-content h4 {
  margin: 48px 0 18px;
  font-weight: 700;
  color: #7a0000; /* Deep red */
}

.jkc-dynamic-content h2 {
  font-size: 2rem;
  border-left: 6px solid #d4af37;
  padding-left: 14px;
}

.jkc-dynamic-content h3 {
  font-size: 1.45rem;
}

.jkc-dynamic-content h4 {
  font-size: 1.2rem;
}

/* Paragraphs */
.jkc-dynamic-content p {
  margin-bottom: 18px;
  text-align: justify;
  font-size: 1.05rem;
}

/* Images */
.jkc-dynamic-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 24px 0;
  object-fit: cover;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/* When visible */
.jkc-dynamic-content img.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* HR */
.jkc-dynamic-content hr {
  margin: 50px 0;
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
}

/* Lists */
.jkc-dynamic-content ul {
  padding-left: 20px;
  margin: 24px 0;
}

.jkc-dynamic-content li {
  margin-bottom: 10px;
}

/* Highlight boxes (your grey divs) */
.jkc-dynamic-content div[style*="background:#eeeeee"] {
  background: #fff8e1 !important;
  border: 1px solid #d4af37 !important;
  border-left: 6px solid #7a0000 !important;
  padding: 12px 16px !important;
  margin: 14px 0;
  font-weight: 600;
}

/* Tables (future-proof) */
.jkc-dynamic-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.jkc-dynamic-content table th,
.jkc-dynamic-content table td {
  padding: 12px;
  border: 1px solid #ddd;
}

/* Mobile */
@media (max-width: 768px) {
  .jkc-dynamic-content h2 {
    font-size: 1.6rem;
  }
  .jkc-dynamic-content p {
    font-size: 1rem;
  }
}
/* ===============================
   ZIG-ZAG LAYOUT FIX
   =============================== */

.jkc-zigzag {
  margin-top: 30px;
}

.jkc-zigzag .zig-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 70px;
}

/* Reverse rows */
.jkc-zigzag .zig-row.reverse {
  direction: rtl;
}

.jkc-zigzag .zig-row.reverse > * {
  direction: ltr;
}

/* Image container */
.jkc-zigzag .zig-img {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
}

/* IMAGE FIX (THIS IS KEY) */
.jkc-zigzag .zig-img img {
  width: 100%;
  height: 360px;              /* 🔥 CONTROL HEIGHT */
  object-fit: cover;          /* 🔥 PREVENT STRETCH */
  display: block;
  border-radius: 14px;
}

/* Content */
.jkc-zigzag .zig-content {
  font-size: 1.05rem;
}

/* HR spacing */
.jkc-zigzag hr {
  grid-column: 1 / -1;
  margin: 60px 0;
}

/* Mobile */
@media (max-width: 768px) {
  .jkc-zigzag .zig-row {
    grid-template-columns: 1fr;
  }

  .jkc-zigzag .zig-img img {
    height: 240px;
  }
}

/* ===============================
   WHY JKC – TRUST BLOCK
   =============================== */

.jkc-why-block {
  background: linear-gradient(180deg, #f6d36f, #e8bb45);
  padding: 80px 0;
}

.jkc-why-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #2a1c00;
}

.jkc-why-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 12px auto 50px;
  font-size: 1.05rem;
  color: #3d2b00;
}

/* STATS */
.jkc-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 70px;
}

.jkc-stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #7a0000;
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: #2f2200;
}

/* FEATURES */
.jkc-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.jkc-feature {
  background: rgba(255,255,255,0.6);
  border-radius: 14px;
  padding: 28px;
  border-left: 6px solid #7a0000;
}

.jkc-feature h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2a1c00;
}

.jkc-feature p {
  font-size: 0.98rem;
  color: #3b2a00;
}

/* Mobile */
@media (max-width: 768px) {
  .jkc-why-title {
    font-size: 1.9rem;
  }
}
/* ===============================
   JKC CONTACT CTA (IMPROVED)
   =============================== */

.jkc-contact-cta {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f0f0f, #1a1a1a);
  color: #fff;
}

/* CONTACT BUTTONS */
.jkc-contact-box {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.jkc-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* TEXT INSIDE */
.jkc-contact-item span {
  opacity: 0.85;
  font-size: 0.95rem;
}

.jkc-contact-item strong {
  font-size: 1.25rem;
  letter-spacing: 0.4px;
}

/* WHATSAPP */
.jkc-contact-item.whatsapp {
  background: rgba(37, 211, 102, 0.18);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.jkc-contact-item.whatsapp:hover {
  background: #25d366;
  color: #000;
  transform: translateY(-3px);
}

/* CALL */
.jkc-contact-item.call {
  background: rgba(212, 175, 55, 0.18);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.45);
}

.jkc-contact-item.call:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-3px);
}

/* MESSAGE */
.jkc-contact-message {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.jkc-contact-message h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #d4af37;
  margin-bottom: 18px;
}

.jkc-contact-message p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #e2e2e2;
  margin-bottom: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
  .jkc-contact-item {
    font-size: 1.05rem;
    padding: 16px 22px;
  }

  .jkc-contact-message h2 {
    font-size: 1.7rem;
  }
}

.construction-services-block {
  max-width: 900px;
  margin: auto;
}

.cs-title {
  background: #f7d300;
  color: #b30000;
  text-align: center;
  padding: 10px 15px;
  font-weight: 700;
  border-radius: 6px;
  margin-bottom: 20px;
}

.cs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.cs-list {
  list-style: disc;
  padding-left: 20px;
}

.cs-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .cs-wrapper {
    grid-template-columns: 1fr;
  }
}
