:root {
  --primary-color: #0756b8;
  --secondary-color: #08a9d8;
  --accent-color: #00c6e8;
  --dark-blue: #061b4f;
  --navy-blue: #092b73;
  --deep-blue: #02163d;
  --light-blue: #eaf7fc;
  --sky-blue: #d9f3fa;
  --soft-blue: #f4fbfe;
  --white: #ffffff;
  --black: #111111;
  --text-color: #333333;
  --text-light: #6c757d;
  --border-color: #e5e7eb;
  --body-bg: #ffffff;
  --section-bg: #f5f9fc;
  --dark-bg: #061b4f;
  --primary-gradient: linear-gradient(135deg, #0756b8 0%, #08a9d8 100%);
  --dark-gradient: linear-gradient(135deg, #02163d 0%, #092b73 100%);
  --blue-gradient: linear-gradient(135deg, #00c6e8 0%, #0756b8 50%, #061b4f 100%);
  --shadow-sm: 0 4px 15px rgba(7, 86, 184, 0.12);
  --shadow-md: 0 8px 30px rgba(7, 86, 184, 0.18);
  --shadow-lg: 0 15px 45px rgba(2, 22, 61, 0.25);
  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 25px;
  --radius-round: 50px;
  --transition: all 0.3s ease;
}

* {
  letter-spacing: 0;
}

body {
  background: var(--body-bg);
  color: var(--text-color);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.site-navbar {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  padding: 0.45rem 0;
}

.navbar-brand img {
  width: 245px;
  max-height: 90px;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: var(--dark-blue);
  font-weight: 700;
  padding: 0.65rem 0.85rem;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--radius-round);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

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

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

.btn {
  border-radius: var(--radius-round);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
}

.btn-brand {
  background: var(--primary-gradient);
  border: 0;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-brand:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25D366;
  border: 0;
  color: var(--white);
  box-shadow: var(--shadow-sm);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  color: var(--white);
  background: #1fa85c;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-brand {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline-brand:hover {
  background: var(--primary-color);
  color: var(--white);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: -8% 0;
  background:
    linear-gradient(90deg, rgba(2, 22, 61, 0.9) 0%, rgba(6, 27, 79, 0.72) 42%, rgba(6, 27, 79, 0.05) 100%),
    url("../img/hero-roofing.png") center / cover no-repeat;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.04);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-color);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 36px;
  height: 3px;
  background: var(--accent-color);
  border-radius: var(--radius-round);
}

h1,
h2,
h3 {
  color: var(--dark-blue);
  font-weight: 900;
  line-height: 1.15;
}

.hero-section h1 {
  color: var(--white);
  font-size: clamp(2.75rem, 6vw, 5.6rem);
  margin: 1rem 0;
}

.hero-section .lead {
  max-width: 720px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

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

.trust-row div {
  border-left: 3px solid var(--accent-color);
  padding-left: 1rem;
}

.trust-row strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
}

.trust-row span {
  color: rgba(255, 255, 255, 0.78);
}

.section-padding {
  padding: 96px 0;
}

.banner-image-section {
  padding: 72px 0 0;
  background: var(--white);
}

.home-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.bg-soft {
  background: var(--section-bg);
}

.section-title {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 3rem;
}

.section-title .section-kicker {
  justify-content: center;
}

.section-title h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0.75rem 0 1rem;
}

.feature-image,
.gallery-image {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

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

.gallery-image {
  aspect-ratio: 4 / 3;
  transition: var(--transition);
}

.gallery-image.tall {
  aspect-ratio: 16 / 10;
}

.gallery-image:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card,
.value-card,
.quote-form,
.contact-panel {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover,
.value-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(8, 169, 216, 0.35);
}

.service-card i,
.value-card i {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue);
  color: var(--primary-color);
  border-radius: var(--radius-sm);
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
}

.service-card h3,
.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

.service-card p,
.value-card p {
  color: var(--text-light);
  margin: 0;
}

.check-list p {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.check-list i {
  color: var(--secondary-color);
  font-size: 1.25rem;
}

.link-arrow {
  color: var(--primary-color);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.page-hero {
  background: var(--dark-gradient);
  color: var(--white);
  padding: 170px 0 90px;
}

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

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.cta-section {
  background: var(--blue-gradient);
  color: var(--white);
  padding: 70px 0;
}

.cta-section h2,
.cta-section p {
  color: var(--white);
  margin-bottom: 0.3rem;
}

.parallax-section {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(2, 22, 61, 0.88), rgba(7, 86, 184, 0.58)),
    url("../img/car-parking-roofing.png") center / cover fixed no-repeat;
  color: var(--white);
  overflow: hidden;
}

.parallax-content {
  max-width: 820px;
  padding: 96px 0;
}

.parallax-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin: 1rem 0 1.6rem;
}

.trusted-section {
  background:
    linear-gradient(180deg, var(--white) 0%, var(--soft-blue) 100%);
}

.trusted-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.trusted-logo {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.trusted-logo:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 169, 216, 0.35);
  box-shadow: var(--shadow-md);
}

.trusted-logo img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.service-areas-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 198, 232, 0.16), transparent 34%),
    linear-gradient(135deg, var(--deep-blue) 0%, var(--navy-blue) 55%, var(--primary-color) 100%);
  color: var(--white);
  overflow: hidden;
}

.service-areas-section h2,
.service-areas-section p {
  color: var(--white);
}

.service-areas-section p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.4rem;
}

.area-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.7rem 0;
}

.area-highlights div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.area-highlights strong {
  display: block;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.area-highlights span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.areas-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.25rem;
  max-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.area-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark-blue);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(2, 22, 61, 0.16);
  transition: var(--transition);
}

.area-chip:hover,
.area-chip.featured {
  background: var(--accent-color);
  color: var(--deep-blue);
  transform: translateY(-3px);
}

.gallery-grid h2 {
  font-size: 1.1rem;
  margin: 1rem 0 0;
}

.project-media-section {
  padding-top: 96px;
}

.project-video-grid {
  margin-bottom: 2rem;
}

.project-image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.project-media-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  background: var(--deep-blue);
}

.project-media-card img,
.project-media-card video {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.project-media-card:hover img,
.project-media-card:hover video {
  transform: scale(1.08);
}

.project-media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 22, 61, 0.06), rgba(2, 22, 61, 0.72));
}

.project-media-card.no-card-text::before {
  background: linear-gradient(180deg, rgba(2, 22, 61, 0), rgba(2, 22, 61, 0.18));
}

.home-projects-section {
  background: var(--section-bg);
}

.project-media-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
}

.project-media-overlay h3 {
  color: var(--white);
  font-size: 1rem;
  margin: 0;
}

.project-media-badge {
  position: absolute;
  inset: 0;
  z-index: 3;
  margin: auto;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary-color);
  font-size: 2.1rem;
  box-shadow: var(--shadow-lg);
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-color);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  font-weight: 700;
}

.contact-line i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.address-line {
  font-weight: 600;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-control,
.form-select {
  min-height: 50px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.25rem rgba(8, 169, 216, 0.12);
}

.site-footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 25px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--accent-color);
}

.footer-logo {
  max-width: 230px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.footer-areas {
  margin-top: 2.4rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-areas h3 {
  margin-bottom: 0.25rem;
}

.footer-areas h4 {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-area-links {
  column-count: 4;
  column-gap: 2rem;
}

.footer-area-links a {
  display: block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.9;
  break-inside: avoid;
}

.footer-area-links a:hover {
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2rem;
  padding-top: 1.2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom a {
  color: var(--accent-color);
  font-weight: 800;
}

.footer-bottom a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.floating-contact {
  position: fixed;
  left: 22px;
  bottom: 24px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.floating-btn {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  animation: contactPulse 1.8s ease-in-out infinite;
  position: relative;
}

.floating-btn::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.22;
  animation: contactRing 1.8s ease-in-out infinite;
}

.floating-btn:hover {
  color: var(--white);
  transform: translateY(-5px) scale(1.04);
  animation-play-state: paused;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-call {
  background: var(--primary-gradient);
}

@keyframes contactPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@keyframes contactRing {
  0% {
    transform: scale(0.88);
    opacity: 0.35;
  }

  70% {
    transform: scale(1.28);
    opacity: 0;
  }

  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}

.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 30px;
  z-index: 1040;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--dark-gradient);
  color: var(--white);
  font-size: 1.45rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: var(--transition);
  animation: contactPulse 1.8s ease-in-out infinite;
}

.scroll-top-btn::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.22;
  animation: contactRing 1.8s ease-in-out infinite;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--primary-gradient);
  transform: translateY(-4px);
  animation-play-state: paused;
}

@media (max-width: 991.98px) {
  .navbar-brand img {
    width: 190px;
    max-height: 76px;
  }

  .navbar-collapse {
    padding: 1rem 0;
  }

  .navbar-nav .nav-link::after {
    left: 0;
    right: auto;
    width: 46px;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(2, 22, 61, 0.94) 0%, rgba(6, 27, 79, 0.78) 100%),
      url("../img/hero-roofing.png") center / cover no-repeat;
  }

  .section-padding {
    padding: 70px 0;
  }

  .parallax-section {
    background-attachment: scroll;
    min-height: 360px;
  }

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

  .footer-area-links {
    column-count: 3;
  }

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

@media (max-width: 575.98px) {
  body {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .navbar-nav .nav-link {
    font-size: 0.95rem;
  }

  .hero-section h1 {
    font-size: 2.25rem;
    line-height: 1.12;
  }

  .hero-section .lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.72rem;
  }

  .section-title h2,
  .page-hero h1 {
    font-size: 1.9rem;
    line-height: 1.18;
  }

  h2 {
    font-size: 1.85rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  .btn {
    font-size: 0.92rem;
    min-height: 42px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

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

  .page-hero {
    padding: 140px 0 70px;
  }

  .page-hero p {
    font-size: 0.98rem;
  }

  .parallax-content h2 {
    font-size: 1.9rem;
  }

  .service-card,
  .value-card,
  .quote-form,
  .contact-panel {
    padding: 1.25rem;
  }

  .service-card h3,
  .value-card h3,
  .gallery-grid h2 {
    font-size: 1.05rem;
  }

  .service-card p,
  .value-card p {
    font-size: 0.92rem;
  }

  .area-highlights strong {
    font-size: 1.65rem;
  }

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

  .trusted-logo {
    min-height: 96px;
  }

  .area-highlights {
    grid-template-columns: 1fr;
  }

  .areas-panel {
    max-height: none;
  }

  .area-chip {
    font-size: 0.8rem;
    min-height: 36px;
    padding: 0.45rem 0.72rem;
  }

  .footer-area-links {
    column-count: 2;
    column-gap: 1rem;
  }

  .site-footer h3 {
    font-size: 1.05rem;
  }

  .footer-areas h4,
  .footer-area-links a,
  .footer-bottom {
    font-size: 0.82rem;
  }

  .floating-contact {
    right: 14px;
    bottom: 16px;
  }

  .floating-btn {
    width: 56px;
    height: 56px;
    font-size: 1.55rem;
  }
}

@media (max-width: 575.98px) {
  body {
    padding-bottom: 78px;
  }

  .site-navbar {
    padding: 0.35rem 0;
  }

  .navbar-brand img {
    width: 150px;
    max-height: 62px;
  }

  .navbar-collapse {
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    margin-top: 0.35rem;
  }

  .navbar-nav .nav-link {
    padding: 0.62rem 0;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-content {
    padding-top: 92px;
    padding-bottom: 44px;
  }

  .hero-bg {
    inset: 0;
    transform: none !important;
  }

  .hero-content .min-vh-100 {
    min-height: auto !important;
  }

  .hero-section h1 {
    font-size: 2.05rem;
    margin: 0.75rem 0;
  }

  .hero-section .lead {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-actions {
    gap: 0.75rem;
    margin: 1.35rem 0;
  }

  .trust-row {
    gap: 0.75rem;
  }

  .trust-row strong {
    font-size: 1.1rem;
  }

  .trust-row span {
    font-size: 0.86rem;
  }

  .section-padding {
    padding: 52px 0;
  }

  .banner-image-section {
    padding: 42px 0 0;
  }

  .home-banner-img {
    border-radius: var(--radius-sm);
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .section-title h2,
  .page-hero h1,
  h2 {
    font-size: 1.78rem;
    overflow-wrap: anywhere;
  }

  .page-hero {
    padding: 118px 0 54px;
  }

  .parallax-content {
    padding: 64px 0;
  }

  .parallax-content h2 {
    font-size: 1.65rem;
  }

  .service-card,
  .value-card,
  .quote-form,
  .contact-panel {
    padding: 1.1rem;
  }

  .service-card i,
  .value-card i {
    width: 50px;
    height: 50px;
    font-size: 1.45rem;
    margin-bottom: 0.95rem;
  }

  .feature-image,
  .gallery-image,
  .gallery-image.tall {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-sm);
  }

  .project-media-section {
    padding-top: 58px;
  }

  .project-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .project-media-card {
    min-height: 160px;
  }

  .project-media-card img,
  .project-media-card video {
    min-height: 160px;
  }

  .project-media-badge {
    width: 54px;
    height: 54px;
    font-size: 1.7rem;
  }

  .areas-panel {
    gap: 0.55rem;
    padding: 0.9rem;
  }

  .area-highlights div {
    padding: 0.85rem;
  }

  .area-chip {
    font-size: 0.78rem;
    min-height: 34px;
    padding: 0.4rem 0.65rem;
  }

  .site-footer {
    padding: 52px 0 22px;
  }

  .footer-logo {
    max-width: 180px;
  }

  .contact-line {
    gap: 0.75rem;
    font-size: 0.9rem;
    overflow-wrap: anywhere;
  }

  .quick-actions .btn,
  .quote-form .btn {
    width: 100%;
  }

  .form-control,
  .form-select {
    min-height: 46px;
    font-size: 0.92rem;
  }

  .floating-contact {
    left: 12px;
    bottom: 12px;
    gap: 0.55rem;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.35rem;
  }

  .scroll-top-btn {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 380px) {
  .hero-section h1 {
    font-size: 1.82rem;
  }

  .section-title h2,
  .page-hero h1,
  h2 {
    font-size: 1.58rem;
  }

  .trusted-logo-grid {
    grid-template-columns: 1fr;
  }

  .footer-area-links {
    column-count: 1;
  }

  .project-image-grid {
    grid-template-columns: 1fr;
  }
}
.floating-contact {
    position: fixed;
    bottom: 25px;
    left: 0;
    right: 0;
    z-index: 9999;
    pointer-events: none;
}

.floating-btn {
    position: fixed;
    bottom: 25px;

    width: 70px;
    height: 70px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;
    color: #fff;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

    transition: transform 0.3s ease;
    pointer-events: auto;
}

/* WhatsApp - LEFT SIDE */
.floating-whatsapp {
    left: 25px;
    background: #25D366;
}

/* Call - RIGHT SIDE */
.floating-call {
    right: 25px;
    background: #0d6efd;
}

.floating-btn:hover {
    transform: scale(1.12);
    color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
    .floating-btn {
        width: 65px;
        height: 65px;
        font-size: 30px;
        bottom: 20px;
    }

    .floating-whatsapp {
        left: 15px;
    }

    .floating-call {
        right: 15px;
    }
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
}

.floating-btn {
    position: fixed;
    bottom: 25px;

    width: 72px;
    height: 72px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 34px;
    text-decoration: none;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.30);

    pointer-events: auto;

    transition: all 0.3s ease;
}

/* WhatsApp - LEFT */
.floating-whatsapp {
    left: 25px;
    background: #25D366;
}

/* Call - RIGHT */
.floating-call {
    right: 25px;
    background: #0d6efd;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: #fff;
}


/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;

    right: 35px;
    bottom: 115px;

    width: 52px;
    height: 52px;

    border: none;
    border-radius: 50%;

    background: #222;
    color: #fff;

    font-size: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 9999;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);

    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    background: #000;
}


/* Mobile */
@media (max-width: 576px) {

    .floating-btn {
        width: 65px;
        height: 65px;
        font-size: 30px;
        bottom: 18px;
    }

    .floating-whatsapp {
        left: 15px;
    }

    .floating-call {
        right: 15px;
    }

    .scroll-top-btn {
        width: 46px;
        height: 46px;

        right: 24px;
        bottom: 100px;

        font-size: 21px;
    }
}