@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

:root {
  --color-ink: #1f2933;
  --color-line: #d8e5fb;
  --color-surface: #ffffff;
  --color-topbar: #0f2f57;
  --color-brand: #2563eb;
  --color-brand-dark: #1d4ed8;
  --color-brand-light: #dbeafe;
  --color-shadow: rgba(37, 99, 235, 0.18);
  --color-shadow-strong: rgba(29, 78, 216, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-ink);
  background: #f7f8fa;
}

a {
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 30px var(--color-shadow);
}

.header.hide-top-bar .top-bar {
  display: none;
}

.top-bar {
  background: var(--color-topbar);
  color: #f4f7f9;
  font-size: 0.92rem;
}

.top-bar .container,
.top-container,
.top-icon,
.top-social ul {
  display: flex;
  align-items: center;
}

.top-bar .container {
  min-height: 42px;
  justify-content: space-between;
  gap: 18px;
}

.top-container {
  flex-wrap: wrap;
  gap: 10px 22px;
}

.top-icon {
  gap: 8px;
}

.top-icon i {
  color: #93c5fd;
}

.top-phone {
  gap: 0;
  padding: 3px;
  border: 1px solid rgba(191, 219, 254, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.top-phone i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #0f2f57;
  background: #bfdbfe;
  box-shadow: 0 8px 18px rgba(147, 197, 253, 0.28);
}

.top-phone a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px 0 10px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0;
}

.top-phone a span {
  white-space: nowrap;
}

.top-phone:hover,
.top-phone:focus-within {
  border-color: rgba(219, 234, 254, 0.76);
  background: var(--color-brand);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.32);
  transform: translateY(-1px);
}

.top-phone:hover i,
.top-phone:focus-within i {
  color: var(--color-brand-dark);
  background: #ffffff;
}

.top-icon a,
.top-social a {
  color: inherit;
  transition: color 0.2s ease;
}

.top-icon:not(.top-phone) a:hover,
.top-icon:not(.top-phone) a:focus {
  color: #bfdbfe;
}

.bottom-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-line);
}

.navbar {
  min-height: 78px;
  padding: 0;
}

.navbar .container-fluid {
  gap: 18px;
  padding: 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: 22px;
}

.navbar-brand img {
  width: 98px;
  height: 60px;
  object-fit: contain;
}

.navbar-nav {
  align-items: center;
  gap: 2px;
}

.navbar .nav-link {
  position: relative;
  padding: 12px 13px;
  color: var(--color-ink);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: var(--color-brand-dark);
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.nav-btn,
.banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-btn,
.banner-btn-primary {
  color: #ffffff;
  background: var(--color-brand);
  box-shadow: 0 10px 24px var(--color-shadow-strong);
}

.nav-btn:hover,
.nav-btn:focus,
.banner-btn-primary:hover,
.banner-btn-primary:focus {
  color: #ffffff;
  background: var(--color-brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(30, 64, 175, 0.32);
}

.navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 44px;
  margin-left: auto;
  border: 1px solid #bcd2ff;
  border-radius: 6px;
  background: #f8fbff;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.navbar-toggler:hover {
  border-color: #8bb4ff;
  background: var(--color-brand-light);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-brand-dark);
  transition:
    transform 0.22s ease,
    opacity 0.18s ease,
    width 0.18s ease;
}

.navbar-toggler[aria-expanded="true"] {
  border-color: var(--color-brand);
  background: var(--color-brand);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line {
  background: #ffffff;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
  width: 0;
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.banner-sec {
  overflow: hidden;
  background: #081c36;
}

.banner-slide {
  min-height: clamp(560px, 74vh, 720px);
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  background-image: url("images/carpenter01.jpg");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 18, 38, 0.68) 0%, rgba(13, 43, 82, 0.42) 42%, rgba(13, 43, 82, 0.08) 72%, rgba(4, 18, 38, 0) 100%),
    linear-gradient(180deg, rgba(37, 99, 235, 0.01), rgba(38, 44, 53, 0.06));
}

.banner-slide::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, #1d4ed8, #60a5fa, #dbeafe);
}

.banner-content {
  max-width: 720px;
  padding: clamp(72px, 9vw, 126px) 0;
  color: #ffffff;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(147, 197, 253, 0.5);
  border-radius: 8px;
  color: #dbeafe;
  background: rgba(15, 47, 87, 0.58);
}

.banner-badge img {
  width: 72px;
  height: 52px;
  border: 2px solid rgba(219, 234, 254, 0.86);
  border-radius: 6px;
  object-fit: cover;
}

.banner-badge span {
  font-weight: 700;
  line-height: 1.25;
}

.banner-kicker {
  max-width: 640px;
  margin: 0 0 14px;
  color: #dbeafe;
  font-size: clamp(0.95rem, 1.7vw, 1.08rem);
  font-weight: 700;
  line-height: 1.55;
}

.banner-content h1 {
  max-width: 700px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.45rem, 5.4vw, 4.65rem);
  font-weight: 700;
  line-height: 1.02;
  text-shadow: 0 10px 28px rgba(4, 18, 38, 0.38);
}

.banner-content h1 span {
  display: block;
  margin-top: 12px;
  color: #bfdbfe;
  font-size: 0.58em;
  line-height: 1.2;
}

.hero-quote {
  max-width: 680px;
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 60px rgba(4, 18, 38, 0.16);
  position: relative;
}

.hero-quote::before {
  content: "“";
  position: absolute;
  top: -12px;
  left: 20px;
  font-size: 4.5rem;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1;
}

.hero-quote blockquote {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.1vw, 1.3rem);
  font-weight: 600;
  line-height: 1.75;
}

.hero-quote blockquote::after {
  content: "";
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.banner-btn-secondary {
  color: #eff6ff;
  border: 1px solid rgba(219, 234, 254, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.banner-btn-secondary:hover,
.banner-btn-secondary:focus {
  color: #ffffff;
  background: rgba(219, 234, 254, 0.16);
  box-shadow: 0 14px 28px rgba(15, 47, 87, 0.28);
  transform: translateY(-1px);
}

.banner-bottom {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
}

.banner-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--color-line);
}

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

.section-heading span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--color-brand-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: #132238;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.12;
}

.bottom-box {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid #d6e4fb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 47, 87, 0.08);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.bottom-box:hover {
  border-color: #9fc3fb;
  box-shadow: 0 24px 54px rgba(37, 99, 235, 0.15);
  transform: translateY(-5px);
}

.bottom-box img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bottom-box-body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 36px 22px 24px;
}

.bottom-box-icon {
  position: absolute;
  top: -25px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 4px solid #ffffff;
  border-radius: 8px;
  color: #ffffff;
  background: var(--color-brand);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.26);
}

.bottom-box-icon i {
  font-size: 1.2rem;
}

.bottom-box h3 {
  margin: 0 0 12px;
  color: #14253d;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
}

.bottom-box p {
  margin: 0;
  color: #526173;
  font-size: 0.96rem;
  line-height: 1.6;
}

.section-pad {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: #9a5b1f;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-sec,
.testimonials-sec {
  background: #ffffff;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-main-img {
  display: block;
  width: 100%;
  min-height: 440px;
  max-height: 620px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 60px rgba(15, 47, 87, 0.15);
}

.about-stat {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  max-width: 240px;
  padding: 18px 20px;
  border-radius: 8px;
  color: #ffffff;
  background: #1f7a4c;
  box-shadow: 0 18px 38px rgba(31, 122, 76, 0.26);
}

.about-stat strong {
  font-size: 2.2rem;
  line-height: 1;
}

.about-stat span {
  font-weight: 700;
  line-height: 1.35;
}

.about-content h2,
.split-heading h2,
.contact-info h2 {
  margin: 0 0 18px;
  color: #132238;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.1;
}

.about-content p,
.split-heading p,
.contact-info p {
  margin: 0 0 16px;
  color: #526173;
  font-size: 1.03rem;
  line-height: 1.75;
}

.about-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 28px;
}

.about-checks span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #d6e4fb;
  border-radius: 6px;
  background: #f8fbff;
  font-weight: 700;
}

.about-checks i {
  color: #1f7a4c;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-brand-dark);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus {
  color: #9a5b1f;
}

.services-sec {
  background: #f3f7fb;
}

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

.service-card,
.testimonial-card,
.contact-form {
  border: 1px solid #d6e4fb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 47, 87, 0.08);
}

.service-card {
  min-height: 260px;
  padding: 28px 22px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: #9fc3fb;
  box-shadow: 0 24px 54px rgba(37, 99, 235, 0.14);
  transform: translateY(-4px);
}

.service-card > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #ffffff;
  background: #9a5b1f;
  font-size: 1.35rem;
}

.service-card h3,
.testimonial-card strong {
  margin: 0 0 12px;
  color: #14253d;
  font-size: 1.14rem;
  font-weight: 700;
}

.service-card p,
.testimonial-card p {
  margin: 0;
  color: #526173;
  line-height: 1.65;
}

.projects-sec {
  background: #f6f8ff;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
  padding: 28px 28px 24px;
  border-radius: 26px;
  background: rgba(15, 47, 87, 0.06);
  border: 1px solid rgba(15, 47, 87, 0.08);
}

.split-heading > div {
  min-width: 0;
}

.section-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563eb;
}

.split-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
  color: #10243b;
}

.split-heading p {
  margin: 0;
  color: #4f5f72;
  line-height: 1.8;
  font-size: 1rem;
}

.project-carousel {
  position: relative;
  overflow: hidden;
}

.project-grid {
  display: flex;
  gap: 16px;
  padding: 12px 8px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.project-grid::-webkit-scrollbar {
  display: none;
}

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: #ffffff;
  background: #132238;
  flex: 0 0 min(320px, 100%);
  min-width: 280px;
  scroll-snap-align: start;
}

.project-item-large {
  flex: 0 0 min(560px, 100%);
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.project-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 34, 56, 0) 44%, rgba(19, 34, 56, 0.78) 100%);
}

.project-item span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  font-weight: 700;
}

.project-item:hover img,
.project-item:focus img {
  opacity: 0.88;
  transform: scale(1.05);
}

.video-sec {
  padding: 32px 0;
  background: #132238;
}

.video-sec video {
  display: block;
  width: 100%;
  max-height: 620px;
  border-radius: 8px;
  background: #081c36;
  object-fit: cover;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
}

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

.testimonial-card {
  padding: 26px;
}

.stars {
  margin-bottom: 14px;
  color: #d97706;
  letter-spacing: 2px;
}

.testimonial-card p {
  min-height: 106px;
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: #6b7686;
}

.contact-sec {
  background:
    linear-gradient(90deg, rgba(15, 47, 87, 0.94), rgba(19, 34, 56, 0.88)),
    url("images/carpenterTools.jpg") center / cover no-repeat;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
}

.contact-info h2,
.contact-info p {
  color: #ffffff;
}

.contact-info .section-eyebrow {
  color: #f8c57e;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #eff6ff;
  font-weight: 700;
}

.contact-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #14253d;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd8eb;
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--color-ink);
  background: #f8fbff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-brand);
  outline: 3px solid rgba(37, 99, 235, 0.16);
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: #1f7a4c;
  font-weight: 700;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form button:hover,
.contact-form button:focus {
  background: #17653e;
  box-shadow: 0 14px 28px rgba(31, 122, 76, 0.25);
  transform: translateY(-1px);
}

.footer {
  color: #dbeafe;
  background:
    linear-gradient(180deg, rgba(44, 33, 22, 0.96), rgba(26, 20, 13, 1)),
    #2c2116;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(160, 82, 45, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(101, 67, 33, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, 0.7fr));
  gap: clamp(28px, 5vw, 58px);
  padding: 68px 0 52px;
  border-bottom: 1px solid rgba(212, 165, 116, 0.16);
}

.footer-brand p,
.footer-bottom p {
  margin: 0;
}

.footer-brand p {
  max-width: 370px;
  color: #b8c7dc;
  line-height: 1.72;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px;
  border: 1px solid rgba(219, 234, 254, 0.22);
  border-radius: 6px;
  background: #ffffff;
}

.footer-logo img {
  width: 92px;
  height: 56px;
  object-fit: contain;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(219, 234, 254, 0.22);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus {
  border-color: rgba(219, 234, 254, 0.46);
  background: var(--color-brand);
  transform: translateY(-2px);
}

.footer-column h2 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 2px;
  background: #d4a574;
}

.footer-column nav,
.footer-contact {
  display: grid;
  gap: 11px;
}

.footer a,
.footer-contact span {
  color: #b8c7dc;
  font-weight: 700;
  line-height: 1.45;
}

.footer a {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-column nav a:hover,
.footer-column nav a:focus,
.footer-contact a:hover,
.footer-contact a:focus,
.footer-bottom a:hover,
.footer-bottom a:focus {
  color: #ffffff;
}

.footer-column nav a:hover,
.footer-column nav a:focus {
  transform: translateX(3px);
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  width: 18px;
  margin-top: 3px;
  color: #f4c67a;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  color: #c4b5a7;
  font-size: 0.94rem;
  background: rgba(31, 25, 18, 0.3);
}

.footer-bottom a {
  color: #d4a574;
  transition: color 0.2s ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
  color: #f4c67a;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.38);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.28);
}

.whatsapp-float i {
  font-size: 2rem;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  color: #ffffff;
  background: #1ebe5d;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.46);
}

@media (max-width: 1199.98px) {
  .navbar {
    min-height: 74px;
  }

  .navbar .container-fluid {
    gap: 12px;
  }

  .navbar-brand img {
    width: 90px;
    height: 54px;
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    border: 1px solid #cfe0ff;
    border-radius: 8px;
    background: #f8fbff;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.14);
  }

  .navbar-nav {
    align-items: stretch;
    gap: 4px;
  }

  .navbar .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 6px;
    white-space: normal;
  }

  .navbar .nav-link::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #93c5fd;
    box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.18);
  }

  .navbar .nav-link::after {
    right: auto;
    bottom: 8px;
    width: 38px;
    transform-origin: left;
  }

  .navbar .nav-link:hover,
  .navbar .nav-link:focus,
  .navbar .nav-link.active {
    background: var(--color-brand-light);
  }

  .nav-btn {
    width: 100%;
    margin-top: 10px;
    min-height: 48px;
  }
}

@media (max-width: 991.98px) {
  .banner-slide {
    min-height: 620px;
    background-position: 62% center;
  }

  .banner-slide::before {
    background:
      linear-gradient(90deg, rgba(4, 18, 38, 0.7) 0%, rgba(13, 43, 82, 0.48) 56%, rgba(4, 18, 38, 0.12) 100%),
      linear-gradient(180deg, rgba(37, 99, 235, 0.02), rgba(4, 18, 38, 0.08));
  }

  .about-grid,
  .contact-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .split-heading {
    padding: 24px 20px;
    gap: 22px;
    border-radius: 22px;
  }

  .split-heading h2 {
    font-size: 2.2rem;
  }

  .split-heading p {
    font-size: 0.99rem;
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card p {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .top-bar .container {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .banner-slide {
    min-height: auto;
    padding: 70px 0 62px;
    background-position: 68% center;
  }

  .banner-slide::before {
    background:
      linear-gradient(180deg, rgba(4, 18, 38, 0.4) 0%, rgba(4, 18, 38, 0.68) 58%, rgba(4, 18, 38, 0.78) 100%),
      linear-gradient(90deg, rgba(37, 99, 235, 0.03), rgba(15, 47, 87, 0.12));
  }

  .banner-content {
    padding: 0;
  }

  .banner-badge {
    width: 100%;
  }

  .banner-content h1 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .banner-actions {
    flex-direction: column;
  }

  .banner-btn {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 26px;
    text-align: left;
  }

  .section-heading h2 {
    font-size: 2.15rem;
  }

  .bottom-box-body {
    min-height: auto;
  }

  .about-main-img {
    min-height: 340px;
  }

  .about-stat {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .about-checks,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .project-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 14px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .project-grid::-webkit-scrollbar {
    display: none;
  }

  .project-item {
    flex: 0 0 min(320px, 100%);
    min-width: 260px;
    scroll-snap-align: start;
  }

  .project-item-large {
    grid-column: auto;
    grid-row: auto;
    flex: 0 0 min(320px, 100%);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .top-bar {
    font-size: 0.83rem;
  }

  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .top-container {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .top-icon,
  .top-icon a {
    max-width: 100%;
  }

  .top-icon a {
    overflow-wrap: anywhere;
  }

  .top-phone {
    max-width: none;
  }

  .top-phone a {
    overflow-wrap: normal;
  }

  .bottom-bar .container {
    padding-right: 14px;
    padding-left: 14px;
  }

  .navbar {
    min-height: 68px;
  }

  .navbar-brand img {
    width: 78px;
    height: 48px;
  }

  .navbar-toggler {
    width: 44px;
    height: 40px;
  }

  .navbar-collapse {
    margin-top: 8px;
    padding: 10px;
  }

  .navbar .nav-link,
  .nav-btn,
  .banner-btn {
    font-size: 0.94rem;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .banner-slide {
    padding: 56px 0 52px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .section-pad {
    padding: 54px 0;
  }

  .service-card {
    min-height: auto;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 44px 0 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .bottom-bar .container {
    padding-right: 10px;
    padding-left: 10px;
  }

  .navbar-brand img {
    width: 68px;
    height: 42px;
  }

  .navbar-toggler {
    width: 40px;
    height: 38px;
  }

  .banner-kicker,
  .banner-btn {
    font-size: 0.9rem;
  }
}
