/* ======================================================
   CONTRACTOR WEBSITE DESIGN PAGE - DELOSWEB
   File: contractor-website-design.html
====================================================== */

:root {
  --dw-navy: #000038;
  --dw-dark-blue: #031b66;
  --dw-blue: #2d80b7;
  --dw-light-blue: #eaf6ff;
  --dw-text: rgba(0, 0, 56, 0.72);
  --dw-border: rgba(0, 0, 56, 0.08);
  --dw-shadow: 0 24px 70px rgba(0, 0, 56, 0.10);
}

/* ================================
   Shared Styles
================================ */

.dw-contractor-hero-section,
.dw-contractor-problems-section,
.dw-contractor-website-work-section,
.dw-contractor-builds-section,
.dw-contractor-industries-section,
.dw-contractor-options-section,
.dw-contractor-process-section,
.dw-contractor-portfolio-section,
.dw-contractor-final-cta-section {
  position: relative;
  overflow: hidden;
}

.dw-section-heading {
  position: relative;
  z-index: 3;
  max-width: 920px;
  margin: 0 auto 55px;
}

.dw-section-heading h2 {
  color: var(--dw-navy);
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.dw-section-heading p {
  color: var(--dw-text);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 0;
}

.dw-secondary-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--dw-navy);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dw-secondary-link::after {
  content: "";
  width: 38px;
  height: 2px;
  margin-left: 10px;
  background: var(--dw-blue);
  transition: all 0.3s ease;
}

.dw-secondary-link:hover {
  color: var(--dw-blue);
}

.dw-secondary-link:hover::after {
  width: 52px;
}

/* ================================
   1. Hero Section
================================ */

.dw-contractor-hero-section {
  padding: 125px 0 110px;
  background:
    radial-gradient(circle at 12% 20%, rgba(45, 128, 183, 0.13) 0%, rgba(45, 128, 183, 0) 32%),
    radial-gradient(circle at 88% 78%, rgba(0, 0, 56, 0.08) 0%, rgba(0, 0, 56, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.dw-contractor-hero-section::before {
  content: "";
  position: absolute;
  top: 80px;
  right: -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(45, 128, 183, 0.12);
  filter: blur(5px);
  animation: dwFloatGlow 7s ease-in-out infinite;
}

.dw-contractor-hero-section::after {
  content: "";
  position: absolute;
  left: -95px;
  bottom: 70px;
  width: 260px;
  height: 260px;
  border-radius: 55px;
  background: rgba(0, 0, 56, 0.045);
  transform: rotate(18deg);
  animation: dwFloatGlow 8s ease-in-out infinite reverse;
}

.dw-contractor-hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.dw-contractor-hero-content h1 {
  color: var(--dw-navy);
  font-size: clamp(44px, 3.7vw, 76px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.dw-contractor-hero-content p {
  color: var(--dw-text);
  font-size: 18px;
  line-height: 1.78;
  max-width: 620px;
  margin-bottom: 34px;
}

.dw-contractor-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.dw-contractor-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dw-contractor-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 100px;
  color: var(--dw-navy);
  background: #ffffff;
  border: 1px solid rgba(45, 128, 183, 0.16);
  box-shadow: 0 12px 30px rgba(0, 0, 56, 0.06);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.dw-contractor-hero-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dw-blue);
}

.dw-contractor-hero-image {
  position: relative;
  z-index: 3;
  padding: 24px;
  border-radius: 38px;
  background: #ffffff;
  border: 1px solid var(--dw-border);
  box-shadow: var(--dw-shadow);
  animation: dwHeroImageFloat 6s ease-in-out infinite;
}

.dw-contractor-hero-image::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(45, 128, 183, 0.12);
  pointer-events: none;
}

.dw-contractor-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

/* ================================
   2. Problems Section
================================ */

.dw-contractor-problems-section {
  padding: 110px 0 90px;
  background: #ffffff;
}

.dw-contractor-problems-section::before {
  content: "PROBLEMS";
  position: absolute;
  left: 50%;
  top: 70px;
  transform: translateX(-50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 56, 0.08);
  font-size: clamp(82px, 12vw, 180px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 8px;
  pointer-events: none;
}

.dw-contractor-problem-card {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 34px 28px 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(45, 128, 183, 0.10) 0%, rgba(45, 128, 183, 0) 34%),
    #ffffff;
  border: 1px solid var(--dw-border);
  box-shadow: 0 18px 55px rgba(0, 0, 56, 0.07);
  overflow: hidden;
  transition: all 0.35s ease;
}

.dw-contractor-problem-card::before {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--dw-navy), var(--dw-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.35s ease;
}

.dw-contractor-problem-card:hover {
  transform: translateY(-10px);
  border-color: rgba(45, 128, 183, 0.24);
  box-shadow: 0 30px 80px rgba(0, 0, 56, 0.13);
}

.dw-contractor-problem-card:hover::before {
  transform: scaleX(1);
}

.dw-contractor-problem-card span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dw-navy), var(--dw-blue));
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(45, 128, 183, 0.24);
}

.dw-contractor-problem-card h3 {
  color: var(--dw-navy);
  font-size: 23px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 14px;
}

.dw-contractor-problem-card p {
  color: var(--dw-text);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ================================
   3. What Website Should Do
================================ */

.dw-contractor-website-work-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(45, 128, 183, 0.10) 0%, rgba(45, 128, 183, 0) 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.dw-contractor-work-image {
  position: relative;
  padding: 18px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid var(--dw-border);
  box-shadow: var(--dw-shadow);
}

.dw-contractor-work-image::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: rgba(45, 128, 183, 0.10);
  z-index: -1;
  transform: rotate(12deg);
}

.dw-contractor-work-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  border-radius: 26px;
}

.dw-contractor-work-content {
  max-width: 610px;
  margin-left: auto;
}

.dw-contractor-work-content h2 {
  color: var(--dw-navy);
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.dw-contractor-work-content > p {
  color: var(--dw-text);
  font-size: 17px;
  line-height: 1.78;
  margin-bottom: 32px;
}

.dw-contractor-work-list {
  display: grid;
  gap: 18px;
}

.dw-contractor-work-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--dw-border);
  box-shadow: 0 16px 45px rgba(0, 0, 56, 0.06);
  transition: all 0.35s ease;
}

.dw-contractor-work-item:hover {
  transform: translateX(8px);
  border-color: rgba(45, 128, 183, 0.24);
  box-shadow: 0 24px 65px rgba(0, 0, 56, 0.11);
}

.dw-contractor-work-item i {
  color: var(--dw-blue);
  font-size: 26px;
  line-height: 1;
  margin-top: 2px;
}

.dw-contractor-work-item h3 {
  color: var(--dw-navy);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 8px;
}

.dw-contractor-work-item p {
  color: var(--dw-text);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ================================
   4. What DelosWeb Builds
================================ */

.dw-contractor-builds-section {
  padding: 110px 0 85px;
  background: var(--dw-navy);
}

.dw-contractor-builds-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(45, 128, 183, 0.24);
  filter: blur(6px);
}

.dw-contractor-builds-section::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(16deg);
}

.dw-contractor-builds-section .dw-section-heading h2,
.dw-contractor-builds-section .dw-section-heading p {
  color: #ffffff;
}

.dw-contractor-builds-section .dw-section-heading p {
  opacity: 0.74;
}

.dw-contractor-build-card {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 34px 28px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: all 0.35s ease;
  margin-bottom: 25px;
}

.dw-contractor-build-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(45, 128, 183, 0.18);
  transition: all 0.35s ease;
}

.dw-contractor-build-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 34px 85px rgba(0, 0, 0, 0.28);
}

.dw-contractor-build-card:hover::before {
  transform: scale(1.25);
}

.dw-contractor-build-card .icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dw-blue);
  background: #ffffff;
  box-shadow: 0 18px 35px rgba(45, 128, 183, 0.24);
}

.dw-contractor-build-card .icon i {
  font-size: 30px;
  line-height: 1;
}

.dw-contractor-build-card h3 {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 12px;
}

.dw-contractor-build-card p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ================================
   5. Industries Section
================================ */

.dw-contractor-industries-section {
  padding: 0px 0;
  background: #ffffff;
}

.dw-contractor-industries-section::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 20%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(45, 128, 183, 0.09);
  filter: blur(5px);
}

.dw-contractor-industries-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.dw-contractor-industries-content h2 {
  color: var(--dw-navy);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.dw-contractor-industries-content p {
  color: var(--dw-text);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 0;
}

.dw-contractor-industries-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 36px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 12%, rgba(45, 128, 183, 0.14) 0%, rgba(45, 128, 183, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--dw-border);
  box-shadow: var(--dw-shadow);
}

.dw-contractor-industries-list span {
  display: inline-flex;
  padding: 13px 17px;
  border-radius: 100px;
  color: var(--dw-navy);
  background: #ffffff;
  border: 1px solid rgba(45, 128, 183, 0.16);
  box-shadow: 0 10px 28px rgba(0, 0, 56, 0.05);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  transition: all 0.3s ease;
}

.dw-contractor-industries-list span:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--dw-navy), var(--dw-blue));
  transform: translateY(-4px);
}

/* ================================
   6. Ready-to-Go vs Custom
================================ */

.dw-contractor-options-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(45, 128, 183, 0.12) 0%, rgba(45, 128, 183, 0) 34%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.dw-contractor-option-card {
  position: relative;
  height: 100%;
  padding: 42px 36px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid var(--dw-border);
  box-shadow: var(--dw-shadow);
  overflow: hidden;
  transition: all 0.35s ease;
}

.dw-contractor-option-card::before {
  content: "";
  position: absolute;
  inset: auto 30px 0 30px;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--dw-navy), var(--dw-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.35s ease;
}

.dw-contractor-option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 90px rgba(0, 0, 56, 0.14);
}

.dw-contractor-option-card:hover::before {
  transform: scaleX(1);
}

.dw-contractor-option-card.featured {
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(45, 128, 183, 0.32) 0%, rgba(45, 128, 183, 0) 34%),
    linear-gradient(135deg, var(--dw-navy) 0%, var(--dw-dark-blue) 100%);
  border-color: rgba(255, 255, 255, 0.14);
}

.dw-contractor-option-card > span {
  display: inline-flex;
  padding: 10px 15px;
  margin-bottom: 22px;
  border-radius: 100px;
  color: var(--dw-blue);
  background: rgba(45, 128, 183, 0.10);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dw-contractor-option-card.featured > span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.dw-contractor-option-card h3 {
  color: var(--dw-navy);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
}

.dw-contractor-option-card.featured h3 {
  color: #ffffff;
}

.dw-contractor-option-card p {
  color: var(--dw-text);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.dw-contractor-option-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.dw-contractor-option-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.dw-contractor-option-card ul li {
  position: relative;
  color: rgba(0, 0, 56, 0.76);
  font-size: 15.5px;
  line-height: 1.55;
  padding-left: 26px;
  margin-bottom: 12px;
}

.dw-contractor-option-card.featured ul li {
  color: rgba(255, 255, 255, 0.82);
}

.dw-contractor-option-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--dw-blue);
  font-weight: 700;
}

.dw-contractor-option-card a {
  display: inline-flex;
  align-items: center;
  color: var(--dw-navy);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dw-contractor-option-card.featured a {
  color: #ffffff;
}

.dw-contractor-option-card a::after {
  content: "";
  width: 36px;
  height: 2px;
  margin-left: 10px;
  background: var(--dw-blue);
  transition: all 0.3s ease;
}

.dw-contractor-option-card a:hover {
  color: var(--dw-blue);
}

.dw-contractor-option-card a:hover::after {
  width: 50px;
}



/* ================================
   8. Portfolio Preview
================================ */

.dw-contractor-portfolio-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(45, 128, 183, 0.12) 0%, rgba(45, 128, 183, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.dw-contractor-portfolio-content {
  max-width: 620px;
}

.dw-contractor-portfolio-content h2 {
  color: var(--dw-navy);
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.dw-contractor-portfolio-content p {
  color: var(--dw-text);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.dw-contractor-portfolio-image {
  position: relative;
  padding: 20px;
  border-radius: 36px;
  background: #ffffff;
  border: 1px solid var(--dw-border);
  box-shadow: var(--dw-shadow);
  animation: dwHeroImageFloat 7s ease-in-out infinite reverse;
}

.dw-contractor-portfolio-image::before {
  content: "";
  position: absolute;
  left: -24px;
  top: -24px;
  width: 130px;
  height: 130px;
  border-radius: 32px;
  background: rgba(45, 128, 183, 0.10);
  z-index: -1;
  transform: rotate(12deg);
}

.dw-contractor-portfolio-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 26px;
}

/* ================================
   9. FAQ Section Adjustments
================================ */

.dw-faq-section {
  position: relative;
  overflow: hidden;
}

.dw-faq-section::before {
  content: "";
  position: absolute;
  top: 12%;
  left: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(45, 128, 183, 0.08);
  filter: blur(5px);
}


/* ======================================================
   CONTRACTOR PROJECTS MARQUEE SECTION - CLEAN IMAGE FOCUS
====================================================== */

.dw-contractor-projects-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0 120px;
  background:
    radial-gradient(circle at 14% 18%, rgba(45, 128, 183, 0.06) 0%, rgba(45, 128, 183, 0) 32%),
    radial-gradient(circle at 88% 82%, rgba(0, 0, 56, 0.035) 0%, rgba(0, 0, 56, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

/* Softer watermark */
.dw-contractor-projects-section::before {
  content: "PORTFOLIO";
  position: absolute;
  top: 78px;
  left: 50%;
  transform: translateX(-50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 56, 0.04);
  font-size: clamp(70px, 11vw, 170px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 8px;
  pointer-events: none;
}

/* Section heading should stay above watermark */
.dw-contractor-projects-section .dw-section-heading {
  position: relative;
  z-index: 4;
  margin-bottom: 52px;
}

/* Marquee wrapper */
.dw-projects-marquee-wrap {
  z-index: 3;
  width: 100%;
  overflow: hidden;
  padding: 18px 0 42px;
}

/* Remove edge fades / lights */
.dw-projects-marquee-wrap::before,
.dw-projects-marquee-wrap::after {
  display: none !important;
}

/* Marquee track */
.dw-projects-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 34px;
  width: max-content;
  animation: dwProjectsMarquee 42s linear infinite;
}

.dw-projects-marquee-wrap:hover .dw-projects-marquee-track {
  animation-play-state: paused;
}

/* Card as link */
a.dw-project-card,
.dw-project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 430px;
  min-width: 430px;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 34px;
  overflow: visible;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

/* Remove the overlay that was covering the image */
.dw-project-card::before {
  display: none !important;
}

/* View project pill */
.dw-project-card::after {
  content: "View Project";
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 5;
  padding: 11px 16px;
  border-radius: 100px;
  color: #000038;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 56, 0.12);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.35px;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.35s ease;
}

/* Hover: only movement + image scale, no white overlay */
.dw-project-card:hover {
  transform: translateY(-10px);
  background: transparent !important;
  box-shadow: none !important;
}

.dw-project-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Image area - no crop, no blue light in front */
.dw-project-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 360px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 28px;
  background: transparent !important;
  box-shadow: 0 0px 45px rgba(255, 255, 255, 0);
  transform: scale(0.96);
  transition: all 0.55s ease;
}

/* Image only grows on hover */
.dw-project-card:hover img {
  transform: scale(1);
  box-shadow: none;
}

/* Project info now goes BELOW the image */
.dw-project-info {
  position: static;
  z-index: 5;
  margin-top: 16px;
  padding: 0 12px;
  text-align: left;
  pointer-events: none;
}

/* Category pill */
.dw-project-info span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 13px;
  border-radius: 100px;
  color: #ffffff;
  background: linear-gradient(135deg, #2d80b7 0%, #4285b5 100%);
  box-shadow: 0 10px 22px rgba(45, 128, 183, 0.18);
  font-size: 10.5px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

/* Project title below image */
.dw-project-info h3 {
  color: #00003800;
  max-width: 100%;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.7px;
  margin: 0;
  text-shadow: none;
  transition: all 0.35s ease;
}

.dw-project-card:hover .dw-project-info h3 {
  color: #2d80b7;
}

/* Bottom button area */
.dw-projects-bottom {
  position: relative;
  z-index: 5;
  margin-top: 34px;
}

/* Animation */

.dw-projects-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 34px;
  width: max-content;
  animation: dwProjectsMarquee 42s linear infinite;
  will-change: transform;
}

.dw-projects-marquee-wrap:hover .dw-projects-marquee-track {
  animation-play-state: paused;
}

@keyframes dwProjectsMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .dw-project-card {
    width: 390px;
    min-width: 390px;
  }

  .dw-project-card img {
    height: 335px;
  }

  .dw-project-info h3 {
    font-size: 25px;
  }
}

@media (max-width: 991px) {
  .dw-contractor-projects-section {
    padding: 90px 0 95px;
  }

  .dw-projects-marquee-track {
    gap: 24px;
    animation-duration: 36s;
  }

  .dw-project-card {
    width: 350px;
    min-width: 350px;
  }

  .dw-project-card img {
    height: 310px;
    border-radius: 26px;
  }

  .dw-project-info {
    margin-top: 14px;
    padding: 0 10px;
  }

  .dw-project-info h3 {
    font-size: 23px;
  }
}

@media (max-width: 767px) {
  .dw-contractor-projects-section {
    padding: 75px 0 80px;
  }

  .dw-project-card {
    width: 310px;
    min-width: 310px;
  }

  .dw-project-card img {
    height: 285px;
    border-radius: 22px;
  }

  .dw-project-card::after {
    top: 18px;
    right: 18px;
    padding: 9px 13px;
    font-size: 11px;
  }

  .dw-project-info {
    margin-top: 12px;
    padding: 0 8px;
  }

  .dw-project-info h3 {
    font-size: 21px;
  }
}

@media (max-width: 425px) {
  .dw-project-card {
    width: 285px;
    min-width: 285px;
  }

  .dw-project-card img {
    height: 265px;
  }

  .dw-project-info h3 {
    font-size: 19px;
  }
}


/* ======================================================
   VIEW MORE PROJECTS BUTTON - PREMIUM
====================================================== */

.dw-projects-btn {
  top: -129px;
  position: relative;
  isolation: isolate;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 210px;
  padding: 18px 32px !important;
  border-radius: 100px !important;
  overflow: hidden;
  border: 1px solid rgba(45, 128, 183, 0.28) !important;
  background: linear-gradient(135deg, #000038 0%, #031b66 48%, #2d80b7 100%) !important;
  color: #ffffff !important;
  box-shadow:
    0 18px 45px rgba(0, 0, 56, 0.18),
    0 10px 28px rgba(45, 128, 183, 0.22);
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.35s ease;
}

.dw-projects-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25) 0%, transparent 28%),
    linear-gradient(135deg, #000038 0%, #031b66 52%, #2d80b7 100%);
}

.dw-projects-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  z-index: -1;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: all 0.55s ease;
}

.dw-projects-btn:hover {
  color: #ffffff !important;
  transform: translateY(-5px);
  box-shadow:
    0 26px 60px rgba(0, 0, 56, 0.24),
    0 16px 38px rgba(45, 128, 183, 0.32);
}

.dw-projects-btn:hover::after {
  left: 125%;
}

.dw-projects-btn span {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000038;
  background: #ffffff;
  transition: all 0.35s ease;
}

.dw-projects-btn span svg {
  width: 12px;
  height: 12px;
  transition: all 0.35s ease;
}

.dw-projects-btn:hover span {
  transform: translateX(4px) rotate(45deg);
  background: #ffffff;
}

.dw-projects-btn:hover span svg {
  transform: scale(1.08);
}

/* Mobile */
@media (max-width: 575px) {
  .dw-projects-btn {
    width: 100%;
    max-width: 310px;
    padding: 17px 24px !important;
    font-size: 13px !important;
  }
}

/* ======================================================
   CONTRACTOR INDUSTRIES CTA SECTION
====================================================== */

.dw-contractor-industries-cta-section {
  position: relative;
  overflow: visible;
  padding: 0px 0 0px;
  background:
    radial-gradient(circle at 12% 20%, rgba(45, 128, 183, 0.08) 0%, rgba(45, 128, 183, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.dw-industries-cta-box {
  position: relative;
  overflow: visible;
  padding: 76px 54px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 90% 18%, rgba(45, 128, 183, 0.20) 0%, rgba(45, 128, 183, 0) 32%),
    radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #000038 0%, #031b66 52%, #000038 100%);
  box-shadow: 0 34px 100px rgba(0, 0, 56, 0.18);
}

.dw-industries-cta-box::before {
  content: "CONTRACTORS";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  font-size: clamp(70px, 10vw, 150px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 8px;
  pointer-events: none;
  white-space: nowrap;
}

/* Decorative shape behind the CTA */
.dw-industries-cta-shape {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 230px;
  height: 230px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(18deg);
  animation: dwIndustriesFloat 8s ease-in-out infinite;
  pointer-events: none;
}

/* Character image floating above CTA - no white circle */
.dw-industries-cta-character {
  position: absolute;
  right: 36px;
  top: -95px;
  z-index: 8;
  width: 185px;
  height: auto;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: block;
  animation: dwIndustriesCharacterFloat 5.5s ease-in-out infinite;
  pointer-events: none;
}

.dw-industries-cta-character::before,
.dw-industries-cta-character::after {
  display: none !important;
  content: none !important;
}

.dw-industries-cta-character img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 22px 35px rgba(0, 0, 56, 0.28));
}

.dw-industries-cta-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.dw-industries-cta-content .ks-section-subtitle {
  color: #ffffff;
  background: rgba(45, 128, 183, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 18px;
  border-radius: 100px;
  display: inline-flex;
  margin-bottom: 22px;
}

.dw-industries-cta-content h2 {
  color: #ffffff;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.dw-industries-cta-content p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.dw-industries-cta-content p strong {
  color: #ffffff;
  font-weight: 800;
}

.dw-industries-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.dw-industries-secondary-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dw-industries-secondary-link::after {
  content: "";
  width: 38px;
  height: 2px;
  margin-left: 10px;
  background: #2d80b7;
  transition: all 0.3s ease;
}

.dw-industries-secondary-link:hover {
  color: #2d80b7;
}

.dw-industries-secondary-link:hover::after {
  width: 54px;
  background: #ffffff;
}

.dw-industries-cta-list {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 13px;
  padding-top: 42px;
  padding-right: 15px;
}

.dw-industries-cta-list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 100px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  transition: all 0.3s ease;
}

.dw-industries-cta-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d80b7;
  box-shadow: 0 0 0 4px rgba(45, 128, 183, 0.16);
}

.dw-industries-cta-list span:hover {
  color: #000038;
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.dw-industries-cta-list span:hover::before {
  background: #000038;
}

.dw-contractor-projects-section {
  padding: 0px 0 70px;
}

/* Button adjustment inside CTA */
.dw-industries-main-btn {
  box-shadow: 0 18px 45px rgba(45, 128, 183, 0.25);
}

/* Animations */
@keyframes dwIndustriesFloat {
  0%, 100% {
    transform: translateY(0) rotate(18deg);
  }

  50% {
    transform: translateY(-16px) rotate(24deg);
  }
}

@keyframes dwIndustriesCharacterFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .dw-industries-cta-box {
    padding: 68px 46px;
  }

  .dw-industries-cta-character {
    right: 24px;
    top: -78px;
    width: 155px;
  }

  .dw-industries-cta-list {
    padding-right: 20px;
  }
}

@media (max-width: 991px) {
  .dw-contractor-industries-cta-section {
    padding: 95px 0 85px;
  }

  .dw-industries-cta-box {
    padding: 88px 34px 56px;
  }

  .dw-industries-cta-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 34px;
  }

  .dw-industries-cta-actions {
    justify-content: center;
  }

  .dw-industries-cta-list {
    justify-content: center;
    padding-top: 0;
    padding-right: 0;
  }

  .dw-industries-cta-character {
    top: -76px;
    right: 50%;
    width: 145px;
    transform: translateX(50%);
  }

  @keyframes dwIndustriesCharacterFloat {
    0%, 100% {
      transform: translateX(50%) translateY(0);
    }

    50% {
      transform: translateX(50%) translateY(10px);
    }
  }
}

@media (max-width: 767px) {
  .dw-contractor-industries-cta-section {
    padding: 85px 0 75px;
  }

  .dw-industries-cta-box {
    padding: 82px 22px 44px;
    border-radius: 30px;
  }

  .dw-industries-cta-content h2 {
    font-size: 34px;
    letter-spacing: -0.8px;
  }

  .dw-industries-cta-content p {
    font-size: 16px;
  }

  .dw-industries-cta-actions {
    flex-direction: column;
  }

  .dw-industries-cta-list {
    gap: 10px;
  }

  .dw-industries-cta-list span {
    padding: 11px 14px;
    font-size: 13px;
  }

  .dw-industries-cta-character {
    top: -64px;
    width: 125px;
  }
}

@media (max-width: 425px) {
  .dw-industries-cta-content h2 {
    font-size: 31px;
  }

  .dw-industries-cta-list span {
    width: 100%;
    justify-content: center;
  }

  .dw-industries-cta-character {
    width: 112px;
    top: -58px;
  }
}

/* ================================
   PROCESS SECTION - CLEAN PREMIUM TIMELINE
================================ */

.dw-contractor-process-section {
  position: relative;
  overflow: hidden;
  padding: 0px 0 105px;
  background:
    radial-gradient(circle at 12% 16%, rgba(45, 128, 183, 0.12) 0%, rgba(45, 128, 183, 0) 34%),
    radial-gradient(circle at 90% 85%, rgba(0, 0, 56, 0.06) 0%, rgba(0, 0, 56, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

/* Soft background word */
.dw-contractor-process-section::before {
  content: "PROCESS";
  position: absolute;
  top: 82px;
  left: 50%;
  transform: translateX(-50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 56, 0.045);
  font-size: clamp(80px, 13vw, 190px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 10px;
  pointer-events: none;
  white-space: nowrap;
}

.dw-contractor-process-section .dw-section-heading {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto 70px;
}

.dw-contractor-process-section .dw-section-heading h2 {
  color: #000038;
}

.dw-contractor-process-section .dw-section-heading p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Timeline wrapper */
.dw-process-timeline {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 28px;
}

/* Main vertical line */
.dw-process-timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 50%;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(45, 128, 183, 0),
    rgba(45, 128, 183, 0.45),
    rgba(45, 128, 183, 0)
  );
  transform: translateX(-50%);
  pointer-events: none;
}

/* Each process row */
.dw-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 94px 1fr;
  align-items: center;
  gap: 34px;
  min-height: 230px;
}

/* Alternate layout */
.dw-process-step:nth-child(even) .dw-process-image {
  grid-column: 3;
}

.dw-process-step:nth-child(even) .dw-process-number {
  grid-column: 2;
}

.dw-process-step:nth-child(even) .dw-process-content {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

/* Number */
.dw-process-number {
  position: relative;
  z-index: 4;
  grid-column: 2;
  width: 94px;
  height: 94px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, #000038 0%, #2d80b7 100%);
  box-shadow:
    0 22px 50px rgba(0, 0, 56, 0.18),
    0 0 0 10px rgba(45, 128, 183, 0.08);
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: all 0.35s ease;
}

.dw-process-number::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 34px;
  border: 1px solid rgba(45, 128, 183, 0.22);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.35s ease;
}

/* Image card */
.dw-process-image {
  position: relative;
  grid-column: 1;
  border-radius: 30px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 56, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 56, 0.10);
  overflow: hidden;
  transition: all 0.4s ease;
}

.dw-process-image::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 56, 0) 50%,
    rgba(0, 0, 56, 0.22) 100%
  );
  pointer-events: none;
  opacity: 0.7;
  transition: all 0.35s ease;
}

.dw-process-image img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  transform: scale(1);
  transition: all 0.6s ease;
}

/* Content card */
.dw-process-content {
  grid-column: 3;
  position: relative;
  padding: 34px 36px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 56, 0.08);
  box-shadow: 0 18px 55px rgba(0, 0, 56, 0.075);
  transition: all 0.35s ease;
}

.dw-process-content::before {
  content: "";
  position: absolute;
  top: 34px;
  width: 44px;
  height: 3px;
  border-radius: 20px;
  background: #2d80b7;
}

.dw-process-step:nth-child(odd) .dw-process-content::before {
  left: -22px;
}

.dw-process-step:nth-child(even) .dw-process-content::before {
  right: -22px;
}

.dw-process-content span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #2d80b7;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.dw-process-content h3 {
  color: #000038;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.dw-process-content p {
  color: rgba(0, 0, 56, 0.68);
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 0;
}

/* Hover effects */
.dw-process-step:hover .dw-process-number {
  transform: translateY(-6px) rotate(-4deg);
  box-shadow:
    0 30px 65px rgba(0, 0, 56, 0.24),
    0 0 0 14px rgba(45, 128, 183, 0.10);
}

.dw-process-step:hover .dw-process-number::before {
  opacity: 1;
  transform: scale(1);
}

.dw-process-step:hover .dw-process-image {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 56, 0.15);
}

.dw-process-step:hover .dw-process-image img {
  transform: scale(1.06);
}

.dw-process-step:hover .dw-process-image::before {
  opacity: 0.25;
}

.dw-process-step:hover .dw-process-content {
  transform: translateY(-8px);
  border-color: rgba(45, 128, 183, 0.20);
  box-shadow: 0 28px 75px rgba(0, 0, 56, 0.12);
}

/* Responsive */
@media (max-width: 1199px) {
  .dw-process-step {
    grid-template-columns: 1fr 80px 1fr;
    gap: 24px;
  }

  .dw-process-number {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    font-size: 23px;
  }

  .dw-process-content {
    padding: 30px 28px;
  }

  .dw-process-content h3 {
    font-size: 26px;
  }

  .dw-process-image img {
    height: 235px;
  }
}

@media (max-width: 991px) {
  .dw-contractor-process-section {
    padding: 90px 0 80px;
  }

  .dw-process-timeline {
    gap: 30px;
  }

  .dw-process-timeline::before {
    left: 40px;
  }

  .dw-process-step,
  .dw-process-step:nth-child(even) {
    grid-template-columns: 80px 1fr;
    gap: 22px;
    align-items: start;
  }

  .dw-process-number,
  .dw-process-step:nth-child(even) .dw-process-number {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 80px;
    height: 80px;
  }

  .dw-process-image,
  .dw-process-step:nth-child(even) .dw-process-image {
    grid-column: 2;
    grid-row: 1;
  }

  .dw-process-content,
  .dw-process-step:nth-child(even) .dw-process-content {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }

  .dw-process-step:nth-child(even) .dw-process-content::before,
  .dw-process-step:nth-child(odd) .dw-process-content::before {
    left: -22px;
    right: auto;
  }

  .dw-process-image img {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .dw-contractor-process-section {
    padding: 75px 0 65px;
  }

  .dw-contractor-process-section .dw-section-heading {
    margin-bottom: 48px;
  }

  .dw-process-timeline::before {
    left: 28px;
  }

  .dw-process-step,
  .dw-process-step:nth-child(even) {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .dw-process-number,
  .dw-process-step:nth-child(even) .dw-process-number {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 16px;
    box-shadow:
      0 18px 40px rgba(0, 0, 56, 0.18),
      0 0 0 7px rgba(45, 128, 183, 0.08);
  }

  .dw-process-image {
    padding: 9px;
    border-radius: 24px;
  }

  .dw-process-image img {
    height: 230px;
    border-radius: 18px;
  }

  .dw-process-image::before {
    inset: 9px;
    border-radius: 18px;
  }

  .dw-process-content {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .dw-process-content::before {
    display: none;
  }

  .dw-process-content h3 {
    font-size: 24px;
  }

  .dw-process-content p {
    font-size: 15.5px;
  }
}

@media (max-width: 425px) {
  .dw-process-image img {
    height: 205px;
  }

  .dw-process-content h3 {
    font-size: 22px;
  }
}

/* ======================================================
   CONTRACTOR CONTACT SECTION - CLEAN IMPACT VERSION
====================================================== */

.dw-contractor-contact-clean-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0 120px;
  background:
    radial-gradient(circle at 12% 18%, rgba(45, 128, 183, 0.10) 0%, rgba(45, 128, 183, 0) 32%),
    radial-gradient(circle at 88% 84%, rgba(0, 0, 56, 0.045) 0%, rgba(0, 0, 56, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.dw-contractor-contact-clean-section::before {
  content: "LET'S BUILD";
  position: absolute;
  left: 50%;
  top: 70px;
  transform: translateX(-50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 56, 0.045);
  font-size: clamp(72px, 11vw, 170px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 8px;
  pointer-events: none;
  white-space: nowrap;
}

.dw-contractor-contact-clean-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

/* ======================================================
   LEFT CONTENT
====================================================== */

.dw-contractor-contact-clean-content {
  position: relative;
}

.dw-contact-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  margin-bottom: 24px;
  border-radius: 100px;
  color: #2d80b7;
  background: rgba(45, 128, 183, 0.10);
  border: 1px solid rgba(45, 128, 183, 0.16);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.dw-contractor-contact-clean-content h2 {
  color: #000038;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -2.4px;
  margin-bottom: 24px;
}

.dw-contractor-contact-clean-content p {
  max-width: 610px;
  color: rgba(0, 0, 56, 0.70);
  font-size: 18px;
  line-height: 1.78;
  margin-bottom: 34px;
}

/* ======================================================
   LEFT POINTS
====================================================== */

.dw-contact-clean-points {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.dw-contact-clean-point {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #000038;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 800;
}

.dw-contact-clean-point i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #000038 0%, #2d80b7 100%);
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(45, 128, 183, 0.22);
}

/* ======================================================
   LEFT CONTACT INFO
====================================================== */

.dw-contact-clean-info {
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.dw-contact-clean-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 56, 0.08);
  box-shadow: 0 16px 45px rgba(0, 0, 56, 0.065);
  text-decoration: none;
  transition: all 0.35s ease;
}

.dw-contact-clean-info-item:hover {
  transform: translateX(8px);
  border-color: rgba(45, 128, 183, 0.24);
  box-shadow: 0 24px 65px rgba(0, 0, 56, 0.12);
}

.dw-contact-clean-info-item i {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #000038;
  font-size: 18px;
}

.dw-contact-clean-info-item small {
  display: block;
  color: rgba(0, 0, 56, 0.48);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.dw-contact-clean-info-item strong {
  display: block;
  color: #000038;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

/* ======================================================
   FORM WRAP + FLOATING CHARACTER
====================================================== */

.dw-contractor-contact-clean-form-wrap {
  position: relative;
  z-index: 5;
  padding-top: 42px;
}

.dw-contact-floating-character {
  position: absolute;
  top: -35px;
  right: 28px;
  z-index: 10;
  width: 140px;
  pointer-events: none;
  animation: dwCharacterFloat 5s ease-in-out infinite;
}

.dw-contact-floating-character img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 35px rgba(0, 0, 56, 0.18));
}

@keyframes dwCharacterFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ======================================================
   FORM CARD
====================================================== */

.dw-contractor-contact-clean-form {
  position: relative;
  overflow: visible;
  padding: 46px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 90% 10%, rgba(45, 128, 183, 0.26) 0%, rgba(45, 128, 183, 0) 34%),
    linear-gradient(135deg, #000038 0%, #031b66 100%);
  box-shadow:
    0 34px 100px rgba(0, 0, 56, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.dw-contractor-contact-clean-form::before {
  content: "";
  position: absolute;
  top: -95px;
  right: -95px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(45, 128, 183, 0.25);
  pointer-events: none;
}

.dw-contractor-contact-clean-form::after {
  content: "";
  position: absolute;
  left: -55px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(18deg);
  pointer-events: none;
}

.dw-contact-form-header {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}

.dw-contact-form-header span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #9bd7ff;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.dw-contact-form-header h3 {
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -1.2px;
  margin-bottom: 12px;
}

.dw-contact-form-header p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 0;
}

.dw-contractor-contact-clean-form form {
  position: relative;
  z-index: 2;
}

.dw-contractor-contact-clean-form .form-group {
  margin-bottom: 16px;
}

/* ======================================================
   FORM FIELDS
====================================================== */

.dw-contractor-contact-clean-form input,
.dw-contractor-contact-clean-form select,
.dw-contractor-contact-clean-form textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #000038;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  padding: 16px 18px;
  outline: none;
  transition: all 0.3s ease;
}

.dw-contractor-contact-clean-form textarea {
  min-height: 135px;
  resize: vertical;
}

.dw-contractor-contact-clean-form input::placeholder,
.dw-contractor-contact-clean-form textarea::placeholder {
  color: rgba(0, 0, 56, 0.42);
}

.dw-contractor-contact-clean-form input:focus,
.dw-contractor-contact-clean-form select:focus,
.dw-contractor-contact-clean-form textarea:focus {
  border-color: #2d80b7;
  box-shadow: 0 0 0 4px rgba(45, 128, 183, 0.18);
}

/* ======================================================
   CONTRACTOR SERVICE CUSTOM DROPDOWN
====================================================== */

.dw-contractor-service-dropdown {
  position: relative;
  z-index: 30;
}

.dw-contractor-service-toggle {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #000038;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  padding: 16px 18px;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dw-contractor-service-toggle:hover,
.dw-contractor-service-dropdown.active .dw-contractor-service-toggle {
  border-color: #2d80b7;
  box-shadow: 0 0 0 4px rgba(45, 128, 183, 0.18);
}

.dw-contractor-service-toggle i {
  color: #2d80b7;
  font-size: 13px;
  transition: transform 0.3s ease;
}

.dw-contractor-service-dropdown.active .dw-contractor-service-toggle i {
  transform: rotate(180deg);
}

.dw-selected-service {
  color: rgba(0, 0, 56, 0.72);
}

.dw-contractor-service-dropdown.has-value .dw-selected-service {
  color: #000038;
}

/* Dropdown Menu */
.dw-contractor-service-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 999;
  max-height: 260px;
  overflow-y: auto;
  padding: 10px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 56, 0.10);
  box-shadow: 0 24px 70px rgba(0, 0, 56, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
}

.dw-contractor-service-dropdown.active .dw-contractor-service-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dw-contractor-service-menu button {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #000038;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  padding: 13px 14px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.dw-contractor-service-menu button:hover,
.dw-contractor-service-menu button.active {
  color: #ffffff;
  background: linear-gradient(135deg, #000038 0%, #2d80b7 100%);
}

/* Dropdown Scrollbar */
.dw-contractor-service-menu::-webkit-scrollbar {
  width: 6px;
}

.dw-contractor-service-menu::-webkit-scrollbar-track {
  background: #eef4fb;
  border-radius: 20px;
}

.dw-contractor-service-menu::-webkit-scrollbar-thumb {
  background: #2d80b7;
  border-radius: 20px;
}

/* ======================================================
   SUBMIT BUTTON
====================================================== */

.dw-contact-clean-submit {
  width: 100%;
  min-height: 62px;
  border: none;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #000038;
  background: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s ease;
}

.dw-contact-clean-submit span {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #000038 0%, #2d80b7 100%);
  transition: all 0.35s ease;
}

.dw-contact-clean-submit:hover {
  color: #ffffff;
  background: #2d80b7;
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(45, 128, 183, 0.30);
}

.dw-contact-clean-submit:hover span {
  background: #ffffff;
  color: #000038;
  transform: translateX(4px) rotate(45deg);
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1199px) {
  .dw-contractor-contact-clean-wrapper {
    gap: 36px;
  }

  .dw-contractor-contact-clean-form {
    padding: 38px;
  }
}

@media (max-width: 991px) {
  .dw-contractor-contact-clean-section {
    padding: 90px 0;
  }

  .dw-contractor-contact-clean-wrapper {
    grid-template-columns: 1fr;
  }

  .dw-contractor-contact-clean-content {
    text-align: center;
  }

  .dw-contractor-contact-clean-content p,
  .dw-contact-clean-info {
    margin-left: auto;
    margin-right: auto;
  }

  .dw-contact-clean-point {
    justify-content: center;
  }

  .dw-contact-clean-info-item:hover {
    transform: translateY(-5px);
  }

  .dw-contact-floating-character {
    right: 50%;
    transform: translateX(50%);
  }

  @keyframes dwCharacterFloat {
    0%, 100% {
      transform: translateX(50%) translateY(0);
    }

    50% {
      transform: translateX(50%) translateY(-10px);
    }
  }
}

@media (max-width: 767px) {
  .dw-contractor-contact-clean-section {
    padding: 75px 0;
  }

  .dw-contractor-contact-clean-content h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .dw-contractor-contact-clean-content p {
    font-size: 16px;
  }

  .dw-contractor-contact-clean-form {
    padding: 30px 20px;
    border-radius: 30px;
  }

  .dw-contact-form-header h3 {
    font-size: 28px;
  }

  .dw-contact-clean-info-item {
    align-items: flex-start;
  }

  .dw-contact-floating-character {
    width: 110px;
    top: -24px;
  }
}

@media (max-width: 425px) {
  .dw-contractor-contact-clean-content h2 {
    font-size: 32px;
  }

  .dw-contact-clean-info-item strong {
    font-size: 15px;
  }

  .dw-contact-clean-submit {
    font-size: 12.5px;
  }
}

