:root {
  --yellow: #f2af0d;
  --yellow-dark: #d49800;
  --black: #111111;
  --dark: #1a1a1a;
  --mid: #222222;
  --white: #ffffff;
  --grey: #888888;
  --line: #2d2d2d;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 40px;
}

/* Header / Nav */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--yellow);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  width: 200px;      /* was 168px */
  height: 50px;      /* was 42px */
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--yellow);
  border-color: var(--yellow);
}

.nav-cta {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.nav-cta:hover {
  background: transparent;
  color: var(--yellow);
}

.hamburger {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 1;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  background: var(--dark);
  border-bottom: 2px solid var(--yellow);
  padding: 16px 20px 20px;
}

.mobile-link {
  display: block;
  padding: 12px 14px;
  border-bottom: 1px solid #242424;
  color: var(--white);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

.mobile-link:last-child {
  border-bottom: 0;
}

.mobile-cta {
  margin-top: 12px;
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  letter-spacing: 2px;
  border-radius: 2px;
}

/* Shared sections */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--black);
}

.section-mid {
  background: var(--dark);
}

.section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--yellow);
}

.section-label-dark {
  color: var(--black);
}

.section-label-dark::before {
  background: var(--black);
}

h1,
h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  line-height: 0.95;
}

h1 {
  font-size: clamp(58px, 8vw, 110px);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 20px;
}

.accent {
  color: var(--yellow);
}

.section-desc {
  color: #9a9a9a;
  font-size: 17px;
  line-height: 1.7;
  max-width: 640px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-diagonal {
  position: absolute;
  top: 0;
  right: -80px;
  bottom: 0;
  width: min(56vw, 700px);
  background: var(--yellow);
  transform: skewX(-8deg);
  opacity: 0.08;
}

.hero-stripe {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0 40px,
    var(--black) 40px 60px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 16px;
  margin-bottom: 22px;
}

.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--black);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: #a8a8a8;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-sub strong {
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  padding: 15px 28px;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid #444;
}

.btn-outline:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

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

.btn-full {
  width: 100%;
  font-size: 16px;
  padding: 18px;
}

.hero-stats {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #333;
  border: 1px solid #333;
}

.stat {
  background: var(--dark);
  padding: 24px;
  text-align: center;
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  margin-top: 6px;
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-image-col {
  position: relative;
}

.hero-img-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;

  border-radius: 18px;                 /* rounded corners */
  border: 1px solid rgba(242,175,13,.35); /* subtle yellow border */
  box-shadow: 0 18px 55px rgba(0,0,0,.55); /* depth */
  background: rgba(0,0,0,.25);         /* in case image is slow to load */
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* optional: a soft highlight line at the top */
.hero-img-frame::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: rgba(255,255,255,.12);
  z-index: 2;
}

/* keep your existing yellow corner frame, but tuck it behind nicely */
.hero-img-frame::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--yellow);
  border-radius: 14px;
  z-index: -1;
  opacity: 0.9;
}

.hero-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 8px;
}

.hero-badge .big {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  line-height: 1;
}

.hero-badge .small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Trust Bar */
.trust-bar {
  background: var(--yellow);
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.trust-item {
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

/* Services */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.services-desc {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #222;
}

.service-card {
  background: var(--dark);
  padding: 34px 26px;
  position: relative;
  transition: background 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.service-card:hover {
  background: #202020;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 22px;
}

.service-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-card p {
  color: #8e8e8e;
  font-size: 14px;
  line-height: 1.55;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--dark);
}

.about-bar {
  position: absolute;
  top: 26px;
  left: -18px;
  background: var(--yellow);
  color: var(--black);
  padding: 12px 18px;
}

.about-bar .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  line-height: 1;
}

.about-bar .txt {
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-copy {
  color: #aaa;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #262626;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
  margin-top: 7px;
  flex-shrink: 0;
}

.feature-row h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.feature-row p {
  color: #8e8e8e;
  font-size: 14px;
  line-height: 1.5;
}

.about-btn-wrap {
  margin-top: 34px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #1b1b1b;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-tall img {
  aspect-ratio: auto;
  min-height: 100%;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25); /* always-on subtle dark overlay */
  transition: background 0.25s ease;
}

.gallery-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 1; /* always visible */
  transition: opacity 0.25s ease;
}

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

.gallery-item:hover::after {
  background: rgba(242, 175, 13, 0.22);
}

.gallery-item:hover .gallery-label {
  opacity: 1;
}

/* Why Us */
.why-section {
  background: var(--yellow);
  padding: 80px 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 70px;
  align-items: center;
}

.why-section h2,
.why-section p {
  color: var(--black);
}

.why-section p {
  color: rgba(0, 0, 0, 0.72);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(0, 0, 0, 0.1);
}

.why-card {
  background: var(--yellow);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 28px;
}

.why-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.12);
  margin-bottom: 8px;
}

.why-card h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.68);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #222;
  margin-top: 44px;
}

.testimonial {
  background: var(--dark);
  padding: 34px;
}

.stars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial blockquote {
  color: #d0d0d0;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  flex-shrink: 0;
}

.author-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}

.author-loc {
  color: var(--grey);
  font-size: 12px;
  margin-top: 2px;
}

/* Contact */
.contact-section {
  background: var(--dark);
  padding: 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-info {
  background: var(--black);
  padding: 80px 60px;
}

.contact-form-area {
  background: var(--dark);
  padding: 80px 60px;
}

.contact-title {
  font-size: 52px;
  margin-bottom: 28px;
}

.contact-title span {
  color: var(--yellow);
}

.contact-intro {
  color: #8b8b8b;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid #232323;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-detail h4 {
  color: var(--grey);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-detail a {
  color: var(--white);
  font-size: 17px;
  text-decoration: none;
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--yellow);
}

.coverage-area {
  margin-top: 34px;
  background: #202020;
  border-left: 4px solid var(--yellow);
  padding: 22px;
}

.coverage-area h4 {
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.coverage-area p {
  color: #a8a8a8;
  font-size: 14px;
  line-height: 1.6;
}

.form-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  color: var(--grey);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #111;
  border: 1px solid #333;
  color: var(--white);
  padding: 14px 16px;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: #595959;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--black);
  border-top: 2px solid var(--yellow);
  padding: 56px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 42px;
}

.footer-logo img {
  width: 240px;      /* optional slight increase */
  height: 60px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.footer-brand p {
  margin-top: 16px;
  color: #6c6c6c;
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h5 {
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  text-decoration: none;
  color: #6c6c6c;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-quote-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--black) !important;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid #242424;
  padding-top: 22px;
  color: #494949;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom span {
  color: var(--yellow);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.float-btn {
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
  transition: transform 0.2s ease;
}

.float-btn:hover {
  transform: translateY(-2px);
}

.float-wa {
  background: #25d366;
  color: #fff;
}

.float-call {
  background: var(--yellow);
  color: var(--black);
}

/* Simple fade-in */
.hero-left > * {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.5s ease forwards;
}
.hero-left > *:nth-child(1) { animation-delay: 0.08s; }
.hero-left > *:nth-child(2) { animation-delay: 0.18s; }
.hero-left > *:nth-child(3) { animation-delay: 0.28s; }
.hero-left > *:nth-child(4) { animation-delay: 0.38s; }
.hero-left > *:nth-child(5) { animation-delay: 0.48s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .container {
    padding-inline: 20px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-image-col {
    display: none;
  }

  .section {
    padding: 74px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .gallery-tall {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form-area {
    padding: 48px 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    gap: 18px;
    padding-inline: 18px;
  }

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

@media (max-width: 560px) {
  .hero-stats,
  .services-grid,
  .testimonials-grid,
  .why-grid,
  .gallery-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 42px;
  }

  h2 {
    font-size: 38px;
  }

  .nav-logo-img {
    width: 140px;
    height: 38px;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
  }

  .float-btn {
    font-size: 12px;
    padding: 11px 14px;
  }
}