
/* ======================================================
   HOME SERVICES WEBSITE DESIGN PAGE SECTIONS
====================================================== */

.dw-home-services-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  color: #2d80b7;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.dw-home-services-section-head {
  max-width: 920px;
  margin: 0 auto 58px;
  position: relative;
  z-index: 2;
}

.dw-home-services-section-head h2 {
  color: #000038;
  font-size: clamp(38px, 4.7vw, 43px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.dw-home-services-section-head p {
  color: rgba(0, 0, 56, 0.68);
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
}

/* ======================================================
   PROBLEMS SECTION
====================================================== */

.dw-home-services-problems-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0 120px;
  background:
    radial-gradient(circle at 12% 20%, rgba(45, 128, 183, 0.10) 0%, rgba(45, 128, 183, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.dw-home-services-problems-section::before {
  content: "PROBLEMS";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 56, 0.045);
  font-size: clamp(82px, 12vw, 180px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 9px;
  pointer-events: none;
  white-space: nowrap;
}

.dw-home-services-problems-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dw-home-services-problem-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 34px 30px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 56, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 56, 0.07);
  transition: all 0.4s ease;
}

.dw-home-services-problem-card::before {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(45, 128, 183, 0.10);
  transition: all 0.4s ease;
}

.dw-home-services-problem-card:hover {
  transform: translateY(-10px);
  border-color: rgba(45, 128, 183, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 56, 0.12);
}

.dw-home-services-problem-card:hover::before {
  transform: scale(1.35);
  background: rgba(45, 128, 183, 0.16);
}

.dw-home-services-problem-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #000038 0%, #2d80b7 100%);
  font-size: 24px;
  margin-bottom: 28px;
  box-shadow: 0 16px 36px rgba(45, 128, 183, 0.22);
}

.dw-home-services-problem-card > span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(0, 0, 56, 0.08);
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
}

.dw-home-services-problem-card h3 {
  color: #000038;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}

.dw-home-services-problem-card p {
  color: rgba(0, 0, 56, 0.66);
  font-size: 15.5px;
  line-height: 1.72;
  margin: 0;
}

/* ======================================================
   PURPOSE SECTION
====================================================== */

.dw-home-services-purpose-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #ffffff;
}

.dw-home-services-purpose-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.dw-home-services-purpose-image {
  position: relative;
}

.dw-home-services-purpose-image::before {
  content: "";
  position: absolute;
  inset: 34px -22px -22px 34px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(0, 0, 56, 0.09), rgba(45, 128, 183, 0.16));
  z-index: 0;
}

.dw-home-services-purpose-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: 0 34px 90px rgba(0, 0, 56, 0.16);
  animation: dwHomeServiceFloat 6s ease-in-out infinite;
}

.dw-home-services-purpose-content h2 {
  color: #000038;
  font-size: clamp(38px, 4.5vw, 43px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.dw-home-services-purpose-content > p {
  color: rgba(0, 0, 56, 0.68);
  font-size: 18px;
  line-height: 1.76;
  margin-bottom: 34px;
}

.dw-home-services-purpose-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.dw-home-services-purpose-item {
  position: relative;
  padding: 24px 24px 24px 26px;
  border-radius: 24px;
  background: #f8fbff;
  border: 1px solid rgba(0, 0, 56, 0.07);
  transition: all 0.35s ease;
}

.dw-home-services-purpose-item::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  width: 4px;
  height: 38px;
  border-radius: 10px;
  background: #2d80b7;
}

.dw-home-services-purpose-item:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: rgba(45, 128, 183, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 56, 0.09);
}

.dw-home-services-purpose-item strong {
  display: block;
  color: #000038;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 9px;
}

.dw-home-services-purpose-item p {
  color: rgba(0, 0, 56, 0.62);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

/* ======================================================
   INDUSTRIES SECTION
====================================================== */

.dw-home-services-industries-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0 120px;
  background:
    radial-gradient(circle at 90% 16%, rgba(45, 128, 183, 0.10) 0%, rgba(45, 128, 183, 0) 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.dw-home-services-industries-top {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.dw-home-services-industries-title h2 {
  color: #000038;
  font-size: clamp(38px, 4.6vw, 43px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -2px;
  margin: 0;
}

.dw-home-services-industries-text p {
  color: rgba(0, 0, 56, 0.68);
  font-size: 18px;
  line-height: 1.78;
  margin: 0;
}

.dw-home-services-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.dw-home-services-industry-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 30px 26px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 56, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 56, 0.065);
  transition: all 0.4s ease;
}

.dw-home-services-industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000038 0%, #2d80b7 100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.dw-home-services-industry-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 28px 75px rgba(0, 0, 56, 0.14);
}

.dw-home-services-industry-card:hover::before {
  opacity: 1;
}

.dw-home-services-industry-card i,
.dw-home-services-industry-card h3,
.dw-home-services-industry-card p {
  position: relative;
  z-index: 2;
}

.dw-home-services-industry-card i {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d80b7;
  background: rgba(45, 128, 183, 0.10);
  font-size: 23px;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.dw-home-services-industry-card h3 {
  color: #000038;
  font-size: 21px;
  line-height: 1.22;
  font-weight: 800;
  margin-bottom: 12px;
  transition: all 0.4s ease;
}

.dw-home-services-industry-card p {
  color: rgba(0, 0, 56, 0.64);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
  transition: all 0.4s ease;
}

.dw-home-services-industry-card:hover i {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.dw-home-services-industry-card:hover h3,
.dw-home-services-industry-card:hover p {
  color: #ffffff;
}

/* ======================================================
   WHAT DELOSWEB BUILDS SECTION
====================================================== */

.dw-home-services-builds-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: #ffffff;
}

.dw-home-services-builds-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.dw-home-services-builds-content h2 {
  color: #000038;
  font-size: clamp(38px, 4.5vw, 43px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.dw-home-services-builds-content > p {
  color: rgba(0, 0, 56, 0.68);
  font-size: 18px;
  line-height: 1.76;
  margin-bottom: 34px;
}

.dw-home-services-builds-list {
  display: grid;
  gap: 18px;
}

.dw-home-services-builds-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: #f8fbff;
  border: 1px solid rgba(0, 0, 56, 0.07);
  transition: all 0.35s ease;
}

.dw-home-services-builds-item:hover {
  transform: translateX(8px);
  background: #ffffff;
  border-color: rgba(45, 128, 183, 0.22);
  box-shadow: 0 20px 55px rgba(0, 0, 56, 0.09);
}

.dw-home-services-builds-item i {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #000038 0%, #2d80b7 100%);
  font-size: 20px;
  box-shadow: 0 14px 32px rgba(45, 128, 183, 0.22);
}

.dw-home-services-builds-item h3 {
  color: #000038;
  font-size: 20px;
  line-height: 1.24;
  font-weight: 800;
  margin-bottom: 8px;
}

.dw-home-services-builds-item p {
  color: rgba(0, 0, 56, 0.64);
  font-size: 14.8px;
  line-height: 1.65;
  margin: 0;
}

.dw-home-services-builds-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dw-home-services-builds-device {
  position: relative;
  z-index: 2;
  width: 100%;
}

.dw-home-services-builds-device::before {
  content: "";
  position: absolute;
  inset: 45px 20px -28px -20px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(45, 128, 183, 0.14), rgba(0, 0, 56, 0.08));
  z-index: -1;
}

.dw-home-services-builds-device img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: 0 34px 95px rgba(0, 0, 56, 0.18);
  animation: dwHomeServiceFloat 6.5s ease-in-out infinite;
}

.dw-home-services-builds-floating-card {
  position: absolute;
  z-index: 4;
  padding: 18px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 56, 0.08);
  box-shadow: 0 18px 55px rgba(0, 0, 56, 0.14);
}

.dw-home-services-builds-floating-card strong {
  display: block;
  color: #000038;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 5px;
}

.dw-home-services-builds-floating-card span {
  display: block;
  color: rgba(0, 0, 56, 0.58);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.dw-home-services-builds-floating-card.card-one {
  top: 80px;
  left: -18px;
}

.dw-home-services-builds-floating-card.card-two {
  right: -18px;
  bottom: 110px;
}

/* ======================================================
   READY-TO-GO VS CUSTOM SECTION
====================================================== */

.dw-home-services-options-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0 120px;
  background:
    radial-gradient(circle at 12% 16%, rgba(45, 128, 183, 0.10) 0%, rgba(45, 128, 183, 0) 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.dw-home-services-options-section::before {
  content: "CHOOSE";
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 56, 0.045);
  font-size: clamp(86px, 13vw, 190px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 10px;
  pointer-events: none;
  white-space: nowrap;
}

.dw-home-services-options-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.dw-home-services-option-card {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 56, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 56, 0.09);
  transition: all 0.4s ease;
}

.dw-home-services-option-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(45, 128, 183, 0.10);
  transition: all 0.4s ease;
}

.dw-home-services-option-card.featured {
  background:
    radial-gradient(circle at 92% 10%, rgba(45, 128, 183, 0.25) 0%, rgba(45, 128, 183, 0) 35%),
    linear-gradient(135deg, #000038 0%, #031b66 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.dw-home-services-option-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 95px rgba(0, 0, 56, 0.16);
}

.dw-home-services-option-number {
  position: absolute;
  top: 34px;
  right: 36px;
  color: rgba(0, 0, 56, 0.08);
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
}

.dw-home-services-option-card.featured .dw-home-services-option-number {
  color: rgba(255, 255, 255, 0.12);
}

.dw-home-services-option-card > span {
  display: inline-flex;
  color: #2d80b7;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.dw-home-services-option-card.featured > span {
  color: #9bd7ff;
}

.dw-home-services-option-card h3 {
  max-width: 560px;
  color: #000038;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.dw-home-services-option-card.featured h3 {
  color: #ffffff;
}

.dw-home-services-option-card p {
  color: rgba(0, 0, 56, 0.66);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.dw-home-services-option-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.dw-home-services-option-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}

.dw-home-services-option-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(0, 0, 56, 0.76);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.dw-home-services-option-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  color: #2d80b7;
}

.dw-home-services-option-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.dw-home-services-option-card.featured li::before {
  color: #9bd7ff;
}

.dw-home-services-option-card a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000038;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dw-home-services-option-card.featured a {
  color: #ffffff;
}

.dw-home-services-option-card a:hover {
  color: #2d80b7;
  gap: 14px;
}

.dw-home-services-option-card.featured a:hover {
  color: #9bd7ff;
}

/* ======================================================
   ANIMATIONS
====================================================== */

@keyframes dwHomeServiceFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1199px) {
  .dw-home-services-problems-grid,
  .dw-home-services-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dw-home-services-purpose-wrapper,
  .dw-home-services-builds-wrapper {
    gap: 44px;
  }
}

@media (max-width: 991px) {
  .dw-home-services-problems-section,
  .dw-home-services-purpose-section,
  .dw-home-services-industries-section,
  .dw-home-services-builds-section,
  .dw-home-services-options-section {
    padding: 90px 0;
  }

  .dw-home-services-purpose-wrapper,
  .dw-home-services-builds-wrapper,
  .dw-home-services-industries-top {
    grid-template-columns: 1fr;
  }

  .dw-home-services-purpose-content,
  .dw-home-services-builds-content,
  .dw-home-services-industries-title,
  .dw-home-services-industries-text {
    text-align: center;
  }

  .dw-home-services-purpose-content > p,
  .dw-home-services-builds-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .dw-home-services-builds-wrapper {
    display: flex;
    flex-direction: column-reverse;
  }

  .dw-home-services-options-grid {
    grid-template-columns: 1fr;
  }

  .dw-home-services-purpose-image img,
  .dw-home-services-builds-device img {
    min-height: 480px;
  }

  .dw-home-services-builds-visual {
    min-height: auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .dw-home-services-section-head {
    margin-bottom: 42px;
  }

  .dw-home-services-section-head h2,
  .dw-home-services-purpose-content h2,
  .dw-home-services-industries-title h2,
  .dw-home-services-builds-content h2 {
    font-size: 35px;
    letter-spacing: -1px;
  }

  .dw-home-services-section-head p,
  .dw-home-services-purpose-content > p,
  .dw-home-services-industries-text p,
  .dw-home-services-builds-content > p {
    font-size: 16px;
  }

  .dw-home-services-problems-grid,
  .dw-home-services-industries-grid,
  .dw-home-services-purpose-list {
    grid-template-columns: 1fr;
  }

  .dw-home-services-problem-card,
  .dw-home-services-industry-card,
  .dw-home-services-option-card {
    padding: 30px 24px;
    border-radius: 28px;
  }

  .dw-home-services-purpose-image img,
  .dw-home-services-builds-device img {
    min-height: 400px;
    border-radius: 30px;
  }

  .dw-home-services-builds-floating-card {
    display: none;
  }

  .dw-home-services-builds-item {
    text-align: left;
  }

  .dw-home-services-option-card h3 {
    font-size: 30px;
  }
}

@media (max-width: 426px) {
  .dw-home-services-section-head h2,
  .dw-home-services-purpose-content h2,
  .dw-home-services-industries-title h2,
  .dw-home-services-builds-content h2 {
    font-size: 30px;
  }

  .dw-home-services-builds-item {
    flex-direction: column;
  }
}

@media (max-width: 376px) {
  .dw-home-services-section-head h2,
  .dw-home-services-purpose-content h2,
  .dw-home-services-industries-title h2,
  .dw-home-services-builds-content h2,
  .dw-home-services-option-card h3,
  .dw-home-contact-form-header h3 {
    font-size: 25px;
  }

}

@media (max-width: 320px) {
  .dw-home-services-section-head h2,
  .dw-home-services-purpose-content h2,
  .dw-home-services-industries-title h2,
  .dw-home-services-builds-content h2,
  .dw-home-services-problem-card h3,
  .dw-home-services-option-card h3,
  .dw-home-contact-form-header h3 {
    font-size: 20px;
  }

}


/* ======================================================
   HOME SERVICES TITLES FONT WEIGHT FIX
   Use 700 for all main titles
====================================================== */

.dw-home-services-section-head h2,
.dw-home-services-purpose-content h2,
.dw-home-services-industries-title h2,
.dw-home-services-builds-content h2,
.dw-home-services-problem-card h3,
.dw-home-services-purpose-item strong,
.dw-home-services-industry-card h3,
.dw-home-services-builds-item h3,
.dw-home-services-option-card h3 {
  font-weight: 700;

}

/* Optional: keep small subtitles readable but not too heavy */
.dw-home-services-subtitle,
.dw-home-services-option-card > span {
  font-weight: 700;
}

/* Optional: reduce number thickness too */
.dw-home-services-problem-card > span,
.dw-home-services-option-number {
  font-weight: 700;
}

/* ======================================================
   HOME SERVICES CONTACT SECTION
====================================================== */

.dw-home-contact-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0 120px;
  background:
    radial-gradient(circle at 10% 18%, rgba(45, 128, 183, 0.10) 0%, rgba(45, 128, 183, 0) 32%),
    radial-gradient(circle at 88% 80%, rgba(0, 0, 56, 0.055) 0%, rgba(0, 0, 56, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.dw-home-contact-section::before {
  content: "HOME SERVICE";
  position: absolute;
  left: 50%;
  top: 72px;
  transform: translateX(-50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 56, 0.045);
  font-size: clamp(62px, 10vw, 155px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 8px;
  pointer-events: none;
  white-space: nowrap;
}

.dw-home-contact-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

/* Left content */
.dw-home-contact-content {
  position: relative;
}

.dw-home-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: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.dw-home-contact-content h2 {
  color: #000038;
  font-size: clamp(42px, 5vw, 43px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -2.2px;
  margin-bottom: 24px;
}

.dw-home-contact-content p {
  max-width: 630px;
  color: rgba(0, 0, 56, 0.70);
  font-size: 18px;
  line-height: 1.78;
  margin-bottom: 34px;
}

/* Proof grid */
.dw-home-contact-proof-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.dw-home-contact-proof {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 56, 0.08);
  box-shadow: 0 16px 45px rgba(0, 0, 56, 0.06);
  transition: all 0.35s ease;
}

.dw-home-contact-proof:hover {
  transform: translateX(8px);
  border-color: rgba(45, 128, 183, 0.24);
  box-shadow: 0 24px 65px rgba(0, 0, 56, 0.12);
}

.dw-home-contact-proof i {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #000038 0%, #2d80b7 100%);
  font-size: 18px;
  box-shadow: 0 14px 32px rgba(45, 128, 183, 0.22);
}

.dw-home-contact-proof strong {
  display: block;
  color: #000038;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 6px;
}

.dw-home-contact-proof span {
  display: block;
  color: rgba(0, 0, 56, 0.62);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 500;
}

/* Mini CTA */
.dw-home-contact-mini-cta {
  position: relative;
  overflow: hidden;
  max-width: 620px;
  padding: 22px 24px;
  margin-bottom: 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(45, 128, 183, 0.22) 0%, rgba(45, 128, 183, 0) 34%),
    #000038;
  box-shadow: 0 20px 60px rgba(0, 0, 56, 0.15);
}

.dw-home-contact-mini-cta span {
  display: block;
  color: #9bd7ff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.dw-home-contact-mini-cta strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

/* Contact info */
.dw-home-contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 620px;
}

.dw-home-contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 56, 0.08);
  box-shadow: 0 16px 45px rgba(0, 0, 56, 0.06);
  text-decoration: none;
  transition: all 0.35s ease;
}

.dw-home-contact-info-item:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 128, 183, 0.24);
  box-shadow: 0 24px 65px rgba(0, 0, 56, 0.12);
}

.dw-home-contact-info-item i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #000038;
  font-size: 17px;
}

.dw-home-contact-info-item small {
  display: block;
  color: rgba(0, 0, 56, 0.48);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.dw-home-contact-info-item strong {
  display: block;
  color: #000038;
  font-size: 15.5px;
  line-height: 1.2;
  font-weight: 700;
}

/* Form wrap */
.dw-home-contact-form-wrap {
  position: relative;
  z-index: 5;
  padding-top: 46px;
}

.dw-home-contact-floating {
  position: absolute;
  top: -34px;
  right: 28px;
  z-index: 10;
  width: 136px;
  pointer-events: none;
  animation: dwHomeContactFloat 5s ease-in-out infinite;
}

.dw-home-contact-floating img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 56, 0.20));
}

@keyframes dwHomeContactFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

/* Form card */
.dw-home-contact-form-card {
  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.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.dw-home-contact-form-card::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-home-contact-form-card::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-home-contact-form-header {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}

.dw-home-contact-form-header span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #9bd7ff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.dw-home-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-home-contact-form-header p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 0;
}

.dw-home-contact-form-card form {
  position: relative;
  z-index: 2;
}

.dw-home-contact-form-card .form-group {
  margin-bottom: 16px;
}

/* Form fields */
.dw-home-contact-form-card input,
.dw-home-contact-form-card select,
.dw-home-contact-form-card 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-home-contact-form-card textarea {
  min-height: 135px;
  resize: vertical;
}

.dw-home-contact-form-card input::placeholder,
.dw-home-contact-form-card textarea::placeholder {
  color: rgba(0, 0, 56, 0.42);
}

.dw-home-contact-form-card input:focus,
.dw-home-contact-form-card select:focus,
.dw-home-contact-form-card textarea:focus {
  border-color: #2d80b7;
  box-shadow: 0 0 0 4px rgba(45, 128, 183, 0.18);
}

/* Home service custom dropdown */
.dw-home-service-dropdown {
  position: relative;
  z-index: 30;
}

.dw-home-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-home-service-toggle:hover,
.dw-home-service-dropdown.active .dw-home-service-toggle {
  border-color: #2d80b7;
  box-shadow: 0 0 0 4px rgba(45, 128, 183, 0.18);
}

.dw-home-service-toggle i {
  color: #2d80b7;
  font-size: 13px;
  transition: transform 0.3s ease;
}

.dw-home-service-dropdown.active .dw-home-service-toggle i {
  transform: rotate(180deg);
}

.dw-home-selected-service {
  color: rgba(0, 0, 56, 0.72);
}

.dw-home-service-dropdown.has-value .dw-home-selected-service {
  color: #000038;
}

/* Dropdown menu */
.dw-home-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-home-service-dropdown.active .dw-home-service-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dw-home-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-home-service-menu button:hover,
.dw-home-service-menu button.active {
  color: #ffffff;
  background: linear-gradient(135deg, #000038 0%, #2d80b7 100%);
}

.dw-home-service-menu::-webkit-scrollbar {
  width: 6px;
}

.dw-home-service-menu::-webkit-scrollbar-track {
  background: #eef4fb;
  border-radius: 20px;
}

.dw-home-service-menu::-webkit-scrollbar-thumb {
  background: #2d80b7;
  border-radius: 20px;
}

/* Submit button */
.dw-home-contact-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: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s ease;
}

.dw-home-contact-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-home-contact-submit:hover {
  color: #ffffff;
  background: #2d80b7;
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(45, 128, 183, 0.30);
}

.dw-home-contact-submit:hover span {
  background: #ffffff;
  color: #000038;
  transform: translateX(4px) rotate(45deg);
}

/* Responsive */
@media (max-width: 1199px) {
  .dw-home-contact-wrapper {
    gap: 38px;
  }

  .dw-home-contact-form-card {
    padding: 38px;
  }

  .dw-home-contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .dw-home-contact-section {
    padding: 90px 0;
  }

  .dw-home-contact-wrapper {
    grid-template-columns: 1fr;
  }

  .dw-home-contact-content {
    text-align: center;
  }

  .dw-home-contact-content p,
  .dw-home-contact-mini-cta,
  .dw-home-contact-info {
    margin-left: auto;
    margin-right: auto;
  }

  .dw-home-contact-proof:hover,
  .dw-home-contact-info-item:hover {
    transform: translateY(-5px);
  }

  .dw-home-contact-floating {
    right: 50%;
    transform: translateX(50%);
  }

  @keyframes dwHomeContactFloat {
    0%, 100% {
      transform: translateX(50%) translateY(0) rotate(-2deg);
    }

    50% {
      transform: translateX(50%) translateY(-10px) rotate(2deg);
    }
  }
}

@media (max-width: 767px) {
  .dw-home-contact-section {
    padding: 75px 0;
  }

  .dw-home-contact-content h2 {
    font-size: 35px;
    letter-spacing: -1px;
  }

  .dw-home-contact-content p {
    font-size: 16px;
  }

  .dw-home-contact-proof {
    text-align: left;
  }

  .dw-home-contact-form-card {
    padding: 30px 20px;
    border-radius: 30px;
  }

  .dw-home-contact-form-header h3 {
    font-size: 28px;
  }

  .dw-home-contact-floating {
    width: 110px;
    top: -24px;
  }
}

@media (max-width: 426px) {
  .dw-home-contact-content h2 {
    font-size: 30px;
  }

  .dw-home-contact-info-item {
    align-items: flex-start;
  }

  .dw-home-contact-info-item strong {
    font-size: 15px;
  }

  .dw-home-contact-submit {
    font-size: 12.5px;
  }
}

@media (max-width: 376px) {
  .dw-home-contact-content h2 {
    font-size: 25px;
  }
}

@media (max-width: 320px) {
  .dw-home-contact-content h2 {
    font-size: 20px;
  }
}

/* ======================================================
   HERO SECTION
====================================================== */

.dw-home-services-hero-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 110px;
  background:
    radial-gradient(circle at 14% 18%, rgba(45, 128, 183, 0.12) 0%, rgba(45, 128, 183, 0) 34%),
    radial-gradient(circle at 88% 80%, rgba(0, 0, 56, 0.07) 0%, rgba(0, 0, 56, 0) 36%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.dw-home-services-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}

.dw-home-services-hero-content h1 {
  color: #000038;
  font-size: clamp(40px, 3.7vw, 66px);
  line-height: 1.04;

  letter-spacing: -2px;
  margin-bottom: 22px;
}

.dw-home-services-hero-content p {
  color: rgba(0, 0, 56, 0.70);
  font-size: 18px;
  line-height: 1.78;
  max-width: 600px;
  margin-bottom: 32px;
}

.dw-home-services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.dw-home-services-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 100px;
  background: #2d80b7;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 16px 38px rgba(45, 128, 183, 0.28);
}

.dw-home-services-hero-btn:hover {
  background: #000038;
  color: #ffffff;
  transform: translateY(-2px);
}

.dw-home-services-hero-btn span {
  display: inline-flex;
}

.dw-home-services-hero-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #000038;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dw-home-services-hero-secondary::after {
  content: "";
  width: 36px;
  height: 2px;
  margin-left: 10px;
  background: #2d80b7;
  transition: all 0.3s ease;
}

.dw-home-services-hero-secondary:hover {
  color: #2d80b7;
}

.dw-home-services-hero-secondary:hover::after {
  width: 50px;
}

.dw-home-services-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dw-home-services-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 100px;
  color: #000038;
  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-home-services-hero-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d80b7;
}

.dw-home-services-hero-visual {
  position: relative;
  z-index: 2;
  padding: 22px;
  border-radius: 36px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 56, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 56, 0.10);
}

.dw-home-services-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
}

@media (max-width: 991px) {
  .dw-home-services-hero-section {
    padding: 90px 0 80px;
  }

  .dw-home-services-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dw-home-services-hero-visual {
    order: -1;
  }
}

@media (max-width: 425px) {
  .dw-home-services-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dw-home-services-hero-btn {
    justify-content: center;
  }
}
