/* ================================================================
   CUBED Interior Projects — Shared Page Styles
   File:    css/cubed-pages.css
   Used on: refurbishment-fit-out.html and all new service pages

   Contents:
   1. Hero H1 fix
   2. Breadcrumb
   3. Service cards (hub page grid)
   4. Why Choose bullet list
   5. Info box
   6. Two-column image + text block
   7. FAQ section
   8. Section utilities
   ================================================================ */


/* ── 1. Hero H1 fix ─────────────────────────────────────────── */
/*    style.css only targets .cd-hero-slider h2 — these rules
      mirror every h2 rule exactly so h1 renders identically     */

.cd-hero-slider h1 {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  margin: 0 auto 14px;
  color: #ffffff;
  width: 90%;
  max-width: 400px;
  font-size: 2.4rem;
}

@media only screen and (min-width: 768px) {
  .cd-hero-slider h1 {
    max-width: 520px;
    font-size: 2.4em;
    font-weight: 300;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-hero-slider h1 {
    margin-bottom: 20px;
    font-size: 3.2em;
    max-width: 600px;
  }
}

/* Mirror the animation rules for h1 alongside h2 */
@media only screen and (min-width: 768px) {
  .cd-hero-slider .cd-full-width h1 {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
  .cd-hero-slider .move-left .cd-full-width h1 {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  .cd-hero-slider .selected .cd-full-width h1 {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-hero-slider li.selected h1 {
    color: #ffffff;
  }
}


/* ── 2. Breadcrumb ──────────────────────────────────────────── */

.cubed-breadcrumb-wrap {
  padding: 18px 0 10px;
  font-family: 'Montserrat', sans-serif;
}

.cubed-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cubed-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.85em;
  font-weight: 500;
  color: #828080;
}

.cubed-breadcrumb li a {
  color: #828080;
  text-decoration: none;
  transition: color 0.2s;
}

.cubed-breadcrumb li a:hover {
  color: #cf4842;
}

.cubed-breadcrumb li:last-child {
  color: #cf4842;
  font-weight: 600;
}

.cubed-breadcrumb-sep {
  margin: 0 8px;
  color: #ccc;
}


/* ── 3. Service cards ───────────────────────────────────────── */

.service-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-top: 3px solid #cf4842;
  margin-bottom: 24px;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 20px 20px 18px;
}

.service-card-body .heading2 {
  margin-bottom: 8px;
  font-size: 1em;
}

.service-card-body hr {
  border-color: #f0f0f0;
  margin: 8px 0 12px;
}

.service-card-body .mainText {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 14px;
}

.service-card-body .button {
  margin: 0;
  font-size: 0.8em;
  padding: 10px 16px;
}


/* ── 4. Why Choose bullet list ──────────────────────────────── */

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-list li {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1em;
  color: #828080;
  line-height: 2.0;
  padding-left: 20px;
  position: relative;
}

.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #cf4842;
  border-radius: 50%;
}


/* ── 5. Section utilities ───────────────────────────────────── */

/*  Red section heading — matches .headingBanner.red from CSS_panache
    but as a proper heading element for SEO                          */
.cubed-section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2em;
  font-weight: 400;
  color: #cf4842;
  text-decoration: none;
  padding-top: 10px;
  text-align: center;
  margin-bottom: 0;
}

/*  Intro text block used at the top of service pages              */
.cubed-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/*  Divider rule — matches existing <hr/> pattern                  */
.cubed-rule {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 20px 0;
}


/* ── 6. Info highlight box ──────────────────────────────────── */
/*    Used for "What is an office fit out?" and similar callouts  */

.cubed-info-box {
  background: #f9f7f5;
  border-left: 4px solid #cf4842;
  padding: 22px 24px;
  margin: 20px 0 28px;
}

.cubed-info-box p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05em;
  color: #4d4a49;
  line-height: 1.85;
  margin: 0;
}

.cubed-info-box p + p {
  margin-top: 12px;
}


/* ── 7. Two-column image + text block ───────────────────────── */
/*    Handles the service page intro layout with image on right   */

.cubed-split {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin: 20px 0 28px;
}

.cubed-split-text {
  flex: 1 1 55%;
}

.cubed-split-img {
  flex: 1 1 40%;
}

.cubed-split-img img {
  width: 100%;
  display: block;
  border-top: 3px solid #cf4842;
}

@media only screen and (max-width: 768px) {
  .cubed-split {
    flex-direction: column;
    gap: 20px;
  }
  .cubed-split-img {
    width: 100%;
  }
}


/* ── 8. FAQ section ─────────────────────────────────────────── */
/*    Question headings and answer paragraphs                     */

.cubed-faq {
  margin: 8px 0 28px;
}

.cubed-faq-item {
  border-bottom: 1px solid #f0f0f0;
  padding: 18px 0;
}

.cubed-faq-item:first-child {
  border-top: 1px solid #f0f0f0;
}

.cubed-faq-q {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05em;
  font-weight: 700;
  color: #4d4a49;
  margin: 0 0 10px;
}

.cubed-faq-a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  color: #828080;
  line-height: 1.85;
  margin: 0;
}


/* ================================================================
   CUBED Interior Projects — Enhanced Page Components
   Prefix: ip- (Interior Projects)
   ================================================================ */


/* ── Page wrapper ───────────────────────────────────────────── */

.ip-wrapper {
  font-family: 'Montserrat', "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #676566;
  line-height: 1.6;
}

.ip-wrapper * {
  box-sizing: border-box;
}

.ip-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}


/* ── Section title with red underline accent ────────────────── */

.ip-section-title {
  font-family: 'Montserrat', sans-serif;
  color: #cf4842;
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  position: relative;
  padding-bottom: 12px;
}

.ip-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #cf4842;
}

.ip-section-title.centred {
  text-align: center;
}

.ip-section-title.centred::after {
  left: 50%;
  transform: translateX(-50%);
}

.ip-section-title.white {
  color: #ffffff;
}

.ip-section-title.white::after {
  background: #ffffff;
}

.ip-section-lead {
  font-size: 1.1em;
  line-height: 1.75;
  color: #676566;
  margin: 0 0 28px;
}

.ip-section-lead.centred {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ip-section-lead.white {
  color: rgba(255,255,255,0.9);
}


/* ── Light/dark alternating sections ───────────────────────── */

.ip-section {
  padding: 60px 0;
}

.ip-section-white {
  background: #ffffff;
}

.ip-section-grey {
  background: #f5f4f2;
}

.ip-section-dark {
  background: #2d2d2d;
  color: #ffffff;
}

.ip-section-dark .ip-section-lead {
  color: rgba(255,255,255,0.85);
}


/* ── Background image section (with dark overlay) ───────────── */

.ip-section-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 80px 0;
}

.ip-section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(40, 30, 30, 0.75);
  z-index: 0;
}

.ip-section-bg .ip-container {
  position: relative;
  z-index: 1;
}

.ip-section-bg .ip-section-title {
  color: #ffffff;
}

.ip-section-bg .ip-section-title::after {
  background: #cf4842;
}

.ip-section-bg .ip-section-lead {
  color: rgba(255,255,255,0.9);
}


/* ── Benefit cards grid ─────────────────────────────────────── */

.ip-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.ip-benefit-card {
  background: #ffffff;
  border-top: 3px solid #cf4842;
  padding: 28px 24px 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ip-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(207,72,66,0.12);
}

.ip-section-bg .ip-benefit-card {
  background: rgba(255,255,255,0.1);
  border-top-color: #cf4842;
  backdrop-filter: blur(6px);
}

.ip-benefit-icon {
  font-size: 2rem;
  color: #cf4842;
  margin-bottom: 14px;
  display: block;
}

.ip-benefit-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  font-weight: 700;
  color: #4d4a49;
  margin: 0 0 10px;
  line-height: 1.3;
}

.ip-section-bg .ip-benefit-title {
  color: #ffffff;
}

.ip-benefit-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9em;
  color: #828080;
  line-height: 1.7;
  margin: 0;
}

.ip-section-bg .ip-benefit-text {
  color: rgba(255,255,255,0.8);
}


/* ── Process steps ──────────────────────────────────────────── */

.ip-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin: 36px 0;
}

.ip-process-step {
  text-align: center;
  padding: 8px 16px;
}

.ip-step-number {
  width: 64px;
  height: 64px;
  background: #cf4842;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 18px;
  font-family: 'Montserrat', sans-serif;
}

.ip-step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95em;
  font-weight: 700;
  color: #4d4a49;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ip-step-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88em;
  color: #828080;
  line-height: 1.7;
  margin: 0;
}


/* ── Services included two-column grid ──────────────────────── */

.ip-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
  margin: 24px 0;
}

.ip-service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95em;
  color: #676566;
  line-height: 1.5;
}

.ip-service-item i {
  color: #cf4842;
  font-size: 0.9em;
  margin-top: 3px;
  flex-shrink: 0;
}

@media only screen and (max-width: 640px) {
  .ip-services-grid {
    grid-template-columns: 1fr;
  }
}


/* ── Accordion FAQ ──────────────────────────────────────────── */

.ip-faq-list {
  margin: 24px 0;
}

.ip-faq-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-left: 3px solid #cf4842;
  margin-bottom: 8px;
  overflow: hidden;
}

.ip-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.97em;
  font-weight: 700;
  color: #4d4a49;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s;
  line-height: 1.4;
}

.ip-faq-question:hover {
  background: #fdf8f8;
}

.ip-faq-question.active {
  background: #fdf8f8;
  color: #cf4842;
}

.ip-faq-icon {
  font-size: 0.85em;
  color: #cf4842;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.ip-faq-question.active .ip-faq-icon {
  transform: rotate(180deg);
}

.ip-faq-answer {
  display: none;
  padding: 0 20px 18px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.93em;
  color: #828080;
  line-height: 1.85;
  border-top: 1px solid #f5f5f5;
}

.ip-faq-answer p {
  margin: 12px 0 0;
}

.ip-faq-answer p:first-child {
  margin-top: 14px;
}

.ip-faq-answer a {
  color: #cf4842;
  text-decoration: none;
}

.ip-faq-answer a:hover {
  text-decoration: underline;
}


/* ── Info highlight box ─────────────────────────────────────── */

.ip-info-box {
  background: #f9f7f5;
  border-left: 4px solid #cf4842;
  padding: 24px 28px;
  margin: 20px 0 28px;
}

.ip-info-box p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  color: #4d4a49;
  line-height: 1.85;
  margin: 0;
}

.ip-info-box p + p {
  margin-top: 12px;
}

.ip-info-box a {
  color: #cf4842;
  text-decoration: none;
}

.ip-info-box a:hover {
  text-decoration: underline;
}


/* ── CTA strip (background image) ──────────────────────────── */

.ip-cta-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 80px 0;
  text-align: center;
}

.ip-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(35,20,20,0.78);
  z-index: 0;
}

.ip-cta-section .ip-container {
  position: relative;
  z-index: 1;
}

.ip-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4em;
  font-weight: 300;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.3;
}

.ip-cta-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1em;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ip-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #cf4842;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border: none;
  transition: background 0.2s, transform 0.2s;
  margin: 6px;
}

.ip-cta-btn:hover {
  background: #b33c37;
  transform: translateY(-2px);
  color: #ffffff;
}

.ip-cta-btn-outline {
  background: transparent;
  border: 2px solid #ffffff;
}

.ip-cta-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.ip-cta-features {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.ip-cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9em;
}

.ip-cta-feature i {
  color: #cf4842;
  font-size: 1.1em;
}


/* ── Related services row ───────────────────────────────────── */

.ip-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.ip-related-link {
  display: block;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-top: 3px solid #cf4842;
  padding: 18px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88em;
  font-weight: 700;
  color: #4d4a49;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.ip-related-link:hover {
  background: #cf4842;
  color: #ffffff;
  border-color: #cf4842;
}


/* ── Responsive ─────────────────────────────────────────────── */

@media only screen and (max-width: 768px) {
  .ip-section {
    padding: 44px 0;
  }
  .ip-section-bg {
    padding: 56px 0;
  }
  .ip-benefits-grid {
    grid-template-columns: 1fr;
  }
  .ip-process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .ip-cta-title {
    font-size: 1.8em;
  }
  .ip-section-title {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 480px) {
  .ip-process-steps {
    grid-template-columns: 1fr;
  }
  .ip-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ── Ghost outline button (for use on dark/image backgrounds) ── */

.ip-btn-ghost {
  display: inline-block;
  padding: 13px 28px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.ip-btn-ghost:hover {
  background: #ffffff;
  color: #cf4842;
}


/* ── Fit out comparison table ───────────────────────────────── */

.ip-comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 28px 0;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}

.ip-comp-col {
  border-right: 1px solid #e8e8e8;
}

.ip-comp-col:last-child {
  border-right: none;
}

.ip-comp-head {
  padding: 18px 16px;
  background: #4d4a49;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95em;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ip-comp-head.red {
  background: #cf4842;
}

.ip-comp-list {
  list-style: none;
  padding: 16px;
  margin: 0;
  background: #fff;
}

.ip-comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid #f5f5f5;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88em;
  color: #676566;
  line-height: 1.5;
}

.ip-comp-list li:last-child {
  border-bottom: none;
}

.ip-comp-list li i {
  color: #cf4842;
  font-size: 0.85em;
  margin-top: 3px;
  flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
  .ip-comparison {
    grid-template-columns: 1fr;
  }
  .ip-comp-col {
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
  }
  .ip-comp-col:last-child {
    border-bottom: none;
  }
}

/* ================================================================
   HOMEPAGE — v4
   4-col service grid, logo strip, red Why Choose Us,
   dark image projects, white testimonial carousel
   ================================================================ */


/* ── sr-only ────────────────────────────────────────────────── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}


/* ── Section eyebrow ────────────────────────────────────────── */

.ip-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #cf4842;
  margin-bottom: 10px;
}

.ip-eyebrow.white   { color: rgba(255,255,255,0.55); }
.ip-eyebrow.centred { text-align: center; }


/* ── Service section wrapper ────────────────────────────────── */

.ip-service-section-wrap {
  background: #ffffff;
  padding: 64px 0 48px;
}

.ip-service-section-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 36px;
  text-align: center;
}

.ip-service-section-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}


/* ── 4-column service cards grid ────────────────────────────── */

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0 0 20px;
}

/* CUBED Glass card — blue top accent */
.service-card.glass {
  border-top-color: #43c7e7;
}

@media only screen and (max-width: 1024px) {
  .home-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media only screen and (max-width: 560px) {
  .home-services-grid { grid-template-columns: 1fr; }
}


/* ── Logo strip — full colour, generous size ────────────────── */

.ip-logo-strip {
  background: #ffffff;
  padding: 44px 0;
  border-top: 1px solid #ece9e6;
  border-bottom: 1px solid #ece9e6;
}

.ip-logo-strip-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #bbb9b7;
  text-align: center;
  margin-bottom: 32px;
}

.ip-logo-strip-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.ip-logo-strip-grid img {
  max-height: 72px;
  width: auto;
  transition: opacity 0.25s ease;
}

.ip-logo-strip-grid img:hover { opacity: 0.7; }


/* ── Why Choose Us — red section, 3x2 ──────────────────────── */

.ip-section-red {
  background: #cf4842;
  padding: 68px 0;
}

.ip-section-red .ip-section-title         { color: #ffffff; }
.ip-section-red .ip-section-title::after  { background: rgba(255,255,255,0.4); }
.ip-section-red .ip-section-lead          { color: rgba(255,255,255,0.82); }

.ip-section-red .ip-benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media only screen and (max-width: 900px) {
  .ip-section-red .ip-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media only screen and (max-width: 560px) {
  .ip-section-red .ip-benefits-grid { grid-template-columns: 1fr; }
}

.ip-section-red .ip-benefit-card {
  background: rgba(255,255,255,0.12);
  border-top: 3px solid rgba(255,255,255,0.3);
  box-shadow: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.ip-section-red .ip-benefit-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.ip-section-red .ip-benefit-icon  { color: rgba(255,255,255,0.85); }
.ip-section-red .ip-benefit-title { color: #ffffff; }
.ip-section-red .ip-benefit-text  { color: rgba(255,255,255,0.78); }


/* ── Featured projects — dark image bg, white cards ─────────── */

.ip-featured-projects {
  padding: 72px 0;
}

.ip-featured-head {
  text-align: center;
  margin-bottom: 40px;
}

.ip-dark-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.ip-featured-projects .service-card {
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ip-featured-projects .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.45);
}

.ip-featured-cta { text-align: center; }

@media only screen and (max-width: 900px) {
  .ip-dark-cards-grid { grid-template-columns: 1fr 1fr; }
}

@media only screen and (max-width: 560px) {
  .ip-dark-cards-grid { grid-template-columns: 1fr; }
}


/* ── Testimonial carousel — white bg ────────────────────────── */

.ip-tcarousel-section {
  background: #ffffff;
  padding: 80px 0;
  border-top: 1px solid #f0eeec;
}

.ip-tcarousel-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.ip-tcarousel-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #cf4842;
  margin-bottom: 10px;
}

.ip-tcarousel-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #2d2a29;
  margin: 0 0 36px;
}

.ip-tcarousel-stars {
  color: #f0a500;
  font-size: 1.1em;
  letter-spacing: 4px;
  margin-bottom: 28px;
  display: block;
}

.ip-tcarousel-slides {
  position: relative;
  min-height: 160px;
}

.ip-tcarousel-slide {
  display: none;
}

.ip-tcarousel-slide.active {
  display: block;
  animation: tcFadeUp 0.5s ease both;
}

@keyframes tcFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ip-tcarousel-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.12em;
  color: #4d4a49;
  line-height: 1.95;
  font-style: italic;
  margin: 0 0 30px;
  position: relative;
}

.ip-tcarousel-quote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 2.2em;
  color: #cf4842;
  line-height: 0;
  vertical-align: -0.45em;
  margin-right: 3px;
}

.ip-tcarousel-quote::after {
  content: '\201D';
  font-family: Georgia, serif;
  font-size: 2.2em;
  color: #cf4842;
  line-height: 0;
  vertical-align: -0.45em;
  margin-left: 3px;
}

.ip-tcarousel-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82em;
  font-weight: 700;
  color: #cf4842;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 3px;
}

.ip-tcarousel-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76em;
  color: #aaa9a8;
}

.ip-tcarousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}

.ip-tcarousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.2s ease;
}

.ip-tcarousel-dot.active {
  background: #cf4842;
  transform: scale(1.35);
}

@media only screen and (max-width: 600px) {
  .ip-tcarousel-heading { font-size: 1.7rem; }
  .ip-tcarousel-quote   { font-size: 0.97em; }
}



/* ── Full-bleed service panels (Boru-style) ─────────────────── */

.ip-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin: 0;
}

.ip-panel {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.ip-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.ip-panel:hover .ip-panel-bg {
  transform: scale(1.05);
}

.ip-panel-overlay {
  position: absolute;
  inset: 0;
  transition: background 0.45s ease;
}

/* Red panels — red by default */
.ip-panel.red .ip-panel-overlay {
  background: linear-gradient(
    to bottom,
    rgba(155,30,26,0.72) 0%,
    rgba(207,72,66,0.96) 100%
  );
}

/* Red panels — dark image on hover */
.ip-panel.red:hover .ip-panel-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.78) 100%
  );
}

/* Glass panel — blue by default */
.ip-panel.glass .ip-panel-overlay {
  background: linear-gradient(
    to bottom,
    rgba(15,80,110,0.72) 0%,
    rgba(25,130,170,0.96) 100%
  );
}

/* Glass panel — dark image on hover */
.ip-panel.glass:hover .ip-panel-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.78) 100%
  );
}

.ip-panel-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
}

.ip-panel-tag {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.63em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}

.ip-panel-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25em;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.25;
}

.ip-panel-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82em;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin: 0 0 20px;
}

.ip-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.ip-panel:hover .ip-panel-link {
  color: #ffffff;
  border-color: rgba(255,255,255,0.8);
}

.ip-panel-link::after {
  content: '\2192';
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.ip-panel:hover .ip-panel-link::after {
  transform: translateX(4px);
}

/* Divider between panels */
.ip-panel + .ip-panel {
  border-left: 1px solid rgba(255,255,255,0.08);
}

@media only screen and (max-width: 1024px) {
  .ip-panel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ip-panel + .ip-panel {
    border-left: none;
  }
  .ip-panel:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .ip-panel:nth-child(1),
  .ip-panel:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

@media only screen and (max-width: 560px) {
  .ip-panel-grid {
    grid-template-columns: 1fr;
  }
  .ip-panel {
    height: 320px;
  }
  .ip-panel:nth-child(odd) {
    border-right: none;
  }
  .ip-panel:nth-child(1),
  .ip-panel:nth-child(2) {
    border-bottom: none;
  }
  .ip-panel + .ip-panel {
    border-top: 1px solid rgba(255,255,255,0.08);
  }
}


/* ── Panel heading colour variants ──────────────────────────── */

.ip-panel-title {
  transition: color 0.35s ease;
}

/* White on coloured overlay by default — always readable */
.ip-panel.red .ip-panel-title,
.ip-panel.glass .ip-panel-title {
  color: #ffffff;
}

/* On hover — dark overlay, heading stays white */
.ip-panel.red:hover .ip-panel-title,
.ip-panel.glass:hover .ip-panel-title {
  color: #ffffff;
}

/* Mobile — darker overlays and larger description text */
@media only screen and (max-width: 560px) {
  .ip-panel-text {
    font-size: 0.92em;
  }
  .ip-panel.red .ip-panel-overlay {
    background: linear-gradient(
      to bottom,
      rgba(140,25,22,0.85) 0%,
      rgba(207,72,66,0.99) 100%
    );
  }
  .ip-panel.glass .ip-panel-overlay {
    background: linear-gradient(
      to bottom,
      rgba(12,65,90,0.85) 0%,
      rgba(20,115,155,0.99) 100%
    );
  }
}


/* ── Section title large modifier (homepage H1) ─────────────── */

.ip-section-title.large {
  font-size: 3rem;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .ip-section-title.large {
    font-size: 2.2rem;
  }
}


/* ── Logo strip — single row only at very wide screens ──────── */

@media only screen and (min-width: 1400px) {
  .ip-logo-strip {
    padding: 72px 0;
  }
  .ip-logo-strip-grid {
    flex-wrap: nowrap;
    gap: 0 44px;
    max-width: 1700px;
    padding: 0 48px;
  }
  .ip-logo-strip-grid img {
    max-height: 80px;
    flex-shrink: 1;
  }
}



/* ================================================================
   CONTACT PAGE
   ================================================================ */

/* ── Two-column split ───────────────────────────────────────── */

.ip-contact-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 580px;
}

/* ── Left — dark info panel ─────────────────────────────────── */

.ip-contact-info {
  background: #1e1b1b;
  padding: 64px 52px;
}

.ip-contact-info .ip-eyebrow {
  margin-bottom: 12px;
}

.ip-contact-info-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.25;
}

.ip-contact-info-intro {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88em;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin: 0 0 32px;
}

/* Big call button */
.ip-contact-call-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #cf4842;
  color: #ffffff;
  padding: 18px 26px;
  margin: 0 0 36px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  letter-spacing: -0.5px;
  transition: background 0.25s ease;
}

.ip-contact-call-btn:hover,
.ip-contact-call-btn:focus {
  background: #b83d38;
  color: #ffffff;
}

.ip-contact-call-btn i {
  font-size: 0.85em;
}

.ip-contact-call-label {
  display: block;
  font-size: 0.45em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2px;
}

/* Detail rows */
.ip-contact-details {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  margin-bottom: 32px;
}

.ip-contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.ip-contact-detail:last-child {
  margin-bottom: 0;
}

.ip-contact-detail-icon {
  color: #cf4842;
  font-size: 0.95em;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.ip-contact-detail-body {
  font-family: 'Montserrat', sans-serif;
}

.ip-contact-detail-label {
  display: block;
  font-size: 0.62em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 4px;
}

.ip-contact-detail-value {
  font-size: 0.86em;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  text-decoration: none;
  display: block;
}

a.ip-contact-detail-value:hover {
  color: #cf4842;
}

/* Reassurance points */
.ip-contact-reassurance {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}

.ip-contact-reassure-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.83em;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}

.ip-contact-reassure-item:last-child {
  margin-bottom: 0;
}

.ip-contact-reassure-item i {
  color: #cf4842;
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.9em;
}

/* ── Right — form panel ─────────────────────────────────────── */

.ip-contact-form {
  background: #ffffff;
  padding: 64px 52px;
  border-left: 3px solid #cf4842;
}

.ip-contact-form-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #2d2a29;
  margin: 0 0 8px;
}

.ip-contact-form-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86em;
  color: #999;
  margin: 0 0 32px;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media only screen and (max-width: 900px) {
  .ip-contact-split {
    grid-template-columns: 1fr;
  }
  .ip-contact-info {
    padding: 48px 32px;
  }
  .ip-contact-form {
    padding: 48px 32px;
    border-left: none;
    border-top: 3px solid #cf4842;
  }
  .ip-contact-info-heading {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 560px) {
  .ip-contact-info,
  .ip-contact-form {
    padding: 40px 24px;
  }
  .ip-contact-call-btn {
    font-size: 1.25em;
  }
}



/* ── Contact panels — inside Foundation columns ─────────────── */

.ip-contact-info-panel {
  background: #1e1b1b;
  padding: 40px 36px 36px;
  height: 100%;
}

.ip-contact-form-panel {
  padding: 0 0 40px;
}

.ip-contact-form-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #2d2a29;
  margin: 0 0 6px;
}

.ip-contact-form-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85em;
  color: #999;
  margin: 0 0 24px;
}


/* ── Contact call button colour variants ────────────────────── */

.ip-contact-call-btn.blue {
  background: #43c7e7;
}

.ip-contact-call-btn.blue:hover {
  background: #2fafd0;
  color: #ffffff;
}

.ip-contact-call-btn.green {
  background: #aed500;
  color: #ffffff;
}

.ip-contact-call-btn.green:hover {
  background: #94b700;
  color: #ffffff;
}

.ip-contact-call-btn.green .ip-contact-call-label {
  color: rgba(255,255,255,0.65);
}

/* Email address smaller on tight screens */
@media only screen and (max-width: 1100px) {
  .ip-contact-call-btn.green {
    font-size: 1.1em;
  }
}

@media only screen and (max-width: 900px) {
  .ip-contact-call-btn.green {
    font-size: 0.95em;
  }
}

/* Mobile column order — contact info first, form second */
@media only screen and (max-width: 767px) {
  .ip-contact-columns-wrap {
    display: flex;
    flex-direction: column;
  }
  .ip-contact-columns-wrap .five {
    order: 1;
  }
  .ip-contact-columns-wrap .seven {
    order: 2;
  }
}

/* Gap below mobile call button */
.ip-mobile-call-section {
  margin-bottom: 28px;
}

/* ── Mobile call button ─────────────────────────────────────── */

.ip-mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #cf4842;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3em;
  padding: 18px 24px;
  margin: 20px 0;
  transition: background 0.25s ease;
}

.ip-mobile-call-btn:hover,
.ip-mobile-call-btn:focus {
  background: #b83d38;
  color: #ffffff;
}

.ip-mobile-call-btn i {
  font-size: 0.85em;
}

.ip-mobile-call-label {
  display: block;
  font-size: 0.42em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2px;
}


/* ── Contact form panel — more breathing room from dark panel ── */

.ip-contact-form-panel {
  padding-left: 36px;
}

/* Heading fits on one line */
.ip-contact-info-heading {
  font-size: 1.6rem;
  white-space: nowrap;
}

@media only screen and (max-width: 900px) {
  .ip-contact-form-panel {
    padding-left: 0;
    padding-top: 32px;
  }
  .ip-contact-info-heading {
    white-space: normal;
  }
}