/* CSS variables */
:root {
  --gold: #f7941d;
  --white: #fff;
  --black: #0a0a0a;
  --dark: #21222f;
  --nav-h: 72px;
}

/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: 16px;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* Custom container width */
.container,
.container-fluid,
.container-xxl,
.container-xl {
  max-width: 1588px !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.site-nav .nav-inner,
.hero .hero-inner {
  width: 100%;
  max-width: 1647px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero .hero-inner {
  padding: 0;
}

/* NAVBAR */
.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 46px 0 0;
  background: transparent;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: clamp(110px, 14vw, 264px);
  height: clamp(60px, 7.6vw, 144px);
  flex-shrink: 0;
}
.nav-logo-text {
  line-height: 1.1;
}
.nav-logo-text .name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  letter-spacing: 0.02em;
}
.nav-logo-text .tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  letter-spacing: 0.03em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.2vw, 1.1rem);
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.nav-links a {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

/* Social icons */
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: 1.5rem;
}
.nav-social a {
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.nav-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* CTA button */
.btn-accent {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 36px);
  letter-spacing: 0.06em;
  color: var(--white);
  border: none;
  background: transparent;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  line-height: 0.5;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn-accent::before,
.btn-accent::after,
.btn-accent .br::before,
.btn-accent .br::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--gold);
  border-style: solid;
}
.btn-accent::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}
.btn-accent::after {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}
.btn-accent .br::before {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}
.btn-accent .br::after {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}
.btn-accent:hover {
  color: var(--gold);
}

/* Hamburger (mobile) */
.nav-toggler {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: visible;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: 25%;
  width: clamp(200px, 28vw, 514px);
  height: clamp(200px, 28vw, 514px);
  background: url('/images/assets/hero-illustration.png') no-repeat center / contain;
  z-index: 2;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/images/assets/uvodna.jpg') center center / cover no-repeat;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.38) 55%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  max-width: 560px;
  padding-top: 204px;
}

.hero-heading {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: clamp(52px, 11vw, 120px);
  line-height: 0.62;
  color: var(--white);
  margin: 8rem 0 10rem;
  animation: fadeUp 0.9s ease both;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 10rem;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.25s ease both;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}

.stat.stat--first::after {
  position: absolute;
  content: '';
  background-image: url('/images/assets/square.png');
  /* background-size: cover; */
  width: 321px;
  height: 115px;
  top: -10px;
  left: -10px;
}

.stat-bracket {
  position: relative;
  display: flex;
  align-items: center;
}

.stat:first-child .stat-bracket-close {
  display: inline-block;
  position: relative;
  width: 16px;
}
.stat:first-child .stat-bracket-close::before,
.stat:first-child .stat-bracket-close::after {
  content: '';
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  border-color: var(--gold);
  border-style: solid;
}
.stat:first-child .stat-bracket-close::before {
  top: 0;
  border-width: 2px 2px 0 0;
}
.stat:first-child .stat-bracket-close::after {
  bottom: 0;
  border-width: 0 2px 2px 0;
}

.stat-num {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 6vw, 10rem);
  color: var(--gold);
  line-height: 1;
  padding: 0 0.25rem 0 0.4rem;
}

.stat-label {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.7vw, 3rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.2;
  max-width: 110px;
  text-wrap: nowrap;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile nav drawer */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: 'Dongle', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.mobile-menu a:hover {
  color: var(--gold);
}
.mobile-menu .close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* SERVICES SECTION */
.services-section {
  position: relative;
  background: #fff;
  color: #111;
  padding: 200px 0 181px;
}
.services-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
}
.services-eyebrow {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #555;
  display: block;
  margin-bottom: -0.8rem;
}
.services-heading {
  font-family: 'Dongle', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.8vw, 6rem);
  color: #111;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.services-body {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: 2rem;
  color: #555;
  line-height: 1;
  margin-bottom: 1.6rem;
}
.btn-vediet {
  font-size: clamp(30px, 2vw, 18px);
  text-wrap: nowrap;
}
.btn-vediet:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: start;
}

/* Swiper container for services */
.services-swiper {
  width: 100%;
  overflow: hidden;
}
.services-swiper .swiper-slide {
  width: 100%;
}
/* Swiper pagination reset — svc-dot stilovi pokrivaju dizajn */
.services-swiper .swiper-pagination-bullet {
  opacity: 1;
  margin: 0 !important;
}
.services-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}
.svc-card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.svc-card:hover .svc-img img {
  transform: scale(1.04);
}
.svc-card:hover .svc-title {
  color: var(--gold);
}
.svc-card:hover .svc-line {
  background: var(--gold);
}

.svc-img {
  overflow: visible;
  width: 100%;
  position: relative;
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.svc-body {
  padding: 1rem 0 0.5rem 40px;
}

/* LINE: visible on ALL cards, black by default, gold on active */
.svc-line {
  width: 67px;
  height: 9px;
  background: #1d1d1b;
  border-radius: 8px;
  display: block;
  transition: background 0.2s;
  position: absolute;
  bottom: -4px;
  left: 42px;
}

/* Active card: gold line + gold title */
.svc-card--active .svc-line {
  background: var(--gold);
}
.svc-card--active .svc-title {
  color: var(--gold);
}

.svc-title {
  font-family: 'Dongle', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #111;
  line-height: 1;
  transition: color 0.2s;
}
.svc-desc {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: 2rem;
  color: #555;
  line-height: 0.7;
}

.services-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 5rem 0;
}
.svc-dot {
  /* width: 32px;
  height: 4px; */
  width: 67px;
  height: 9px;
  background: #1d1d1b;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    width 0.2s;
  padding: 0;
  border-radius: 8px;
}
.svc-dot.active {
  background: var(--gold);
  width: 77px;
}
.svc-dot:hover:not(.active) {
  background: #aaa;
}

/* SPLIT SECTION */
.split-section {
  background: #f4f3f8;
  padding: 80px 0 225px;
  overflow: hidden;
  position: relative;
}
.split-section .button-accent {
  color: var(--dark) !important;
}
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 520px;
}
.split-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}
.split-eyebrow {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.35em;
  text-transform: lowercase;
  color: #231f20;
  display: block;
}
.split-heading {
  font-family: 'Dongle', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 70px);
  color: #111;
}
.split-body {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 36px);
  color: #99999c;
  line-height: 0.5;
  margin-bottom: 2rem;
}
.btn-split {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #111;
  padding: 0.4rem 1.4rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
  width: 100px;
}
.btn-split:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.split-images {
  position: absolute;
  width: 936px;
  height: 677px;
  right: 0;
  top: 0;
  transform: translateX(-50%); /* originalno */
}

@media (max-width: 1550px) {
  .split-images {
    transform: translateX(-30%);
  }
}

@media (max-width: 1280px) {
  .split-images {
    transform: translateX(-15%);
  }
}

@media (max-width: 1190px) {
  .split-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .split-images {
    position: static;
    transform: none;
    width: 100%;
    height: 380px;
  }

  .split-section {
    padding: 60px 0 0;
  }

  .split-img-l {
    clip-path: none;
  }
}
@media (max-width: 575px) {
  .split-images {
    height: 260px;
  }
}
.split-img-l {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  clip-path: polygon(70% 55%, 70% 0, 100% 0, 100% 100%, 0 100%, 0 55%);
  width: 100%;
}

/* OFFERINGS SECTION */
.offerings-section {
  background: var(--dark);
  color: var(--white);
  padding: 50px 0 90px;
}
.offerings-intro {
  text-align: center;
  margin-bottom: 60px;
}
.offerings-eyebrow {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 36px);
  letter-spacing: 0.4em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: -0.9rem;
}
.offerings-heading {
  font-family: 'Dongle', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  color: var(--gold);
  line-height: 1.2;
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.offer-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 2.8vw, 40px);
  color: var(--white);
  line-height: 1;
  text-align: center;
  margin-bottom: 2rem;
  width: 220px;
}
.offer-label::before,
.offer-label::after,
.offer-label .br::before,
.offer-label .br::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 44px;
  border-color: var(--gold);
  border-style: solid;
}
.offer-label::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}
.offer-label::after {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}
.offer-label .br::before {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}
.offer-label .br::after {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-flex;
  flex-direction: column;
  text-align: left;
}
.offer-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 36px);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}
.offer-list li::before {
  content: '';
  flex-shrink: 0;
  width: 29px;
  height: 2.8px;
  background: var(--gold);
  border-radius: 2px;
}

/* GALLERY SECTION */
.gallery-section {
  background: var(--white);
  position: relative;
  padding: 380px 0 240px;
}
.gallery-section::after {
  content: '';
  position: absolute;
  top: -43px;
  left: 8%;
  width: clamp(180px, 28vw, 514px);
  height: clamp(180px, 28vw, 514px);
  background: url('/images/assets/hero-illustration.png') no-repeat center / contain;
  z-index: 2;
  pointer-events: none;
}
.gallery-section::before {
  content: '';
  position: absolute;
  top: -180px;
  right: 5%;
  width: clamp(160px, 26vw, 500px);
  height: clamp(160px, 27vw, 514px);
  background: url('/images/assets/female-figure.png') no-repeat center / contain;
  z-index: 2;
  pointer-events: none;
}
.gallery-heading {
  font-family: 'Dongle', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 8.5vw, 131px);
  color: #111;
  text-align: center;
  margin-bottom: 50px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-col:nth-child(1) .gallery-item:nth-child(1) {
  height: 351px;
}
.gallery-col:nth-child(1) .gallery-item:nth-child(2) {
  height: 481px;
}
.gallery-col:nth-child(2) .gallery-item:nth-child(1) {
  height: 481px;
}
.gallery-col:nth-child(2) .gallery-item:nth-child(2) {
  height: 351px;
}
.gallery-col:nth-child(3) .gallery-item:nth-child(1) {
  height: 351px;
}
.gallery-col:nth-child(3) .gallery-item:nth-child(2) {
  height: 481px;
}
.gallery-col:nth-child(4) .gallery-item:nth-child(1) {
  height: 481px;
}
.gallery-col:nth-child(4) .gallery-item:nth-child(2) {
  height: 278px;
}

/* Gallery badge — hidden by default, shown on hover */
.gallery-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  z-index: 3;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);

  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-badge {
  opacity: 1;
  transform: translateY(0);
}

.badge-tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: 'Dongle', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  padding: 0px 29px;
  border-radius: 37px;
  letter-spacing: 0.02em;
  width: fit-content;
  height: 40px;
}
.badge-date {
  display: inline-block;
  color: #fff;
  font-family: 'Dongle', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.5);
}

/* FOOTER */

.footer-cta-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--dark);
  padding: 2rem 3rem;
  max-width: 560px;
  margin: 40px auto 0;
}
.footer-cta-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-cta-logo .name {
  font-family: 'Dongle', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.1;
}
.footer-cta-text {
  font-family: 'Dongle', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--gold);
  white-space: nowrap;
}
.footer-info {
  background: #f8f4f9;
  padding: 200px 0 50px;
  position: relative;
}
.footer-box {
  background-color: var(--dark);
  padding: 20px 40px 20px 84px;
  width: 774px;
  height: 239px;
  margin: 0 auto;
  position: absolute;
  justify-content: space-between;
  left: 50%;
  top: 3px;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.footer-box img {
  width: 262px;
  height: 125px;
}
.footer-box-title {
  color: var(--gold);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 65px);
  text-wrap: nowrap;
}
.footer-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-left: 14%;
}
.footer-col-title {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 2.5vw, 35px);
  color: #333;
  margin-bottom: 0.5rem;
  display: block;
}
.footer-col p,
.footer-col a {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 35px);
  color: #808285;
  text-decoration: none;
  display: block;
  margin-bottom: 0;
  line-height: 1.9rem;
}
.footer-col a:hover {
  color: var(--gold);
}

.footer-cities {
  background: var(--dark);
  padding: 30px 0;
  text-align: center;
}
.footer-cities-title {
  font-family: 'Dongle', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 42px);
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.footer-cities-list {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: clamp(18px, 2.4vw, 34.5px);
  line-height: 2rem;
  color: var(--white);
}
.footer-cities-list span {
  margin: 0 1rem;
}

.footer-bottom {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 9px 0;
  text-align: center;
}
.footer-bottom p {
  font-family: 'Dongle', sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 33pt;
  color: #231f20;
  margin: 0;
}
.footer-bottom a {
  text-decoration: none;
  color: #231f20;
}
.footer-bottom a:hover {
  color: var(--gold);
}
.footer-bottom .sep {
  margin: 0 0.1rem;
}

/* 
   RESPONSIVE
 */

@media (max-width: 1190px) {
  .stat.stat--first::after {
    display: none;
  }

  .split-img-l {
    clip-path: none;
    min-height: 300px;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .nav-links,
  .nav-social,
  .btn-accent {
    display: none;
  }

  .btn-accent.btn-vediet.btn-split.text-dark {
    display: block;
    margin-bottom: 3rem;
  }
  .nav-toggler {
    display: block;
  }

  .hero-content {
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .split-inner {
    grid-template-columns: 1fr;
  }
  .split-img-l {
    clip-path: none;
    min-height: 300px;
    width: 100%;
  }
  .split-section {
    padding: 60px 0 0;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .gallery-section {
    padding: 200px 0 120px;
  }
  .gallery-section::after,
  .gallery-section::before {
    width: 220px;
    height: 220px;
  }

  .footer-box {
    width: 90%;
    height: auto;
    padding: 20px 30px;
  }
  .footer-box img {
    width: 160px;
    height: auto;
  }
  .footer-info-grid {
    padding-left: 0;
  }

  .stat.stat--first::after {
    display: none;
  }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
  .hero-stats {
    gap: 1.5rem;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    padding-top: 50px;
  }

  .hero-heading {
    margin: 2rem 0;
  }

  .gallery-section {
    padding: 60px 0 60px;
  }
  .gallery-section::after,
  .gallery-section::before {
    display: none;
  }

  .footer-box {
    width: 95%;
    padding: 16px 20px;
    flex-direction: column;
    height: auto;
    gap: 10px;
    align-items: flex-start !important;
  }
  .footer-box img {
    width: 130px;
    height: auto;
  }
  .footer-box-title {
    text-wrap: wrap;
  }
  .footer-info-grid {
    grid-template-columns: 1fr;
    padding-left: 0;
    text-align: center;
  }
  .footer-cta-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
  }
  .footer-cta-text {
    white-space: normal;
  }
  .stat.stat--first::after {
    display: none;
  }

  .services-section {
    padding: 50px 0 40px;
  }

  .services-body {
    font-size: 25px;
  }

  .gallery-badge {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile (≤575px) */
@media (max-width: 575px) {
  .hero-content {
    padding-top: calc(var(--nav-h) + 2rem);
  }
  .hero-heading {
    margin-bottom: 1.8rem;
  }
  .hero-stats {
    gap: 1.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .svc-card .svc-img {
    height: 200px !important;
  }

  .split-section {
    padding: 50px 0 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-col .gallery-item {
    height: 220px !important;
  }
  .gallery-section {
    padding: 80px 0 60px;
  }

  .footer-cities-list span {
    margin: 0 0.4rem;
  }
  .footer-col p,
  .footer-col a {
    line-height: 1.6rem;
  }

  .stat.stat--first::after {
    display: none;
  }
}
