/* ==========================================================================
   OC CONCRETING SERVICES - PROJECTS PAGE STYLESHEET (projects.css)
   Pixel-perfect styling matching design mockup
   ========================================================================== */

/* ----------------- Root & Design System Variables ----------------- */
:root {
  --primary-orange: #ff5e14;
  --primary-orange-hover: #e04e0b;
  --pure-white: #ffffff;
  --dark-navy: #0b0f17;
  --text-dark-headings: #0f172a;
  --text-dark-body: #475569;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-handwriting: 'Caveat', cursive;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

/* Global utility classes */
.white-text {
  color: #ffffff !important;
}

.orange-text {
  color: var(--primary-orange) !important;
}

/* ----------------- Root Container & Shared Resets ----------------- */
.projects-page {
  background-color: var(--pure-white);
  color: var(--text-dark-headings);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.projects-container-box {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ----------------- Hero Section ----------------- */
.projects-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 85px 0 90px;
  background-color: #0b0f17;
  overflow: hidden;
}

.projects-hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.projects-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.projects-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(11, 15, 23, 0.94) 0%,
    rgba(11, 15, 23, 0.88) 45%,
    rgba(11, 15, 23, 0.6) 75%,
    rgba(11, 15, 23, 0.3) 100%
  );
}

.projects-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}

.projects-hero-text-block {
  max-width: 660px;
}

.projects-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.projects-hero-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.projects-hero-title .white-text {
  color: #ffffff !important;
}

.projects-hero-title .orange-text {
  color: var(--primary-orange);
}

.projects-hero-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: #ffffff;
  font-weight: 400;
}

/* Right Cursive Signature Accent */
.projects-hero-signature {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
  transform: rotate(-5deg);
  margin-top: 10px;
}

.hero-cursive-top {
  font-family: var(--font-handwriting);
  font-size: 44px;
  font-weight: 700;
  color: var(--pure-white);
  line-height: 1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
  display: block;
}

.hero-cursive-bottom {
  font-family: var(--font-handwriting);
  font-size: 48px;
  font-weight: 700;
  color: var(--pure-white);
  line-height: 1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
  display: block;
}

.hero-cursive-swoosh {
  width: 170px;
  height: 18px;
  margin-top: -2px;
  display: block;
}

/* ----------------- Filter Bar ----------------- */
.projects-gallery-section {
  padding: 55px 0 95px;
  background-color: var(--pure-white);
}

.projects-filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  background-color: var(--pure-white);
  color: #475569;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.filter-btn:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  transform: translateY(-2px);
}

.filter-btn.active {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  color: var(--pure-white);
  box-shadow: 0 5px 16px rgba(255, 94, 20, 0.35);
}

/* ----------------- 2-Column Projects Gallery Grid ----------------- */
.projects-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-gallery-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.project-gallery-item.is-hidden {
  display: none !important;
}

.project-gallery-card {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #0b0f17;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-gallery-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.16);
}

.project-gallery-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-gallery-card:hover .project-gallery-img {
  transform: scale(1.06);
}

/* Hover Overlay & Zoom Icon */
.project-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 15, 23, 0.1) 0%,
    rgba(11, 15, 23, 0.3) 50%,
    rgba(11, 15, 23, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.project-gallery-card:hover .project-gallery-overlay {
  opacity: 1;
}

.gallery-overlay-badge {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-gallery-card:hover .gallery-overlay-badge {
  transform: scale(1);
}

.gallery-overlay-badge svg {
  width: 22px;
  height: 22px;
}

.gallery-overlay-text {
  transform: translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-gallery-card:hover .gallery-overlay-text {
  transform: translateY(0);
}

.gallery-overlay-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--pure-white);
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.gallery-overlay-sub {
  font-size: 13.5px;
  color: #ffffff;
  font-weight: 500;
}

/* ----------------- SECTION: WHY CHOOSE US ----------------- */
.projects-why-us-section {
  padding: 0 0 100px;
  background-color: var(--pure-white);
}

.why-us-split-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44% 56%;
  background-color: #0b0f17;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Left Image Container with Angled Slant Cut */
.why-us-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  overflow: hidden;
}

.why-us-screed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

/* Angled orange slant line divider */
.why-us-image-slant-accent {
  position: absolute;
  top: 0;
  right: -2px;
  width: 38px;
  height: 100%;
  background: linear-gradient(135deg, transparent 49.5%, #ff5e14 50%, #ff5e14 53%, #0b0f17 53.5%);
  pointer-events: none;
}

/* Right Content Block */
.why-us-content-container {
  padding: 55px 54px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-us-label {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary-orange);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.why-us-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.why-us-title .white-text {
  color: #ffffff !important;
}

.why-us-title .orange-text {
  color: var(--primary-orange);
}

.why-us-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 34px;
  max-width: 580px;
}

/* 4 Trust Badges Horizontal Grid */
.why-us-badges-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 26px;
}

.why-us-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-us-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 94, 20, 0.1);
  border: 1.5px solid rgba(255, 94, 20, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.why-us-badge:hover .why-us-badge-icon {
  transform: scale(1.08);
  background-color: rgba(255, 94, 20, 0.2);
}

.why-us-badge-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary-orange);
}

.why-us-badge-info {
  display: flex;
  flex-direction: column;
}

.why-us-badge-title {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--pure-white);
  line-height: 1.25;
}

.why-us-badge-sub {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.25;
}

/* ----------------- SECTION: CTA BANNER ----------------- */
.projects-cta-section {
  position: relative;
  padding: 85px 0;
  background-color: #0b0f17;
  overflow: hidden;
}

.projects-cta-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.projects-cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.projects-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(11, 15, 23, 0.96) 0%,
    rgba(11, 15, 23, 0.9) 55%,
    rgba(11, 15, 23, 0.82) 100%
  );
}

.projects-cta-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.projects-cta-text-block {
  max-width: 540px;
}

.projects-cta-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary-orange);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.projects-cta-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.projects-cta-title .white-text {
  color: #ffffff !important;
}

.projects-cta-title .orange-text {
  color: var(--primary-orange);
}

.projects-cta-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #ffffff;
}

.projects-cta-actions-wrap {
  display: flex;
  align-items: center;
  gap: 36px;
}

.projects-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.projects-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-orange);
  color: var(--pure-white);
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(255, 94, 20, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.projects-btn-primary:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 94, 20, 0.45);
  color: var(--pure-white);
}

.projects-btn-primary svg {
  width: 17px;
  height: 17px;
}

.projects-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgba(30, 41, 59, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.projects-btn-secondary:hover {
  background-color: rgba(30, 41, 59, 0.98);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--pure-white);
  transform: translateY(-2px);
}

.projects-btn-secondary svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-orange);
}

/* Cursive Accent on CTA Right */
.projects-cta-cursive {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  transform: rotate(-6deg);
  flex-shrink: 0;
}

.cta-cursive-line1,
.cta-cursive-line2,
.cta-cursive-line3 {
  font-family: var(--font-handwriting);
  font-size: 36px;
  font-weight: 700;
  color: var(--pure-white);
  line-height: 1.05;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  display: block;
}

.cta-cursive-swoosh {
  width: 160px;
  height: 16px;
  margin-top: -2px;
  display: block;
}

/* ----------------- INTERACTIVE LIGHTBOX MODAL ----------------- */
.project-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.project-lightbox-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 23, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  max-width: 950px;
  width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background-color: #0b0f17;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-lightbox-modal.is-open .lightbox-dialog {
  transform: scale(1);
}

.lightbox-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(11, 15, 23, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.lightbox-close-btn:hover {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: scale(1.08);
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.lightbox-img {
  width: 100%;
  max-height: 65vh;
  object-fit: cover;
  display: block;
}

.lightbox-caption {
  padding: 20px 28px;
  background-color: #0e131b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lightbox-category {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--pure-white);
  margin-bottom: 2px;
}

.lightbox-location {
  font-size: 13px;
  color: #ffffff;
}

.lightbox-quote-btn {
  padding: 10px 20px;
  border-radius: 6px;
  background-color: var(--primary-orange);
  border: none;
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.25s ease;
  flex-shrink: 0;
}

.lightbox-quote-btn:hover {
  background-color: var(--primary-orange-hover);
}

/* ----------------- Scroll Reveal Animations ----------------- */
.fade-up-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-element.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ----------------- Responsive Breakpoints ----------------- */
@media (max-width: 1150px) {
  .why-us-split-container {
    grid-template-columns: 1fr;
  }

  .why-us-image-container {
    min-height: 320px;
  }

  .why-us-image-slant-accent {
    display: none;
  }

  .why-us-badges-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .projects-hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .projects-hero-signature {
    align-self: flex-start;
    text-align: left;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .projects-container-box {
    padding: 0 24px;
  }

  .projects-hero-title {
    font-size: 48px;
  }

  .projects-gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-gallery-card {
    height: 320px;
  }

  .projects-cta-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-cta-actions-wrap {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .projects-cta-buttons {
    width: 100%;
  }

  .projects-btn-primary,
  .projects-btn-secondary {
    width: 100%;
  }

  .projects-cta-cursive {
    align-self: flex-start;
    text-align: left;
    align-items: flex-start;
  }
}

@media (max-width: 650px) {
  .projects-container-box {
    padding: 0 18px;
  }

  .projects-hero {
    padding: 60px 0;
    min-height: 420px;
  }

  .projects-hero-title {
    font-size: 38px;
  }

  .why-us-content-container {
    padding: 38px 24px 34px;
  }

  .why-us-title {
    font-size: 26px;
  }

  .why-us-badges-row {
    grid-template-columns: 1fr;
  }

  .project-gallery-card {
    height: 260px;
  }

  .lightbox-caption {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ----------------- INTERACTIVE QUOTE MODAL ----------------- */
.quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 15, 23, 0.88);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.quote-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.quote-modal-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  background-color: #0e131b;
  border-radius: 18px;
  padding: 40px 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal-overlay.active .quote-modal-card {
  transform: scale(1);
}

.quote-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.quote-modal-close:hover {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.quote-modal-header {
  margin-bottom: 24px;
}

.quote-modal-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-orange);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.quote-modal-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--pure-white);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.quote-modal-subtitle {
  font-size: 13.5px;
  line-height: 1.5;
  color: #e2e8f0;
}

.quote-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote-form-group label {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.quote-form-group input:focus,
.quote-form-group select:focus,
.quote-form-group textarea:focus {
  border-color: var(--primary-orange);
  background-color: rgba(255, 255, 255, 0.08);
}

.quote-form-group select option {
  background-color: #0e131b;
  color: #ffffff;
}

.quote-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.quote-form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-orange);
  color: var(--pure-white);
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(255, 94, 20, 0.35);
  transition: all 0.25s ease;
  margin-top: 6px;
}

.quote-form-submit-btn:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 94, 20, 0.45);
}

/* ----------------- Site Footer Text Color Enhancements ----------------- */
.site-footer {
  background-color: #060a11;
  color: #ffffff;
}

.site-footer .footer-heading {
  color: #ffffff !important;
}

.site-footer .footer-brand-desc {
  color: #ffffff !important;
}

.site-footer .footer-link {
  color: #ffffff !important;
}

.site-footer .footer-link:hover,
.site-footer .footer-link.active {
  color: var(--primary-orange) !important;
}

.site-footer .footer-contact-item {
  color: #ffffff !important;
}

.site-footer .footer-contact-item span {
  color: #ffffff !important;
}

.site-footer a.footer-contact-item:hover,
.site-footer a.footer-contact-item:hover span {
  color: var(--primary-orange) !important;
}

.site-footer .badge-line {
  color: #ffffff !important;
}

.site-footer .footer-copyright {
  color: #ffffff !important;
}

.site-footer .footer-tagline {
  color: #ffffff !important;
}

