/*
 * Yes We Care Community Services
 * Premium responsive redesign — 2026
 *
 * This stylesheet intentionally sits after main.css so the original
 * template remains intact and the redesign can be rolled back safely.
 */

:root {
  --font-default: "Manrope", "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-primary: "Manrope", "Montserrat", system-ui, sans-serif;
  --font-secondary: "Manrope", "Montserrat", system-ui, sans-serif;
  --color-default: #172b3e;
  --color-primary: #49b8e8;
  --color-secondary: #0b2e4f;
  --ywc-navy: #0b2e4f;
  --ywc-navy-deep: #071e33;
  --ywc-sky: #49b8e8;
  --ywc-sky-dark: #1896cf;
  --ywc-red: #d7193f;
  --ywc-purple: #72257f;
  --ywc-ink: #172b3e;
  --ywc-muted: #617184;
  --ywc-surface: #f5f8fc;
  --ywc-surface-blue: #edf7fc;
  --ywc-white: #ffffff;
  --ywc-border: #dce8f1;
  --ywc-shadow-sm: 0 10px 30px rgba(11, 46, 79, 0.08);
  --ywc-shadow: 0 22px 60px rgba(11, 46, 79, 0.12);
  --ywc-radius-sm: 14px;
  --ywc-radius: 24px;
  --ywc-radius-lg: 32px;
}

html {
  scroll-padding-top: 110px;
}

body {
  background: var(--ywc-white);
  color: var(--ywc-ink);
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--ywc-white);
  background: var(--ywc-sky-dark);
}

a {
  color: var(--ywc-sky-dark);
}

a:hover,
a:focus {
  color: var(--ywc-navy);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ywc-navy);
  font-family: var(--font-primary);
  letter-spacing: -0.025em;
}

img {
  max-width: 100%;
}

section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.container,
.container-xl {
  --bs-gutter-x: 2rem;
}

.section-header {
  max-width: 790px;
  margin: 0 auto;
  padding-bottom: clamp(34px, 5vw, 58px);
}

.section-header h2,
.section-header h3 {
  color: var(--ywc-navy);
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
}

.section-header h2 {
  padding-bottom: 24px;
}

.section-header h2::after {
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ywc-sky), var(--ywc-purple));
}

.section-header p {
  color: var(--ywc-muted);
  font-size: 17px;
  line-height: 1.75;
}

/* Header and navigation */
.header {
  min-height: 108px;
  padding: 10px 0;
  background: linear-gradient(135deg, rgba(7, 30, 51, 0.94), rgba(11, 46, 79, 0.86));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(4, 19, 32, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.header.sticked {
  min-height: 88px;
  padding: 8px 0;
  background: rgba(7, 30, 51, 0.97);
  box-shadow: 0 16px 45px rgba(4, 19, 32, 0.2);
}

.header .container-xl {
  max-width: 1260px;
  gap: 28px;
}

.header .brand-logo {
  position: relative;
  z-index: 2;
}

.header .brand-logo img {
  width: 158px;
  height: 76px;
  padding: 6px 8px;
  object-fit: contain;
  background: var(--ywc-white);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 19px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease;
}

.header.sticked .brand-logo img {
  width: 138px;
  height: 64px;
  border-radius: 16px;
}

@media (min-width: 1280px) {
  .navbar > ul {
    gap: 4px;
  }

  .navbar > ul > li > a,
  .navbar > ul > li > a:focus {
    position: relative;
    min-height: 46px;
    padding: 11px 13px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .navbar > ul > li > a:not(.btn)::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 5px;
    left: 14px;
    height: 2px;
    border-radius: 99px;
    background: var(--ywc-sky);
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .navbar > ul > li > a:hover,
  .navbar > ul > li > a.active,
  .navbar > ul > li:hover > a {
    color: var(--ywc-white);
    background: rgba(255, 255, 255, 0.07);
  }

  .navbar > ul > li > a:hover::after,
  .navbar > ul > li > a.active::after,
  .navbar > ul > li:hover > a::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .navbar .dropdown > ul {
    left: 0;
    width: min(430px, calc(100vw - 40px));
    padding: 12px;
    border: 1px solid var(--ywc-border);
    border-radius: 18px;
    box-shadow: var(--ywc-shadow);
  }

  .navbar .dropdown ul a,
  .navbar .dropdown ul a:focus {
    padding: 11px 13px;
    border-radius: 10px;
    color: var(--ywc-ink);
    font-size: 13px;
    font-weight: 600;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--ywc-navy);
    background: var(--ywc-surface-blue);
  }
}

.navbar a.btn,
.navbar a.btn:focus {
  min-height: 46px;
  margin: 0 8px;
  padding: 11px 20px;
  border: 1px solid var(--ywc-sky);
  border-radius: 999px !important;
  color: var(--ywc-navy-deep) !important;
  background: var(--ywc-sky);
  box-shadow: 0 10px 26px rgba(73, 184, 232, 0.2);
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 800;
}

.navbar a.btn:hover {
  margin: 0 8px;
  padding: 11px 20px;
  border-color: var(--ywc-white);
  color: var(--ywc-white) !important;
  background: transparent;
  transform: translateY(-1px);
}

.navbar > ul > li:last-child img {
  display: block;
  width: 100px;
  height: 60px;
  margin-left: 6px;
  padding: 4px 7px;
  object-fit: contain;
  background: var(--ywc-white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.mobile-nav-show {
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-show,
.mobile-nav-hide {
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(73, 184, 232, 0.55);
  outline-offset: 3px;
}

/* Homepage hero */
#hero.hero {
  min-height: 900px;
  padding: 190px 0 100px;
  background-position: center center;
  isolation: isolate;
}

#hero.hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 30, 51, 0.99) 0%, rgba(7, 30, 51, 0.95) 38%, rgba(7, 30, 51, 0.68) 68%, rgba(7, 30, 51, 0.42) 100%);
}

#hero.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  width: auto;
  background:
    radial-gradient(circle at 15% 18%, rgba(73, 184, 232, 0.2), transparent 27%),
    radial-gradient(circle at 52% 86%, rgba(114, 37, 127, 0.16), transparent 27%);
  pointer-events: none;
}

#hero .container {
  max-width: 1240px;
}

#hero .hero-content {
  max-width: 760px;
}

#hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: var(--ywc-white);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#hero .hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ywc-sky);
  box-shadow: 0 0 0 6px rgba(73, 184, 232, 0.13);
}

#hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--ywc-white);
  font-family: var(--font-primary);
  font-size: clamp(2.75rem, 5.25vw, 4.7rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

#hero h1 + br {
  display: none;
}

#hero .hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 9px 14px 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--ywc-white) !important;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

#hero .hero-trust img {
  width: 34px;
  height: 34px;
  margin: 0;
}

#hero .hero-trust b,
#hero .hero-trust i {
  font-style: normal;
}

#hero blockquote {
  max-width: 720px;
  margin: 0 0 30px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--ywc-sky);
  border-radius: 0 20px 20px 0;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(7, 30, 51, 0.34);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}

#hero blockquote h4 {
  margin: 0 0 12px;
  color: var(--ywc-white);
  font-size: 22px;
  font-weight: 750;
}

#hero blockquote p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
}

#hero blockquote p:last-child {
  margin-bottom: 0;
}

#hero .hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

#hero .btn-get-started,
#hero .btn-watch-video {
  min-height: 52px;
  margin: 0;
  padding: 13px 24px;
  border: 1px solid var(--ywc-sky);
  border-radius: 999px;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

#hero .btn-get-started {
  color: var(--ywc-navy-deep);
  background: var(--ywc-sky);
  box-shadow: 0 14px 28px rgba(73, 184, 232, 0.24);
}

#hero .btn-get-started:hover {
  color: var(--ywc-white);
  background: var(--ywc-sky-dark);
  transform: translateY(-2px);
}

#hero .btn-watch-video {
  color: var(--ywc-white);
  background: rgba(255, 255, 255, 0.07);
}

#hero .btn-watch-video i {
  margin-right: 9px;
  color: var(--ywc-sky);
  font-size: 21px;
}

#hero .btn-watch-video:hover {
  color: var(--ywc-white);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

/* Short brand statement beneath the homepage hero */
.home-intro {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: 64px 0 20px;
  overflow: visible;
  background:
    radial-gradient(circle at 95% 8%, rgba(73, 184, 232, 0.12), transparent 24%),
    var(--ywc-surface);
}

.home-intro .container {
  max-width: 1180px;
}

.home-intro-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: center;
  padding: 30px 36px;
  border: 1px solid var(--ywc-border);
  border-radius: var(--ywc-radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--ywc-shadow);
  backdrop-filter: blur(14px);
}

.home-intro-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 19px;
  color: var(--ywc-navy-deep);
  background: linear-gradient(145deg, #80d2f3, var(--ywc-sky));
  box-shadow: 0 12px 28px rgba(73, 184, 232, 0.25);
  font-size: 29px;
}

.home-intro-card p {
  margin: 0;
  color: #3c566d;
  font-size: 15px;
  line-height: 1.72;
}

/* Inner-page mastheads */
.breadcrumbs {
  min-height: 420px;
  padding: 175px 0 76px;
  background-position: center;
  isolation: isolate;
}

.breadcrumbs::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 30, 51, 0.96), rgba(11, 46, 79, 0.78) 55%, rgba(7, 30, 51, 0.58));
}

.breadcrumbs::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 22% 30%, rgba(73, 184, 232, 0.22), transparent 25%),
    linear-gradient(180deg, transparent 65%, rgba(7, 30, 51, 0.25));
}

.breadcrumbs .container {
  align-items: flex-start !important;
  max-width: 1240px;
}

.breadcrumbs h1 {
  margin: 0 0 18px;
  color: var(--ywc-white);
  font-family: var(--font-primary);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.breadcrumbs ol {
  align-items: center;
  margin: 0;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--ywc-sky);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  backdrop-filter: blur(8px);
}

/* Why choose us */
#why-us.why-us {
  padding: clamp(48px, 6vw, 82px) 0 clamp(64px, 8vw, 104px);
  background:
    radial-gradient(circle at 95% 8%, rgba(73, 184, 232, 0.12), transparent 24%),
    var(--ywc-surface);
}

#why-us .section-header {
  max-width: 860px;
}

#why-us .section-header h3 {
  margin-bottom: 20px;
}

#why-us .section-header p {
  margin: 8px 0 0;
}

#why-us .container > .row {
  overflow: hidden;
  border: 1px solid var(--ywc-border);
  border-radius: var(--ywc-radius-lg);
  background: var(--ywc-white);
  box-shadow: var(--ywc-shadow);
}

#why-us .img-bg {
  min-height: 600px;
  background-position: center;
}

#why-us .slides {
  display: flex;
  align-items: center;
  min-height: 600px;
  background: var(--ywc-white);
}

#why-us .swiper {
  width: 100%;
  margin: 0;
  padding: 70px 76px 52px;
}

#why-us .swiper-slide {
  width: 100% !important;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

#why-us .swiper-slide-active {
  opacity: 1;
}

#why-us .item h3 {
  margin-bottom: 18px !important;
  color: var(--ywc-navy);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
}

#why-us .item h4 {
  margin-bottom: 16px !important;
  color: #334f68;
  font-family: var(--font-default);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.72;
}

#why-us .item p {
  color: var(--ywc-muted);
  line-height: 1.75;
}

#why-us .swiper-pagination {
  margin-top: 32px;
}

#why-us .swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  opacity: 1;
  background: #c8d9e6;
  transition: width 0.25s ease, background 0.25s ease;
}

#why-us .swiper-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--ywc-sky);
}

#why-us .swiper-button-prev,
#why-us .swiper-button-next {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ywc-border);
  border-radius: 50%;
  background: var(--ywc-white);
  box-shadow: var(--ywc-shadow-sm);
}

#why-us .swiper-button-prev {
  left: 24px;
}

#why-us .swiper-button-next {
  right: 24px;
}

#why-us .swiper-button-prev::after,
#why-us .swiper-button-next::after {
  color: var(--ywc-navy);
  font-size: 17px;
  font-weight: 800;
}

/* Homepage service carousel */
#testimonials.testimonials {
  overflow: hidden;
  background: var(--ywc-white);
}

#testimonials .container {
  max-width: 1260px;
}

#testimonials .slides-3 {
  overflow: hidden;
  padding: 8px 4px 48px;
}

#testimonials .swiper-wrapper {
  align-items: stretch;
}

#testimonials .swiper-slide,
#testimonials .swiper-slide-active,
#testimonials .swiper-slide-next {
  height: auto;
  opacity: 1;
  transform: none;
}

#testimonials .service-card {
  height: calc(100% - 28px) !important;
  min-height: 625px;
  margin: 12px 10px 16px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--ywc-border);
  border-radius: var(--ywc-radius);
  background: var(--ywc-white);
  box-shadow: var(--ywc-shadow-sm);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

#testimonials .service-card:hover {
  border-color: rgba(73, 184, 232, 0.58);
  box-shadow: var(--ywc-shadow);
  transform: translateY(-7px);
}

#testimonials .service-card .post-box {
  position: relative;
  height: 100%;
  padding-bottom: 26px;
}

#testimonials .service-card .post-box::before {
  content: "NDIS SUPPORT";
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: var(--ywc-white);
  background: rgba(7, 30, 51, 0.78);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

#testimonials .service-card .post-img {
  height: 235px;
  margin: 0 0 24px;
  overflow: hidden;
  background: var(--ywc-surface-blue);
}

#testimonials .service-card .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

#testimonials .service-card:hover .post-img img {
  transform: scale(1.045);
}

#testimonials .service-card .post-title,
#testimonials .service-card p,
#testimonials .service-card .readmore {
  margin-right: 25px;
  margin-left: 25px;
}

#testimonials .service-card .post-title {
  margin-bottom: 13px;
  color: var(--ywc-navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.025em;
}

#testimonials .service-card p {
  margin-top: 0;
  margin-bottom: 22px;
  color: var(--ywc-muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

#testimonials .service-card .readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--ywc-sky-dark);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 800;
}

#testimonials .swiper-pagination {
  position: relative;
  margin-top: 26px;
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  opacity: 1;
  background: #c8d9e6;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: var(--ywc-sky);
}

/* Homepage NDIS information cards */
#new-sections,
#new-sections2,
#new-sections3,
#new-sections4 {
  padding: 34px 0;
  background: var(--ywc-surface);
}

#new-sections {
  padding-top: clamp(64px, 8vw, 100px);
}

#new-sections4 {
  padding-bottom: clamp(64px, 8vw, 100px);
}

#new-sections .row,
#new-sections2 .row,
#new-sections3 .row,
#new-sections4 .row {
  overflow: hidden;
  border: 1px solid var(--ywc-border);
  border-radius: var(--ywc-radius-lg);
  background: var(--ywc-white);
  box-shadow: var(--ywc-shadow-sm);
}

#new-sections2 .row,
#new-sections4 .row {
  background: linear-gradient(135deg, #f0f9fd, #ffffff 72%);
}

.new-image,
.new-image2 {
  height: 100%;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
}

.new-image img,
.new-image2 img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.new-section-header,
.new-section-header2 {
  padding: clamp(38px, 5vw, 70px);
}

.new-section-header h3,
.new-section-header2 h3,
.new-sections2 h3 {
  margin-bottom: 20px;
  color: var(--ywc-navy);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.new-section-header p,
.new-section-header2 p {
  color: var(--ywc-muted);
  font-size: 16px;
  line-height: 1.75;
}

.new-section-header ul,
.new-section-header2 ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.new-section-header ul li,
.new-section-header2 ul li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 33px;
  color: #334f68;
  line-height: 1.65;
}

.new-section-header ul li::before,
.new-section-header2 ul li::before {
  content: "\F26B";
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--ywc-sky-dark);
  font-family: "bootstrap-icons";
  font-size: 19px;
}

/* Shared visual feature blocks */
.page-about #about,
.page-services #about {
  background:
    radial-gradient(circle at 90% 10%, rgba(73, 184, 232, 0.11), transparent 25%),
    var(--ywc-white);
}

.page-about #about .row,
.page-services #about .row {
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--ywc-border);
  border-radius: var(--ywc-radius-lg);
  background: var(--ywc-white);
  box-shadow: var(--ywc-shadow);
}

.page-about #about .col-lg-4,
.page-services #about .col-lg-4 {
  padding: 0;
}

.page-about #about img,
.page-services #about img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.page-about #about .col-lg-8,
.page-services #about .col-lg-8 {
  display: flex;
  align-items: center;
}

.page-about #about .content,
.page-services #about .content {
  padding: clamp(36px, 5vw, 68px) !important;
}

.page-about #about .content h3,
.page-services #about .content h3 {
  margin-bottom: 22px;
  color: var(--ywc-navy);
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.14;
}

.page-about #about .content p,
.page-services #about .content p {
  margin: 0 0 25px;
  color: var(--ywc-muted);
  font-size: 17px;
  line-height: 1.8;
}

.page-about #about .content li {
  margin-bottom: 10px;
  padding-left: 32px;
  color: #334f68;
  font-size: 15px;
  line-height: 1.65;
}

.page-about #about .content ul i {
  top: 1px;
  color: var(--ywc-sky-dark);
}

/* Services page detail cards */
.services-cards {
  background:
    radial-gradient(circle at 5% 5%, rgba(73, 184, 232, 0.12), transparent 18%),
    var(--ywc-surface);
}

.services-cards .container {
  max-width: 1240px;
}

.service-detail-list {
  counter-reset: service-detail;
  row-gap: 44px;
}

.service-anchor {
  scroll-margin-top: 120px;
  counter-increment: service-detail;
}

.services-cards .service-detail-list .card-item {
  overflow: hidden;
  border: 1px solid var(--ywc-border);
  border-radius: var(--ywc-radius-lg);
  background: var(--ywc-white);
  box-shadow: var(--ywc-shadow);
}

.services-cards .service-detail-list .card-bg {
  min-height: 620px;
  background-position: center;
  transition: transform 0.45s ease;
}

.services-cards .service-detail-content {
  position: relative;
  max-height: none;
  padding: clamp(34px, 4.5vw, 64px);
  overflow: visible;
}

.services-cards .service-detail-content::before {
  content: "0" counter(service-detail);
  display: inline-flex;
  min-width: 47px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 999px;
  color: var(--ywc-navy);
  background: var(--ywc-surface-blue);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.services-cards .service-detail-content h3 {
  margin-bottom: 18px;
  color: var(--ywc-navy);
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.services-cards .service-detail-content h4 {
  margin: 26px 0 12px;
  color: var(--ywc-navy);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.services-cards .service-detail-content p {
  color: var(--ywc-muted);
  line-height: 1.75;
}

.services-cards .service-detail-content ul {
  padding: 0;
  list-style: none;
}

.services-cards .service-detail-content li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 28px;
  color: #334f68;
  line-height: 1.62;
}

.services-cards .service-detail-content li::before {
  content: "\F26B";
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--ywc-sky-dark);
  font-family: "bootstrap-icons";
  font-size: 17px;
}

.services-cards .service-detail-content .service-cta {
  margin-top: 28px;
  padding: 16px 18px;
  border: 0;
  border-radius: var(--ywc-radius-sm);
  color: var(--ywc-navy);
  background: var(--ywc-surface-blue);
  font-weight: 700;
}

.services-cards .service-detail-content .service-cta a {
  font-weight: 800;
}

@media (min-width: 1200px) {
  .services-cards .service-anchor:nth-child(even) .card-bg {
    order: 2;
  }

  .services-cards .service-anchor:nth-child(even) .service-detail-content {
    order: 1;
  }
}

/* Contact page */
.page-contact .contact {
  background:
    radial-gradient(circle at 5% 18%, rgba(73, 184, 232, 0.14), transparent 22%),
    var(--ywc-surface);
}

.page-contact .contact::before {
  display: none;
}

.page-contact .contact .container {
  max-width: 1180px;
}

.page-contact .contact > .container > .row {
  align-items: stretch;
  justify-content: center !important;
  overflow: hidden;
  border: 1px solid var(--ywc-border);
  border-radius: var(--ywc-radius-lg);
  background: var(--ywc-white);
  box-shadow: var(--ywc-shadow);
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.page-contact .contact > .container > .row > .col-lg-5 {
  position: relative;
  width: 42%;
  padding: clamp(38px, 5vw, 66px);
  background:
    radial-gradient(circle at 90% 5%, rgba(73, 184, 232, 0.24), transparent 28%),
    linear-gradient(145deg, var(--ywc-navy), var(--ywc-navy-deep));
}

.page-contact .contact > .container > .row > .col-lg-5::before {
  content: "Contact Us";
  display: block;
  margin-bottom: 32px;
  color: var(--ywc-white);
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.page-contact .contact .info-item {
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-contact .contact .info-item + .info-item {
  margin-top: 4px;
}

.page-contact .contact .info-item:last-child {
  border-bottom: 0;
}

.page-contact .contact .info-item i {
  width: 46px;
  height: 46px;
  margin-right: 16px;
  color: var(--ywc-navy-deep);
  background: var(--ywc-sky);
  box-shadow: 0 10px 24px rgba(73, 184, 232, 0.2);
}

.page-contact .contact .info-item h4 {
  margin-bottom: 6px;
  color: var(--ywc-sky);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-contact .contact .info-item p,
.page-contact .contact .info-item a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.page-contact .contact .info-item a:hover {
  color: var(--ywc-white);
}

.page-contact .contact > .container > .row > .col-lg-6 {
  width: 58%;
  padding: clamp(38px, 5vw, 66px);
}

.contact .php-email-form {
  padding: 0;
}

.contact .php-email-form .form-group {
  padding-bottom: 10px;
}

.contact .php-email-form input,
.contact .php-email-form select,
.contact .php-email-form textarea,
.modal .php-email-form input,
.modal .php-email-form select,
.modal .php-email-form textarea {
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid #cedde8;
  border-radius: 13px !important;
  color: var(--ywc-ink);
  background-color: #fbfdff;
  box-shadow: none;
  font-family: var(--font-default);
  font-size: 14px;
}

.contact .php-email-form textarea,
.modal .php-email-form textarea {
  min-height: 145px;
  resize: vertical;
}

.contact .php-email-form input:focus,
.contact .php-email-form select:focus,
.contact .php-email-form textarea:focus,
.modal .php-email-form input:focus,
.modal .php-email-form select:focus,
.modal .php-email-form textarea:focus {
  border-color: var(--ywc-sky);
  box-shadow: 0 0 0 4px rgba(73, 184, 232, 0.14);
}

.contact .php-email-form button[type="submit"],
.modal .php-email-form button[type="submit"] {
  min-height: 52px;
  padding: 13px 30px;
  border: 1px solid var(--ywc-sky);
  border-radius: 999px;
  color: var(--ywc-navy-deep);
  background: var(--ywc-sky);
  box-shadow: 0 12px 25px rgba(73, 184, 232, 0.2);
  font-family: var(--font-primary);
  font-weight: 800;
}

.contact .php-email-form button[type="submit"]:hover,
.modal .php-email-form button[type="submit"]:hover {
  color: var(--ywc-white);
  background: var(--ywc-sky-dark);
  transform: translateY(-1px);
}

.php-email-form .error-message,
.php-email-form .sent-message,
.php-email-form .loading {
  display: none;
  padding: 15px;
  border-radius: 10px;
  font-weight: 700;
}

.php-email-form .error-message {
  color: #fff;
  background: #df1529;
  text-align: left;
}

.php-email-form .sent-message {
  color: #fff;
  background: #059652;
  text-align: center;
}

.php-email-form .loading {
  background: #fff;
  color: var(--ywc-navy);
  text-align: center;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

/* About team */
.page-about .team {
  background: var(--ywc-white);
}

.page-about .team .row {
  justify-content: center;
  gap: 24px 0;
}

.page-about .team .row > .col-lg-3:first-child,
.page-about .team .row > .col-lg-3:last-child {
  display: none;
}

.page-about .team .team-member {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--ywc-border);
  border-radius: var(--ywc-radius);
  background: var(--ywc-white);
  box-shadow: var(--ywc-shadow-sm);
}

.page-about .team .member-monogram {
  display: grid;
  min-height: 190px;
  place-items: center;
  color: var(--ywc-white);
  background:
    radial-gradient(circle at 80% 12%, rgba(73, 184, 232, 0.32), transparent 30%),
    linear-gradient(145deg, var(--ywc-navy), var(--ywc-navy-deep));
  font-family: var(--font-primary);
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.page-about .team .member-info {
  padding: 24px 26px;
}

.page-about .team .member-info h4 {
  color: var(--ywc-navy);
  font-size: 20px;
}

.page-about .team .member-info span {
  color: var(--ywc-sky-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Call to action */
.call-to-action {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--ywc-white) !important;
}

.call-to-action > .container {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  padding: clamp(46px, 7vw, 82px) clamp(24px, 6vw, 70px);
  border-radius: var(--ywc-radius-lg);
  background:
    linear-gradient(110deg, rgba(7, 30, 51, 0.98), rgba(11, 46, 79, 0.88)),
    url("../img/contact_us_3.jpg") center / cover no-repeat;
  box-shadow: var(--ywc-shadow);
}

.call-to-action > .container::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -80px;
  width: 280px;
  height: 280px;
  border: 48px solid rgba(73, 184, 232, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.call-to-action .row {
  position: relative;
  z-index: 1;
}

.call-to-action .col-lg-6 {
  width: min(100%, 790px);
}

.call-to-action h3 {
  margin-bottom: 14px;
  color: var(--ywc-white);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.call-to-action h3:first-child {
  margin-bottom: 10px;
  color: var(--ywc-sky);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.call-to-action h3:nth-child(2) {
  margin-bottom: 22px;
  color: var(--ywc-white);
  font-size: clamp(2.15rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.call-to-action p {
  color: rgba(255, 255, 255, 0.78);
}

.call-to-action .contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0;
}

.call-to-action .contact-links a,
.call-to-action .col-lg-6 > h3:not(:first-child):not(:nth-child(2)) a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--ywc-white) !important;
  background: rgba(255, 255, 255, 0.08);
  font-size: 15px;
  font-weight: 750;
}

.call-to-action .cta-primary {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 13px 25px;
  border-radius: 999px;
  color: var(--ywc-navy-deep);
  background: var(--ywc-sky);
  box-shadow: 0 12px 26px rgba(73, 184, 232, 0.22);
  font-family: var(--font-primary);
  font-weight: 800;
}

.call-to-action .cta-primary:hover {
  color: var(--ywc-white);
  background: var(--ywc-sky-dark);
  transform: translateY(-2px);
}

/* Contact modal */
.modal {
  backdrop-filter: blur(7px);
}

.modal-dialog {
  max-width: 720px;
}

.modal-content {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 24px !important;
  background: var(--ywc-navy) !important;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.modal-header {
  padding: 22px 26px;
  border-bottom-color: rgba(255, 255, 255, 0.13);
}

.modal-title {
  color: var(--ywc-white);
  font-size: 25px;
  font-weight: 800;
}

.modal-body {
  padding: 28px !important;
}

.modal .php-email-form .row {
  --bs-gutter-x: 1rem;
}

.modal .btn-close {
  opacity: 0.85;
}

/* Footer */
.footer {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  background: var(--ywc-navy-deep);
}

.footer::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--ywc-sky) 0 72%, var(--ywc-purple) 72% 88%, var(--ywc-red) 88%);
}

.footer .footer-content {
  padding: 76px 0 48px;
  background:
    radial-gradient(circle at 8% 12%, rgba(73, 184, 232, 0.14), transparent 22%),
    radial-gradient(circle at 92% 88%, rgba(114, 37, 127, 0.12), transparent 24%),
    var(--ywc-navy-deep);
}

.footer .footer-content .footer-info .logo {
  margin-bottom: 3px;
  line-height: 1.15;
}

.footer .footer-content .footer-info .logo + .logo {
  margin-bottom: 14px;
}

.footer .footer-content .footer-info .logo span {
  color: var(--ywc-white);
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.footer .footer-content .footer-info .logo + .logo span {
  color: var(--ywc-sky);
  font-size: 22px;
}

.footer .footer-content .footer-info > img {
  width: 52px;
  height: 52px;
  margin: 18px 10px 18px 0;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  vertical-align: middle;
}

.footer .footer-content .footer-info > b {
  color: var(--ywc-white);
  font-size: 13px;
}

.footer .footer-content .footer-info p {
  max-width: 410px;
  color: rgba(255, 255, 255, 0.67);
  font-family: var(--font-default);
  font-size: 14px;
  line-height: 1.75;
}

.footer .footer-content h4,
.footer .footer-content .footer-contact h4 a {
  margin-bottom: 20px;
  color: var(--ywc-white);
  font-size: 16px;
  font-weight: 800;
}

.footer .footer-content h4::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--ywc-sky);
}

.footer .footer-content .footer-links ul li {
  padding: 7px 0;
}

.footer .footer-content .footer-links ul i {
  margin-top: 4px;
  color: var(--ywc-sky);
}

.footer .footer-content .footer-links ul a,
.footer .footer-content .footer-contact,
.footer .footer-content .footer-contact p,
.footer .footer-content .footer-contact address,
.footer .footer-content .footer-contact a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.footer .footer-content .footer-links ul a:hover,
.footer .footer-content .footer-contact a:hover {
  color: var(--ywc-sky);
}

.footer .footer-content .footer-contact address {
  font-style: normal;
  line-height: 1.7;
}

.footer .footer-legal {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #051827;
}

.footer .footer-legal .copyright,
.footer .footer-legal .credits,
.footer .footer-legal + .text-end,
.footer .footer-legal .text-end {
  color: rgba(255, 255, 255, 0.6);
}

.footer .footer-legal + .text-end {
  padding: 0 15px 8px;
  background: #051827;
}

/* Floating controls */
.scroll-top {
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 15px;
  background: var(--ywc-sky-dark);
  box-shadow: 0 12px 28px rgba(11, 46, 79, 0.24);
}

.scroll-top:hover {
  background: var(--ywc-navy);
  transform: translateY(-2px);
}

.mobile-contact-bar {
  display: none;
}

/* Tablet */
@media (max-width: 1279px) {
  .header,
  .header.sticked {
    min-height: 88px;
    padding: 8px 0;
  }

  .header .brand-logo img,
  .header.sticked .brand-logo img {
    width: 132px;
    height: 64px;
    border-radius: 16px;
  }

  .mobile-nav-show {
    display: flex;
    color: var(--ywc-white);
  }

  .header .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    left: auto;
    width: min(430px, 92vw);
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100vh;
    max-width: none;
    padding: 0;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
  }

  .mobile-nav-active .header .navbar {
    right: 0;
  }

  .header .navbar > ul {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 104px 20px 32px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background:
      radial-gradient(circle at 85% 10%, rgba(73, 184, 232, 0.18), transparent 24%),
      var(--ywc-navy-deep);
  }

  .navbar > ul > li {
    margin-bottom: 5px;
  }

  .navbar a,
  .navbar a:focus {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar li:hover > a {
    color: var(--ywc-white);
    background: rgba(255, 255, 255, 0.08);
  }

  .navbar a.btn,
  .navbar a.btn:focus,
  .navbar a.btn:hover {
    justify-content: center;
    margin: 8px 0;
    padding: 12px 18px;
  }

  .navbar > ul > li:last-child img {
    width: 112px;
    height: 66px;
    margin: 14px 0 0;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    margin: 8px 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
  }

  .navbar .dropdown ul a {
    min-height: 42px;
    padding: 9px 11px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.45;
  }

  .mobile-nav-hide {
    top: 21px;
    right: 21px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-nav-hide:not(.d-none) {
    display: flex !important;
  }

  #hero.hero {
    min-height: auto;
    padding: 155px 0 88px;
  }

  #hero.hero::before {
    background: linear-gradient(90deg, rgba(7, 30, 51, 0.97), rgba(7, 30, 51, 0.82));
  }

  #why-us .img-bg,
  #why-us .slides {
    min-height: 500px;
  }

  #why-us .swiper {
    padding: 58px 58px 46px;
  }

  .new-image,
  .new-image2,
  .new-image img,
  .new-image2 img {
    min-height: 390px;
  }

  #new-sections2 .img-bg,
  #new-sections4 .img-bg {
    order: -1;
  }

  .services-cards .service-detail-list .card-bg {
    min-height: 390px;
  }
}

@media (max-width: 991px) {
  .breadcrumbs {
    min-height: 350px;
    padding: 145px 0 62px;
  }

  #why-us .img-bg {
    min-height: 390px;
  }

  #why-us .slides {
    min-height: 430px;
  }

  .page-contact .contact > .container > .row > .col-lg-5,
  .page-contact .contact > .container > .row > .col-lg-6 {
    width: 100%;
  }

  .page-contact .contact > .container > .row > .col-lg-5 {
    padding-bottom: 44px;
  }

  .page-about #about img,
  .page-services #about img {
    min-height: 330px;
    max-height: 430px;
  }

  .footer .footer-content {
    padding-top: 60px;
  }
}

/* Phone */
@media (max-width: 767px) {
  body {
    padding-bottom: 72px;
    font-size: 15px;
  }

  section {
    padding: 54px 0;
  }

  .container,
  .container-xl {
    --bs-gutter-x: 1.5rem;
  }

  .section-header {
    padding-bottom: 32px;
  }

  .section-header h2,
  .section-header h3 {
    font-size: 2rem;
  }

  .header,
  .header.sticked {
    min-height: 78px;
  }

  .header .brand-logo img,
  .header.sticked .brand-logo img {
    width: 112px;
    height: 56px;
    border-radius: 14px;
  }

  .mobile-nav-show {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 25px;
  }

  .navbar {
    width: 100%;
  }

  #hero.hero {
    min-height: auto;
    padding: 128px 0 68px;
    background-position: 66% center;
  }

  #hero.hero::before {
    background: linear-gradient(90deg, rgba(7, 30, 51, 0.98), rgba(7, 30, 51, 0.88));
  }

  #hero .hero-eyebrow {
    margin-bottom: 17px;
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.07em;
  }

  #hero h1 {
    margin-bottom: 17px;
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    letter-spacing: -0.045em;
  }

  #hero .hero-trust {
    margin-bottom: 18px;
    font-size: 12px;
  }

  #hero blockquote {
    padding: 21px 20px;
    border-radius: 0 16px 16px 0;
  }

  #hero blockquote h4 {
    font-size: 19px;
  }

  #hero blockquote p {
    font-size: 14px;
    line-height: 1.65;
  }

  #hero .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  #hero .btn-get-started,
  #hero .btn-watch-video {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .home-intro {
    margin-top: 0;
    padding: 36px 0 0;
  }

  .home-intro-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 21px;
    border-radius: 19px;
  }

  .home-intro-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    font-size: 24px;
  }

  .breadcrumbs {
    min-height: 310px;
    padding: 124px 0 52px;
    background-position: center;
  }

  .breadcrumbs h1 {
    font-size: 2.7rem;
  }

  #why-us.why-us {
    padding: 58px 0;
  }

  #why-us .container > .row,
  #new-sections .row,
  #new-sections2 .row,
  #new-sections3 .row,
  #new-sections4 .row,
  .page-about #about .row,
  .page-services #about .row,
  .services-cards .service-detail-list .card-item,
  .page-contact .contact > .container > .row {
    border-radius: 22px;
  }

  #why-us .img-bg {
    min-height: 290px;
  }

  #why-us .slides {
    min-height: 410px;
  }

  #why-us .swiper {
    padding: 38px 25px 34px;
  }

  #why-us .item h3 {
    font-size: 1.55rem;
  }

  #why-us .item h4 {
    font-size: 16px;
  }

  #why-us .swiper-button-prev,
  #why-us .swiper-button-next {
    display: none;
  }

  #testimonials .slides-3 {
    padding-right: 0;
    padding-left: 0;
  }

  #testimonials .service-card {
    min-height: 0;
    height: calc(100% - 24px) !important;
    margin: 10px 4px 14px;
  }

  #testimonials .service-card .post-img {
    height: 220px;
  }

  #new-sections,
  #new-sections2,
  #new-sections3,
  #new-sections4 {
    padding: 18px 0;
  }

  #new-sections {
    padding-top: 58px;
  }

  #new-sections4 {
    padding-bottom: 58px;
  }

  .new-image,
  .new-image2,
  .new-image img,
  .new-image2 img {
    min-height: 255px;
    max-height: 300px;
  }

  .new-section-header,
  .new-section-header2 {
    padding: 30px 23px 34px;
  }

  .new-section-header h3,
  .new-section-header2 h3,
  .new-sections2 h3 {
    font-size: 1.75rem;
  }

  .page-about #about .content,
  .page-services #about .content {
    padding: 30px 23px 35px !important;
  }

  .page-about #about img,
  .page-services #about img {
    min-height: 255px;
    max-height: 300px;
  }

  .services-cards .service-detail-list .card-bg {
    min-height: 250px;
  }

  .services-cards .service-detail-content {
    padding: 30px 23px 34px;
  }

  .services-cards .service-detail-content h3 {
    font-size: 1.6rem;
    overflow-wrap: anywhere;
  }

  .page-contact .contact > .container > .row > .col-lg-5,
  .page-contact .contact > .container > .row > .col-lg-6 {
    padding: 32px 23px;
  }

  .page-contact .contact > .container > .row > .col-lg-5::before {
    margin-bottom: 20px;
  }

  .contact .php-email-form input,
  .contact .php-email-form select,
  .contact .php-email-form textarea,
  .modal .php-email-form input,
  .modal .php-email-form select,
  .modal .php-email-form textarea {
    font-size: 16px;
  }

  .call-to-action {
    padding: 58px 12px;
  }

  .call-to-action > .container {
    padding: 44px 20px;
    border-radius: 22px;
  }

  .call-to-action .contact-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .call-to-action .contact-links a {
    justify-content: center;
    overflow-wrap: anywhere;
  }

  .footer .footer-content {
    padding: 52px 0 32px;
  }

  .footer .footer-content .footer-info,
  .footer .footer-content .footer-links,
  .footer .footer-content .footer-contact {
    text-align: left !important;
  }

  .footer .footer-content h4::after {
    margin-right: 0;
    margin-left: 0;
  }

  .scroll-top {
    right: 14px;
    bottom: 84px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 996;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 8px max(12px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 30, 51, 0.97);
    box-shadow: 0 -14px 36px rgba(7, 30, 51, 0.22);
    backdrop-filter: blur(14px);
  }

  .mobile-contact-bar a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 13px;
    color: var(--ywc-white);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-contact-bar a:first-child {
    color: var(--ywc-navy-deep);
    background: var(--ywc-sky);
  }

  .mobile-contact-bar a:last-child {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
  }

  .modal-dialog {
    margin: 12px;
  }

  .modal-content {
    border-radius: 20px !important;
  }

  .modal-header {
    padding: 18px 20px;
  }

  .modal-body {
    padding: 20px !important;
  }

  .modal .g-recaptcha {
    margin-left: 0 !important;
  }
}

@media (max-width: 380px) {
  #hero h1 {
    font-size: 2.3rem;
  }

  #hero .hero-actions {
    grid-template-columns: 1fr;
  }

  .breadcrumbs h1 {
    font-size: 2.35rem;
  }

  .g-recaptcha {
    width: 274px !important;
    transform: scale(0.9);
    transform-origin: left top;
  }

  .services-cards .service-detail-content,
  .page-contact .contact > .container > .row > .col-lg-5,
  .page-contact .contact > .container > .row > .col-lg-6 {
    padding-right: 19px;
    padding-left: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
