/* Variables */
:root{
  --accent: #1f6fb2;
  --dark: #0b3553;
  --muted: #6b6f76;
  --bg: #f7f7f8;
  --card-bg: #fff;
}




/* Service Hero */
.service-hero {
 position: relative;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start; 

}

.service-hero-content {
  position: relative;
  max-width: 620px;
  color: #fff;
  z-index: 2;
  text-align: left;
  padding-left: clamp(20px, 6vw, 120px); 
}






/* Dark overlay */
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.2)
  );
}

/* Content */
.service-hero-content {
  position: relative;
  max-width: 620px;
  color: #fff;
  z-index: 2;
  text-align: left;
}

.service-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.service-hero-content .hero-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 520px;
}

/* Mobile */
@media (max-width: 768px) {
  .service-hero {
    min-height: 70vh;
    padding-left: 20px;
    padding-right: 20px;
  }
}


/* Split service section */
.service-split {
  background: #fff;
  padding: 90px 20px;
}

.service-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Text */
.service-split-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
  color: #1f2d1f;
}

.service-split-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #555;
}



/* Buttons */
.service-buttons {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--dark);
}

 

/* Image */
.service-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Mobile */
@media (max-width: 900px) {
  .service-split-inner {
    grid-template-columns: 1fr;
  }

  .service-split {
    padding: 60px 20px;
  }
}



/* TIWI Benefits Section */
.tiwi-benefits {
  background: #f8f9fb;
  padding: 50px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 60px;
  font-weight: 700;
  color: #111;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
  stroke: #111;
  stroke-width: 1.5;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #111;
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.benefit-card strong {
  color: #111;
  font-weight: 600;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .tiwi-benefits {
    padding: 60px 20px;
  }

  .benefit-card {
    padding: 30px 24px;
  }
}


/* === TIWI FEATURE SECTION === */
.tiwi-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #f7f8ff, #ffffff);
  padding: 100px 80px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin: 40px auto 70px;
  max-width: 1750px;
}

.tiwi-text h2 {
  color: #667eea;
  font-size: 2.2em;
  margin-bottom: 15px;
}

.tiwi-text p {
  color: #555;
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 25px;
}

.badge {
  display: inline-block;
  background: #764ba2;
  color: white;
  font-size: 0.8em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.tiwi-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.tiwi-button {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
  font-size: 0.95em;
}

.tiwi-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(102,126,234,0.4);
}

.tiwi-button.outline {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.tiwi-button.outline:hover {
  background: #667eea;
  color: white;
}

/* Image */
.tiwi-image img {
  width: 75%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Mobile */
@media (max-width: 900px) {
  .tiwi-feature {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tiwi-links {
    justify-content: center;
  }
}

/* Sideshow */

.plastering-slideshow {
  width: 100%;
  max-width: 1100px;
  margin: 60px auto;
  position: relative;
}

.slideshow-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 12px;
}

/* Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #c49a3a;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox.active {
  display: flex;
}




/* ============================= */
/* Partnership Banner            */
/* ============================= */

.partnership-banner {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

.partnership-overlay {
  position: absolute;
  inset: 0;
  background: var(--muted);
}

.partnership-content {
  position: relative;
  max-width: 800px;
  padding: 2rem;
  z-index: 2;
}

.partnership-content h2 {
  font-size: 2.5rem;
  margin: 1rem 0;
}

.partnership-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.partnership-banner .badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--dark);
  color: #fff;
  font-size: 0.85rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
