/* ================================================================
   Renovation Single Page — Premium Dark Theme Styling
   Triple R Partners
   ================================================================ */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;800&family=Inter:wght@400;500;600&display=swap");

/* ================================================================
   Header — Matches the Contact Page (white text, transparent bg)
   The Elementor header is transparent, so we must force white text
   on dark-background pages like this one.
   ================================================================ */

/* White nav links */
body.single-renovation #site-header a,
body.single-renovation .site-header a,
body.single-renovation .elementor-nav-menu a,
body.single-renovation .elementor-nav-menu .elementor-item,
body.single-renovation .elementor-nav-menu--main .elementor-item {
  color: #ffffff !important;
}

/* Gold on hover / active */
body.single-renovation #site-header a:hover,
body.single-renovation .elementor-nav-menu a:hover,
body.single-renovation .elementor-nav-menu .elementor-item:hover,
body.single-renovation .elementor-nav-menu .elementor-item.elementor-item-active,
body.single-renovation .elementor-nav-menu--main .elementor-item:hover {
  color: #d4af37 !important;
}

/* White logo — same as contact page */
body.single-renovation #site-header img.custom-logo,
body.single-renovation .site-header img.custom-logo,
body.single-renovation .custom-logo-link img,
body.single-renovation .elementor-widget-theme-site-logo img,
body.single-renovation .site-branding .site-logo img {
  content: url('../images/logo-white.png') !important;
}

/* Transparent header background with subtle border */
body.single-renovation #site-header,
body.single-renovation .site-header {
  background-color: transparent !important;
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Mobile hamburger toggle — white */
body.single-renovation .elementor-menu-toggle,
body.single-renovation .elementor-menu-toggle i,
body.single-renovation .elementor-menu-toggle svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* Social icons in top bar — keep white */
body.single-renovation .elementor-social-icons-wrapper a,
body.single-renovation .elementor-icon-list-icon a,
body.single-renovation .header-top-bar a {
  color: #ffffff !important;
}

/* Dark dropdown menu — matching contact page gpu-style */
body.single-renovation .elementor-nav-menu--main ul.sub-menu,
body.single-renovation .elementor-nav-menu--main .sub-menu {
  background-color: rgba(17, 17, 20, 0.96) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

body.single-renovation .elementor-nav-menu--main ul.sub-menu li a,
body.single-renovation .elementor-nav-menu--main .sub-menu li a,
body.single-renovation .elementor-sub-item {
  color: #e5e5e7 !important;
}

body.single-renovation .elementor-nav-menu--main ul.sub-menu li a:hover,
body.single-renovation .elementor-sub-item:hover {
  color: #d4af37 !important;
  background-color: rgba(212, 175, 55, 0.08) !important;
}


.renovation-single-wrapper {
  background-color: #09090b !important;
  color: #f5f5f7 !important;
  font-family: "Inter", sans-serif;
  padding: 130px 0 60px 0; /* Clear transparent or fixed Elementor headers */
  min-height: 100vh;
}

.renovation-single-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Back Link Button */
.renovation-back-btn {
  font-family: "Montserrat", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #d4af37 !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.renovation-back-btn:hover {
  color: #ffffff !important;
  transform: translateX(-4px);
}

/* Swiper Slider Section */
.renovation-single-slider-wrapper {
  margin-bottom: 40px;
  position: relative;
}

.renovation-single-slider {
  width: 100%;
  height: 55vh;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.renovation-single-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.renovation-single-slider .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(9,9,9,0) 60%, rgba(9,9,9,0.5) 100%);
}

.renovation-single-slider .swiper-button-prev,
.renovation-single-slider .swiper-button-next {
  width: 50px;
  height: 50px;
  background: rgba(24, 24, 28, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: #d4af37 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 20 !important;
  cursor: pointer;
}

.renovation-single-slider .swiper-button-prev:hover,
.renovation-single-slider .swiper-button-next:hover {
  background: #d4af37;
  color: #09090b !important;
  transform: scale(1.05);
  border-color: #d4af37;
}

.renovation-single-slider .swiper-button-prev::after,
.renovation-single-slider .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}

.renovation-single-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
}

.renovation-single-slider .swiper-pagination-bullet-active {
  background: #d4af37 !important;
  width: 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Two-Column Layout Grid */
.renovation-single-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Left Column: Story */
.renovation-single-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.renovation-single-header h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Specifications Grid */
.renovation-single-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 15px;
}

.renovation-single-spec-card {
  background: rgba(24, 24, 28, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 20px 15px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.renovation-single-spec-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.renovation-single-spec-card .spec-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}

.renovation-single-spec-card .spec-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  color: #9e9ea8;
  letter-spacing: 0.8px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.renovation-single-spec-card .spec-value {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

/* Story/Description Content Block */
.renovation-single-description-box {
  background: rgba(24, 24, 28, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.renovation-single-description-box h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #d4af37;
  border-bottom: 2px solid rgba(212, 175, 55, 0.25);
  padding-bottom: 10px;
  display: inline-block;
}

.renovation-single-content {
  font-size: 15px;
  color: #e5e5ea;
  line-height: 1.8;
}

.renovation-single-content p {
  margin-bottom: 20px;
}

.renovation-single-content p:last-child {
  margin-bottom: 0;
}

/* Right Column: Sidebar */
.renovation-single-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Quote/Lead Inquiry Box */
.renovation-single-inquiry-card {
  background: rgba(24, 24, 28, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.renovation-single-inquiry-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #d4af37;
}

.inquiry-description {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #9e9ea8;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Premium Styling for WPForms inside Dark Container */
.renovation-form-wrapper .wpforms-form input,
.renovation-form-wrapper .wpforms-form textarea,
.renovation-form-wrapper .wpforms-form select {
  background-color: rgba(9, 9, 11, 0.6) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-family: "Inter", sans-serif !important;
  transition: all 0.3s ease !important;
}

.renovation-form-wrapper .wpforms-form input:focus,
.renovation-form-wrapper .wpforms-form textarea:focus,
.renovation-form-wrapper .wpforms-form select:focus {
  border-color: #d4af37 !important;
  background-color: rgba(9, 9, 11, 0.8) !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;
}

.renovation-form-wrapper .wpforms-form button.wpforms-submit {
  background: linear-gradient(135deg, #d4af37, #a8862a) !important;
  border: none !important;
  color: #09090b !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  border-radius: 10px !important;
  padding: 14px 28px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.renovation-form-wrapper .wpforms-form button.wpforms-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3) !important;
}

/* Agency Contact Box */
.renovation-single-agency-card {
  background: rgba(24, 24, 28, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.renovation-single-agency-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #d4af37;
}

.agency-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: #e5e5ea;
  font-weight: 500;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.agency-contact-row:hover {
  color: #d4af37;
}

.agency-contact-row .contact-icon {
  font-size: 16px;
}

/* Responsive Breakpoints */
@media screen and (max-width: 992px) {
  .renovation-single-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .renovation-single-sidebar {
    position: static;
  }
}

@media screen and (max-width: 768px) {
  .renovation-single-wrapper {
    padding-top: 100px; /* Clear fixed headers on mobile viewports */
  }

  .renovation-single-slider {
    height: 40vh;
  }
  
  .renovation-single-header h1 {
    font-size: 1.8rem;
  }
  
  .renovation-single-description-box {
    padding: 24px;
  }
  
  .renovation-single-inquiry-card {
    padding: 24px;
  }
}

/* ================================================================
   Header Custom Overrides: Force Light Header on Dark Theme CPT
   ================================================================ */
body.single-renovation #site-header,
body.single-renovation .site-header,
body.single-renovation .elementor-location-header {
  background-color: #ffffff !important;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

body.single-renovation #site-header a,
body.single-renovation .site-header a,
body.single-renovation .elementor-nav-menu a,
body.single-renovation .elementor-nav-menu .elementor-item,
body.single-renovation .elementor-nav-menu--main .elementor-item {
  color: #1c1c1e !important;
}

body.single-renovation #site-header a:hover,
body.single-renovation .site-header a:hover,
body.single-renovation .elementor-nav-menu a:hover,
body.single-renovation .elementor-nav-menu .elementor-item:hover,
body.single-renovation .elementor-nav-menu--main .elementor-item:hover {
  color: #a8862a !important;
}

/* ================================================================
   Form Placeholders & Inputs — White on Dark Background
   ================================================================ */

/* Placeholder text — white */
body.single-renovation .wpforms-form input::placeholder,
body.single-renovation .wpforms-form textarea::placeholder,
body.single-renovation .wpforms-form select::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
}

/* Firefox */
body.single-renovation .wpforms-form input::-moz-placeholder,
body.single-renovation .wpforms-form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
}

/* IE / Edge */
body.single-renovation .wpforms-form input:-ms-input-placeholder,
body.single-renovation .wpforms-form textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Input & textarea text color */
body.single-renovation .wpforms-form input[type="text"],
body.single-renovation .wpforms-form input[type="email"],
body.single-renovation .wpforms-form input[type="tel"],
body.single-renovation .wpforms-form input[type="number"],
body.single-renovation .wpforms-form input[type="url"],
body.single-renovation .wpforms-form textarea,
body.single-renovation .wpforms-form select {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Focus state */
body.single-renovation .wpforms-form input[type="text"]:focus,
body.single-renovation .wpforms-form input[type="email"]:focus,
body.single-renovation .wpforms-form input[type="tel"]:focus,
body.single-renovation .wpforms-form textarea:focus {
  border-color: #d4af37 !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2) !important;
}

/* Labels */
body.single-renovation .wpforms-form .wpforms-field-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Submit Button */
body.single-renovation .wpforms-form button[type="submit"],
body.single-renovation .wpforms-form .wpforms-submit {
  background-color: #d4af37 !important;
  color: #09090b !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 15px 30px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
  width: 100% !important;
  cursor: pointer !important;
  margin-top: 10px !important;
}

body.single-renovation .wpforms-form button[type="submit"]:hover,
body.single-renovation .wpforms-form .wpforms-submit:hover {
  background-color: #a8862a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(168, 134, 42, 0.4) !important;
}
