:root {
  --red: #d71920;
  --dark-red: #a91117;
  --blue: #0b4ea2;
  --dark-blue: #07366f;
  --soft-blue: #eaf3ff;
  --soft-red: #fff0f0;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --dark: #17202a;
  --gray: #5d6978;
  --line: #dfe6ef;
  --shadow: 0 18px 45px rgba(10, 32, 66, 0.13);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-bar {
  background: linear-gradient(90deg, var(--dark-blue), var(--blue));
  color: var(--white);
  font-size: 0.92rem;
  padding: 9px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(223, 230, 239, 0.85);
}

.nav {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-wrap {
  width: clamp(54px, 7vw, 72px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--red);
  background: var(--white);
  box-shadow: 0 10px 22px rgba(215, 25, 32, 0.18);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  display: block;
  background: var(--white);
  padding: 3px;
}

.logo-placeholder {
  width: 100%;
  height: 100%;
  display: none;
  place-items: center;
  font-size: 0.7rem;
  text-align: center;
  font-weight: 800;
  color: var(--blue);
  padding: 6px;
  line-height: 1.1;
}

.brand-text strong {
  display: block;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  color: var(--dark-blue);
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.brand-text span {
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: var(--dark-blue);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(215, 25, 32, 0.22);
}

.btn-red:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(11, 78, 162, 0.22);
}

.btn-blue:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--white);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-2px);
}

section {
  padding: 82px 0;
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  background: rgba(215, 25, 32, 0.09);
  border: 1px solid rgba(215, 25, 32, 0.16);
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: var(--dark-blue);
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.section-heading p {
  color: var(--gray);
  font-size: 1.04rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(215, 25, 32, 0.17), transparent 32%),
    radial-gradient(circle at bottom right, rgba(11, 78, 162, 0.20), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #edf5ff 100%);
  padding: 84px 0 70px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(11, 78, 162, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(215, 25, 32, 0.05) 25%, transparent 25%);
  background-size: 46px 46px;
  opacity: 0.55;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.02;
  color: var(--dark-blue);
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  color: var(--gray);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.language-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark-blue);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(10, 32, 66, 0.07);
  margin-bottom: 20px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 660px;
}

.trust-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(223, 230, 239, 0.9);
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 8px 22px rgba(10, 32, 66, 0.07);
}

.trust-card strong {
  display: block;
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1.1;
}

.trust-card span {
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  background: var(--white);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 320px;
  border-radius: 24px;
  background-color: var(--soft-blue);
  background-image:
    linear-gradient(rgba(7, 54, 111, 0.16), rgba(7, 54, 111, 0.16)),
    url("images/main-work-photo.jpg");
  background-position: center, center;
  background-size: cover, contain;
  background-repeat: no-repeat, no-repeat;
  overflow: hidden;
  position: relative;
}

.floating-card {
  position: absolute;
  left: -18px;
  bottom: 42px;
  background: var(--red);
  color: var(--white);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 16px 32px rgba(215, 25, 32, 0.28);
  max-width: 230px;
  font-weight: 800;
}

.floating-card span {
  display: block;
  font-size: 0.88rem;
  opacity: 0.9;
  font-weight: 600;
  margin-top: 4px;
}

/* Services */
.services {
  background:
    radial-gradient(circle at top right, rgba(215, 25, 32, 0.09), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 28px rgba(10, 32, 66, 0.08);
  transition: 0.22s ease;
  min-height: 230px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--soft-blue);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  margin-bottom: 16px;
}

.service-card h3 {
  color: var(--dark-blue);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.98rem;
}

/* About */
.split-section {
  background:
    radial-gradient(circle at bottom left, rgba(11, 78, 162, 0.13), transparent 32%),
    linear-gradient(135deg, #eef6ff 0%, #fff7f7 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: center;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 320px;
  border-radius: 30px;
  background-color: var(--soft-blue);
  background-image:
    linear-gradient(rgba(7, 54, 111, 0.10), rgba(7, 54, 111, 0.10)),
    url("images/team-or-project-photo.jpg");
  background-position: center, center;
  background-size: cover, contain;
  background-repeat: no-repeat, no-repeat;
  box-shadow: var(--shadow);
  border: 8px solid var(--white);
  overflow: hidden;
}

.about-content {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(223,230,239,0.9);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 14px 34px rgba(10, 32, 66, 0.08);
}

.about-content h2 {
  color: var(--dark-blue);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.about-content p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.check-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px;
  font-weight: 800;
  color: var(--dark-blue);
}

.check-item span {
  color: var(--red);
}

/* Gallery */
.gallery {
  background:
    radial-gradient(circle at top left, rgba(215, 25, 32, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f0f6ff 100%);
}

.gallery-showcase {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.gallery-note {
  color: var(--dark-blue);
  font-weight: 900;
  font-size: 1.05rem;
}

.gallery-buttons {
  display: flex;
  gap: 10px;
}

.gallery-arrow {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(11, 78, 162, 0.2);
  transition: 0.2s ease;
}

.gallery-arrow:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
}

.gallery-window {
  overflow: hidden;
  border-radius: 26px;
}

.gallery-track {
  display: flex;
  gap: 18px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
}

.gallery-photo-card {
  width: 100%;
  height: clamp(420px, 45vw, 560px);
  border: 0;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--dark-blue), var(--blue));
  box-shadow: 0 16px 34px rgba(10, 32, 66, 0.16);
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.gallery-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(24px);
  transform: scale(1.16);
  opacity: 0.5;
  z-index: 0;
}

.gallery-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 54, 111, 0.28), rgba(215, 25, 32, 0.10));
  z-index: 1;
  pointer-events: none;
}

.gallery-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 2;
  transition: 0.3s ease;
}

.gallery-photo-card:hover img {
  transform: scale(1.02);
}

.gallery-photo-card:focus-visible {
  outline: 4px solid rgba(215, 25, 32, 0.35);
  outline-offset: 4px;
}

/* Lightbox */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(6, 22, 45, 0.92);
  backdrop-filter: blur(8px);
}

.photo-lightbox.open {
  display: flex;
}

.photo-lightbox-inner {
  width: min(1120px, 100%);
  max-height: 92vh;
  position: relative;
  display: grid;
  gap: 12px;
}

.photo-lightbox-frame {
  width: 100%;
  height: min(78vh, 820px);
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-blue), var(--blue));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.photo-lightbox-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--lightbox-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(24px);
  transform: scale(1.12);
  opacity: 0.45;
  z-index: 0;
}

.photo-lightbox-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
}

.photo-lightbox-close,
.photo-lightbox-prev,
.photo-lightbox-next {
  border: 0;
  cursor: pointer;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  transition: 0.2s ease;
}

.photo-lightbox-close:hover,
.photo-lightbox-prev:hover,
.photo-lightbox-next:hover {
  transform: scale(1.05);
}

.photo-lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  font-size: 1.45rem;
  z-index: 3;
}

.photo-lightbox-prev,
.photo-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--blue);
  font-size: 1.65rem;
  z-index: 3;
}

.photo-lightbox-prev:hover,
.photo-lightbox-next:hover {
  transform: translateY(-50%) scale(1.05);
  background: var(--red);
}

.photo-lightbox-prev {
  left: -18px;
}

.photo-lightbox-next {
  right: -18px;
}

.photo-lightbox-caption {
  color: var(--white);
  text-align: center;
  font-weight: 800;
  opacity: 0.92;
}

/* Before and After */
.before-after {
  background:
    radial-gradient(circle at top right, rgba(215, 25, 32, 0.12), transparent 28%),
    linear-gradient(135deg, #eef6ff 0%, #ffffff 50%, #fff4f4 100%);
  padding: 64px 0;
}

.before-after .section-heading {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px 22px;
  margin-bottom: 28px;
  max-width: 620px;
  box-shadow: 0 12px 28px rgba(10, 32, 66, 0.08);
}

.before-after .eyebrow {
  margin-bottom: 10px;
}

.before-after .section-heading h2 {
  color: var(--dark-blue);
  text-shadow: none;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  margin-bottom: 0;
  line-height: 1.15;
}

.ba-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ba-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-blue), var(--blue));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(22px);
  transform: scale(1.15);
  opacity: 0.55;
  z-index: 0;
}

.ba-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 54, 111, 0.30), rgba(215, 25, 32, 0.12));
  z-index: 1;
  pointer-events: none;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  position: relative;
  z-index: 2;
}

.ba-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: var(--red);
  color: var(--white);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.3px;
}

/* Contact */
.contact {
  background:
    radial-gradient(circle at top left, rgba(11, 78, 162, 0.20), transparent 34%),
    radial-gradient(circle at bottom right, rgba(215, 25, 32, 0.18), transparent 34%),
    linear-gradient(135deg, #eef6ff 0%, #ffffff 48%, #fff3f3 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(26px, 5vw, 48px);
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.contact-card h2 {
  color: var(--dark-blue);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.contact-card p {
  color: var(--gray);
  margin: 0 auto 28px;
  max-width: 650px;
  font-size: 1.06rem;
}

.contact-main-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px auto;
  max-width: 760px;
}

.contact-action {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  text-align: left;
  min-height: 122px;
  box-shadow: 0 10px 26px rgba(10, 32, 66, 0.08);
  transition: 0.22s ease;
}

.contact-action:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 78, 162, 0.35);
  box-shadow: 0 18px 38px rgba(10, 32, 66, 0.13);
}

.contact-action-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 900;
  background: var(--blue);
}

.contact-action.call .contact-action-icon {
  background: var(--red);
}

.contact-action strong {
  display: block;
  color: var(--dark-blue);
  font-size: 1.22rem;
  line-height: 1.2;
}

.contact-action span {
  display: block;
  color: var(--gray);
  margin-top: 5px;
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--soft-blue);
  color: var(--blue);
  flex: 0 0 auto;
  font-weight: 900;
}

.contact-detail strong {
  display: block;
  color: var(--dark-blue);
  line-height: 1.25;
}

.contact-detail span {
  color: var(--gray);
  font-size: 0.96rem;
}

.callout-box {
  background: linear-gradient(135deg, var(--dark-blue), var(--blue));
  color: var(--white);
  border-radius: 22px;
  padding: 20px;
  margin: 24px auto 0;
  text-align: center;
  max-width: 620px;
}

.callout-box strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.callout-box span {
  opacity: 0.92;
}

/* Footer */
footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.footer-logo-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  padding: 3px;
  background: var(--white);
}

.footer-brand-text strong {
  display: block;
  color: var(--white);
  line-height: 1.2;
}

.footer-brand-text span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  margin-top: 3px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  padding: 8px;
  transition: 0.22s ease;
}

.footer-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.footer-socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.mobile-menu-button {
  display: none;
  border: 0;
  background: var(--blue);
  color: var(--white);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-slide {
    flex-basis: calc((100% - 18px) / 2);
  }

  .gallery-photo-card {
    height: clamp(390px, 60vw, 520px);
  }

  .hero-photo,
  .about-image {
    min-height: 320px;
  }

  .floating-card {
    left: 18px;
  }
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    padding: 12px 0;
  }

  .mobile-menu-button {
    display: inline-flex;
    margin-top: 10px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 16px 28px rgba(10, 32, 66, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .btn {
    width: 100%;
  }

  .hero {
    padding: 58px 0;
  }

  .trust-row,
  .services-grid,
  .ba-grid,
  .check-list,
  .contact-main-actions,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .gallery-slide {
    flex-basis: 100%;
  }

  .gallery-showcase {
    padding: 14px;
    border-radius: 24px;
  }

  .gallery-photo-card {
    height: min(72vh, 560px);
  }

  .gallery-controls {
    align-items: stretch;
  }

  .gallery-buttons {
    width: 100%;
  }

  .gallery-arrow {
    flex: 1;
    border-radius: 16px;
  }

  .photo-lightbox {
    padding: 12px;
  }

  .photo-lightbox-frame {
    height: 76vh;
  }

  .photo-lightbox-prev {
    left: 8px;
  }

  .photo-lightbox-next {
    right: 8px;
  }

  .photo-lightbox-close {
    top: 8px;
    right: 8px;
  }

  .ba-image {
    aspect-ratio: 4 / 3;
  }

  section {
    padding: 62px 0;
  }

  .hero h1 {
    letter-spacing: -1px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .top-bar .container {
    justify-content: center;
    text-align: center;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .logo-wrap {
    width: 54px;
  }

  .hero-actions .btn,
  .contact-action {
    width: 100%;
  }

  .contact-card {
    padding: 22px;
  }

  .footer-grid,
  .footer-brand {
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .contact-action {
    padding: 18px;
    min-height: 104px;
  }

  .contact-action-icon {
    width: 54px;
    height: 54px;
  }
}

/* =========================================================
   SHARED REDESIGN CLEANUP
   Keeps same HTML sections, changes visual presentation only.
========================================================= */
html {
  scroll-padding-top: 90px;
}

body {
  overflow-x: hidden;
}

.section-heading h2,
.hero h1,
.about-content h2,
.contact-card h2 {
  text-wrap: balance;
}

.service-card,
.gallery-showcase,
.ba-card,
.contact-card,
.about-content,
.hero-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover,
.gallery-showcase:hover,
.ba-card:hover,
.contact-card:hover,
.about-content:hover,
.hero-card:hover {
  transform: translateY(-4px);
}

.gallery-photo-card:hover img {
  transform: scale(1.04);
}

.footer-socials a {
  text-decoration: none;
}

/* =========================================================
   OPTION 1 — BOLD CONTRACTOR
   Strong hero, diagonal panels, bold service blocks.
========================================================= */

:root {
  --red: #d71920;
  --dark-red: #9f1117;
  --blue: #0b4ea2;
  --dark-blue: #031f45;
  --soft-blue: #e9f3ff;
  --soft-red: #fff0f0;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --dark: #132236;
  --gray: #5d6878;
  --line: #dbe5f0;
  --shadow: 0 24px 60px rgba(3, 31, 69, 0.18);
}

.top-bar {
  background: #031f45;
  border-bottom: 4px solid var(--red);
}

header {
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 34px rgba(3,31,69,.08);
}

.nav {
  min-height: 86px;
}

.logo-wrap {
  border-radius: 18px;
  border-color: var(--blue);
  transform: rotate(-3deg);
}

.hero {
  background:
    linear-gradient(118deg, rgba(3,31,69,.96) 0%, rgba(3,31,69,.96) 51%, transparent 51%),
    radial-gradient(circle at 88% 20%, rgba(215,25,32,.20), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eaf3ff 100%);
  color: var(--white);
  padding: 96px 0 86px;
}

.hero::before {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 2px, transparent 2px 16px);
  opacity: 1;
}

.hero h1,
.hero p {
  color: var(--white);
}

.hero h1 span {
  color: #ff5a5f;
}

.hero p {
  color: rgba(255,255,255,.84);
}

.hero .eyebrow {
  color: var(--white);
  background: rgba(215,25,32,.95);
  border: 0;
}

.language-note {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark-blue);
}

.trust-card {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
}

.trust-card strong {
  color: var(--white);
}

.trust-card span {
  color: rgba(255,255,255,.76);
}

.hero-card {
  transform: rotate(1deg);
  border-radius: 10px 40px 10px 40px;
  border: 8px solid var(--white);
  padding: 0;
  overflow: visible;
}

.hero-card:hover {
  transform: rotate(1deg) translateY(-4px);
}

.hero-photo {
  border-radius: 6px 32px 6px 32px;
  min-height: 470px;
}

.floating-card {
  left: auto;
  right: -20px;
  bottom: -22px;
  border-radius: 14px;
  border-left: 7px solid var(--blue);
}

.services {
  background:
    linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.services-grid {
  gap: 18px;
}

.service-card {
  border-radius: 6px;
  border-left: 7px solid var(--red);
  padding: 30px;
}

.service-card::before {
  height: 100%;
  width: 5px;
  background: var(--blue);
  inset: 0 auto 0 0;
}

.service-icon {
  border-radius: 8px;
  background: var(--dark-blue);
  color: var(--white);
}

.split-section {
  background:
    linear-gradient(90deg, #031f45 0%, #031f45 38%, #f7f9fc 38%, #f7f9fc 100%);
}

.about-image {
  border-radius: 8px;
  border: 10px solid var(--white);
}

.about-content {
  border-radius: 8px;
  background: var(--white);
  border-top: 6px solid var(--red);
}

.check-item {
  border-radius: 6px;
}

.gallery {
  background:
    linear-gradient(180deg, #ffffff 0%, #edf4ff 100%);
}

.gallery-showcase {
  border-radius: 8px;
  border-top: 8px solid var(--blue);
  background: #ffffff;
}

.gallery-photo-card {
  border-radius: 8px;
  background: linear-gradient(135deg, #031f45, #0b4ea2);
}

.gallery-window {
  border-radius: 8px;
}

.before-after {
  background:
    linear-gradient(135deg, #031f45 0%, #07366f 48%, #0b4ea2 100%);
}

.before-after .section-heading {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
}

.before-after .section-heading h2 {
  color: var(--white);
}

.before-after .eyebrow {
  color: var(--white);
  background: var(--red);
  border: 0;
}

.ba-card {
  border-radius: 8px;
}

.ba-image {
  border-radius: 8px;
}

.contact {
  background:
    linear-gradient(125deg, #ffffff 0%, #ffffff 56%, #e9f3ff 56%, #e9f3ff 100%);
}

.contact-card {
  border-radius: 8px;
  border-top: 8px solid var(--red);
}

.contact-action {
  border-radius: 8px;
  border-left: 6px solid var(--blue);
}

.contact-action.call {
  border-left-color: var(--red);
}

.contact-action-icon,
.contact-detail-icon {
  border-radius: 8px;
}

.callout-box {
  border-radius: 8px;
}

footer {
  background:
    linear-gradient(90deg, #031f45 0%, #031f45 70%, #d71920 70%, #d71920 100%);
}


/* LIVE OVERLAY GALLERY VIEW */
.photo-lightbox{position:fixed;inset:0;z-index:9999;display:none;align-items:center;justify-content:center;padding:28px;background:rgba(6,22,45,.42);backdrop-filter:blur(2px);-webkit-backdrop-filter:blur(2px)}
.photo-lightbox.open{display:flex}
.photo-lightbox-inner{width:min(1120px,94vw);height:min(84vh,860px);position:relative;display:flex;align-items:center;justify-content:center}
.photo-lightbox-frame{width:100%;height:100%;border-radius:28px;overflow:hidden;background:rgba(7,54,111,.84);box-shadow:0 30px 90px rgba(0,0,0,.42);display:flex;align-items:center;justify-content:center;position:relative}
.photo-lightbox-frame::before{content:"";position:absolute;inset:0;background-image:var(--lightbox-bg);background-position:center;background-size:cover;background-repeat:no-repeat;filter:blur(14px);transform:scale(1.12);opacity:.28;z-index:0}
.photo-lightbox-frame::after{content:"";position:absolute;inset:0;background:linear-gradient(135deg,rgba(7,54,111,.20),rgba(215,25,32,.08));z-index:1;pointer-events:none}
.photo-lightbox-frame img{width:100%;height:100%;object-fit:contain;object-position:center;position:relative;z-index:2;cursor:zoom-in;transition:transform .25s ease;transform-origin:center center}
.photo-lightbox-frame img.zoomed{transform:scale(1.75);cursor:zoom-out}
.photo-lightbox-close,.photo-lightbox-prev,.photo-lightbox-next{border:0;cursor:pointer;color:var(--white);font-weight:900;box-shadow:0 14px 32px rgba(0,0,0,.28);transition:.2s ease;z-index:5}
.photo-lightbox-close:hover,.photo-lightbox-prev:hover,.photo-lightbox-next:hover{transform:scale(1.05)}
.photo-lightbox-close{position:absolute;top:-18px;right:-18px;width:50px;height:50px;border-radius:50%;background:var(--red);font-size:1.5rem}
.photo-lightbox-prev,.photo-lightbox-next{position:absolute;top:50%;transform:translateY(-50%);width:58px;height:58px;border-radius:50%;background:var(--blue);font-size:1.8rem}
.photo-lightbox-prev:hover,.photo-lightbox-next:hover{transform:translateY(-50%) scale(1.05);background:var(--red)}
.photo-lightbox-prev{left:-22px}.photo-lightbox-next{right:-22px}
.gallery-featured{display:none!important}
@media(max-width:760px){.photo-lightbox{padding:14px}.photo-lightbox-inner{width:94vw;height:78vh}.photo-lightbox-prev{left:8px}.photo-lightbox-next{right:8px}.photo-lightbox-close{top:8px;right:8px}.photo-lightbox-frame{border-radius:22px}}


/* =========================================================
   MOBILE HEADER + HERO FIX
   Fixes iPhone/phone scaling, sticky header wrapping,
   oversized hero buttons, and desktop diagonal background on mobile.
========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (max-width: 760px) {
  .top-bar {
    font-size: 0.82rem;
    line-height: 1.35;
    padding: 7px 0;
  }

  .top-bar .container {
    justify-content: center;
    text-align: center;
    gap: 6px;
  }

  header {
    top: 0;
  }

  .nav {
    min-height: 66px;
    padding: 8px 0;
    align-items: center;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    gap: 10px;
  }

  .logo-wrap {
    width: 48px;
    flex: 0 0 48px;
    transform: none;
    border-radius: 14px;
  }

  .brand-text {
    min-width: 0;
    max-width: calc(100vw - 138px);
  }

  .brand-text strong {
    font-size: 0.86rem;
    line-height: 1.14;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .brand-text span {
    display: block;
    font-size: 0.76rem;
    line-height: 1.15;
    margin-top: 2px;
    white-space: normal;
    overflow-wrap: normal;
  }

  .mobile-menu-button {
    flex: 0 0 auto;
    margin-top: 0;
    padding: 9px 11px;
    font-size: 0.86rem;
  }

  .nav-links {
    top: 100%;
    z-index: 30;
  }

  .hero {
    background:
      radial-gradient(circle at top left, rgba(215, 25, 32, 0.20), transparent 35%),
      linear-gradient(180deg, #031f45 0%, #031f45 100%);
    padding: 38px 0 52px;
    color: var(--white);
  }

  .hero::before {
    background:
      repeating-linear-gradient(135deg, rgba(255,255,255,.055) 0 2px, transparent 2px 16px);
    opacity: 1;
  }

  .hero-grid {
    display: block;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.5vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 18px;
    color: var(--white);
  }

  .hero p {
    max-width: 100%;
    color: rgba(255,255,255,.84);
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero .eyebrow {
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }

  .language-note {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 58px;
    padding: 14px 16px;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
  }

  .trust-row {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 12px;
  }

  .trust-card {
    padding: 14px 16px;
  }

  .trust-card strong {
    font-size: 1.15rem;
  }

  .hero-card {
    margin-top: 30px;
    transform: none !important;
    border-radius: 22px;
    border: 6px solid var(--white);
    padding: 0;
    overflow: hidden;
  }

  .hero-card:hover {
    transform: translateY(-3px) !important;
  }

  .hero-photo {
    min-height: 280px;
    border-radius: 16px;
    background-size: cover, contain;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin: 12px;
    border-radius: 14px;
    text-align: center;
    border-left: 0;
  }

  .floating-card span {
    display: block;
  }

  .split-section {
    background: linear-gradient(180deg, #031f45 0%, #f7f9fc 0%, #f7f9fc 100%);
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    font-size: 0.78rem;
  }

  .brand-text span {
    font-size: 0.69rem;
  }

  .logo-wrap {
    width: 44px;
    flex-basis: 44px;
  }

  .brand-text {
    max-width: calc(100vw - 124px);
  }

  .mobile-menu-button {
    padding: 8px 9px;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 32px;
  }
}


/* =========================================================
   HERO TOP SECTION READABILITY FIX
   Makes the top section switch to mobile-safe layout sooner.
   This prevents the white diagonal area from covering the
   Kitchen / Bathroom / Handyman cards on phones and narrow screens.
========================================================= */

@media (max-width: 980px) {
  .hero {
    background:
      radial-gradient(circle at top left, rgba(215, 25, 32, 0.20), transparent 35%),
      linear-gradient(180deg, #031f45 0%, #031f45 100%) !important;
    color: var(--white);
  }

  .hero::before {
    background:
      repeating-linear-gradient(135deg, rgba(255,255,255,.055) 0 2px, transparent 2px 16px) !important;
    opacity: 1;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero h1,
  .hero p {
    color: var(--white);
  }

  .hero p {
    color: rgba(255,255,255,.84);
  }

  .hero .eyebrow {
    color: var(--white);
    background: rgba(215,25,32,.95);
    border: 0;
  }

  .language-note {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: none;
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.65);
  }

  .btn-outline:hover {
    background: var(--white);
    color: var(--dark-blue);
  }

  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .trust-card {
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: none;
    min-width: 0;
  }

  .trust-card strong,
  .trust-card span {
    color: var(--white);
    overflow-wrap: anywhere;
  }

  .trust-card strong {
    font-size: clamp(1rem, 3vw, 1.25rem);
  }

  .trust-card span {
    font-size: clamp(0.78rem, 2.4vw, 0.92rem);
  }

  .hero-card {
    transform: none !important;
  }

  .hero-card:hover {
    transform: translateY(-3px) !important;
  }
}

@media (max-width: 640px) {
  .trust-row {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   HERO TRUST CARD READABILITY FIX
   Keeps Kitchen / Bathroom / Handyman readable even when the
   white diagonal hero background sits behind one of the cards.
========================================================= */

.hero .trust-card {
  background: rgba(3, 31, 69, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero .trust-card strong,
.hero .trust-card span {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.30);
}

.hero .trust-card strong {
  font-weight: 900;
}

.hero .trust-card span {
  opacity: 0.92;
}
