/* ==========================================================================
   GLOBAL APPLIANCE REPAIRS - REAL ESTATE PARTNERSHIP PAGE STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   BASE & SHARED ACCENTS
   -------------------------------------------------------------------------- */
.partnership-page {
  background-color: #ffffff;
  color: #1a1d29;
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  overflow-x: hidden;
}

.rp-badge-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e60012;
  margin-bottom: 14px;
}

.rp-badge-line::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background-color: #e60012;
  border-radius: 2px;
}

.highlight-red {
  color: #e60012;
}

/* --------------------------------------------------------------------------
   1. HERO SECTION (Full-Cover Picture Background using h.jpg)
   -------------------------------------------------------------------------- */
.rp-hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: #070a14;
  overflow: hidden;
  padding-top: calc(var(--header-height, 84px) + 2.5rem);
  padding-bottom: 4.5rem;
}

/* Full background photo layer with h.jpg */
.rp-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('h.jpg');
  background-size: cover;
  background-position: right 10% center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.01);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Deep Left-to-Right contrast gradient to ensure left text is 100% crisp */
.rp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(6, 8, 14, 0.98) 0%,
    rgba(6, 8, 14, 0.94) 38%,
    rgba(6, 8, 14, 0.72) 55%,
    rgba(6, 8, 14, 0.22) 78%,
    rgba(6, 8, 14, 0.05) 100%
  );
}

.rp-hero-vignette-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(6, 8, 14, 0.85) 0%, transparent 100%);
  pointer-events: none;
}

.rp-hero-vignette-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 2;
  background: linear-gradient(0deg, rgba(6, 8, 14, 0.9) 0%, transparent 100%);
  pointer-events: none;
}

.rp-hero-container {
  position: relative;
  z-index: 10;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

.rp-hero-content {
  max-width: 660px;
}

.rp-hero-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 22px;
}

.rp-hero-desc {
  font-size: 1.05rem;
  line-height: 1.72;
  color: #d1d5e2;
  margin-bottom: 36px;
  max-width: 580px;
}

/* Trust Badges Row */
.rp-hero-trust-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rp-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rp-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(230, 0, 18, 0.14);
  border: 1.5px solid #e60012;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e60012;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.25);
  transition: transform 0.3s ease;
}

.rp-trust-badge:hover .rp-trust-icon {
  transform: translateY(-2px) scale(1.05);
}

.rp-trust-text {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: #f1f3f9;
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   2. HONEST ADVICE, ALWAYS SECTION
   -------------------------------------------------------------------------- */
.rp-advice-section {
  background-color: #ffffff;
  padding: 100px 0 95px;
  position: relative;
}

.rp-advice-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}

.rp-advice-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0d1322;
  margin-bottom: 20px;
}

.rp-advice-intro {
  font-size: 1.02rem;
  line-height: 1.72;
  color: #4b5568;
  margin-bottom: 28px;
}

.rp-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rp-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #2c344b;
  font-weight: 500;
}

.rp-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e60012;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.rp-advice-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
}

.rp-advice-note svg {
  color: #e60012;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Advice Visual & Floating Badge */
.rp-advice-visual-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(13, 19, 34, 0.08);
}

.rp-advice-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.rp-floating-quote-card {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px 22px;
  max-width: 280px;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.rp-float-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e60012;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.rp-float-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.rp-float-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #cbd5e1;
  margin-bottom: 18px;
}

.rp-float-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e60012;
  color: #ffffff !important;
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(230, 0, 18, 0.4);
  transition: all 0.25s ease;
  width: 100%;
  justify-content: center;
}

.rp-float-btn:hover {
  background: #cc0010;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   3. WHAT MAKES US DIFFERENT SECTION (9-Grid)
   -------------------------------------------------------------------------- */
.rp-features-section {
  background-color: #f8fafc;
  padding: 95px 0 100px;
  border-top: 1px solid #edf1f7;
}

.rp-features-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

.rp-features-header {
  max-width: 750px;
  margin-bottom: 50px;
}

.rp-features-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0d1322;
  margin-bottom: 18px;
}

.rp-features-subtitle {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #64748b;
}

.rp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.rp-feature-card {
  background: #ffffff;
  border: 1px solid #e8ecf4;
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(13, 19, 34, 0.03);
}

.rp-feature-card:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 14px 32px rgba(13, 19, 34, 0.08);
}

.rp-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e60012;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(230, 0, 18, 0.25);
  flex-shrink: 0;
}

.rp-feature-name {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.18rem;
  font-weight: 800;
  color: #0d1322;
  margin-bottom: 10px;
  line-height: 1.25;
}

.rp-feature-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* --------------------------------------------------------------------------
   4. BUILT FOR YOUR PROPERTY PORTFOLIO SECTION
   -------------------------------------------------------------------------- */
.rp-portfolio-section {
  background-color: #070b16;
  color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.rp-portfolio-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 1.25fr;
  gap: 40px;
  align-items: center;
}

.rp-portfolio-img-box {
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
  background: #151b2e;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.rp-portfolio-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rp-portfolio-info {
  padding-right: 10px;
}

.rp-portfolio-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
}

.rp-portfolio-text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 30px;
}

.rp-partner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e60012;
  color: #ffffff !important;
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.02rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(230, 0, 18, 0.38);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.rp-partner-btn:hover {
  background: #cc0010;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(230, 0, 18, 0.48);
}

/* Right 6 Cards Grid */
.rp-portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.rp-portfolio-card {
  background: #0d1424;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 22px 20px;
  transition: all 0.3s ease;
}

.rp-portfolio-card:hover {
  border-color: rgba(230, 0, 18, 0.5);
  transform: translateY(-3px);
  background: #111a2f;
}

.rp-portfolio-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(230, 0, 18, 0.15);
  color: #e60012;
  border: 1px solid rgba(230, 0, 18, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.rp-portfolio-card-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.02rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.rp-portfolio-card-desc {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #94a3b8;
  margin: 0;
}

/* --------------------------------------------------------------------------
   5. WE DON'T JUST FIX APPLIANCES SECTION
   -------------------------------------------------------------------------- */
.rp-support-section {
  background-color: #ffffff;
  padding: 85px 0;
  border-bottom: 1px solid #edf1f7;
}

.rp-support-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.rp-support-img-box {
  border-radius: 20px;
  overflow: hidden;
  height: 240px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.rp-support-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rp-support-info {
  padding-right: 15px;
}

.rp-support-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0d1322;
  margin-bottom: 14px;
}

.rp-support-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4b5568;
  margin-bottom: 20px;
}

.rp-support-pills {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rp-support-pill-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
}

.rp-support-pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(230, 0, 18, 0.12);
  color: #e60012;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Call Now Navy Card */
.rp-callnow-card {
  background: #080d1a;
  border-radius: 22px;
  padding: 30px 26px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 35px rgba(8, 13, 26, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rp-callnow-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e60012;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(230, 0, 18, 0.4);
}

.rp-callnow-label {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 6px;
}

.rp-callnow-phone {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.rp-callnow-phone:hover {
  color: #ff3344;
}

.rp-callnow-text {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #94a3b8;
  margin: 0;
}

/* --------------------------------------------------------------------------
   6. SIMPLE PROCESS. FAST RESULTS SECTION
   -------------------------------------------------------------------------- */
.rp-process-section {
  background-color: #f8fafc;
  padding: 95px 0 100px;
}

.rp-process-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

.rp-process-content {
  background: #080d1a;
  color: #ffffff;
  border-radius: 28px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(8, 13, 26, 0.15);
}

.rp-process-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
}

.rp-process-desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 32px;
}

.rp-email-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 24px;
}

.rp-email-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.rp-email-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e60012;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rp-email-lead {
  font-size: 0.88rem;
  color: #94a3b8;
  display: block;
}

.rp-email-link {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: #e60012;
  text-decoration: none;
}

.rp-email-link:hover {
  text-decoration: underline;
}

.rp-email-subtext {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
  padding-left: 52px;
}

/* Process Right Image & Floating Badge */
.rp-process-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 20px 45px rgba(13, 19, 34, 0.1);
}

.rp-process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rp-property-priority-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(8, 13, 26, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 14px 22px;
  color: #ffffff;
  text-align: right;
}

.rp-priority-cursive {
  font-family: 'Dancing Script', 'Caveat', cursive;
  font-size: 1.45rem;
  font-weight: 700;
  color: #e60012;
  display: block;
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   7. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .rp-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rp-portfolio-container {
    grid-template-columns: 1fr 1.25fr;
  }

  .rp-portfolio-img-box {
    display: none;
  }

  .rp-support-container {
    grid-template-columns: 1fr 1fr;
  }

  .rp-callnow-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 992px) {
  .rp-hero-bg {
    background-position: right 25% center;
  }

  .rp-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(6, 8, 14, 0.98) 0%,
      rgba(6, 8, 14, 0.92) 55%,
      rgba(6, 8, 14, 0.7) 100%
    );
  }

  .rp-hero-title {
    font-size: 2.85rem;
  }

  .rp-advice-container {
    grid-template-columns: 1fr;
  }

  .rp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rp-portfolio-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rp-process-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .rp-hero-section {
    padding-top: calc(var(--header-height, 84px) + 1.5rem);
    padding-bottom: 3.5rem;
  }

  .rp-hero-title {
    font-size: 2.3rem;
  }

  .rp-features-grid {
    grid-template-columns: 1fr;
  }

  .rp-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .rp-support-container {
    grid-template-columns: 1fr;
  }

  .rp-process-content {
    padding: 36px 24px;
  }

  .rp-process-title {
    font-size: 2.2rem;
  }

  .rp-email-subtext {
    padding-left: 0;
    margin-top: 10px;
  }
}
