@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&family=Exo:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700;800&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400&display=swap');

:root {
  --primary: #ff0080;
  --primary-dark: #cc0066;
  --primary-light: #ff4da6;
  --accent-pink: #ff0080;
  --accent-yellow: #ffd600;
  --navy: #181b57;
  --navy-mid: #212573;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --light-gray: #f2f2f2;
  --mid-gray: #9e9e9e;
  --dark-gray: #444444;
  --black: #111111;
  --text-body: #555555;
  --text-dark: #222222;
  --font-primary: 'Barlow Condensed', sans-serif;
  --font-secondary: 'Exo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-alt: 'Roboto', sans-serif;
  --section-gap: 100px;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);
  --shadow-pink: 0 8px 28px rgba(255, 0, 128, 0.35);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --topbar-h: 40px;
  --navbar-h: 88px;
}

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

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

body.nav-scroll-lock {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

section {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

#searchToggle {
        display: none;
}

.top-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 35%, #8b0057 70%, var(--primary) 100%);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.top-bar .tb-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
}

.tb-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tb-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-alt);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  transition: var(--transition);
}

.tb-item:hover {
  color: var(--white);
}

.tb-item i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.tb-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.tb-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}

.main-navbar {
  background: #f3eade !important;
  height: var(--navbar-h);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-slow);
}

.main-navbar.scrolled {
  height: 70px;
  background: #ffffff !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.13);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
}

.navbar-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: auto;
  width: auto;
  transition: var(--transition);
}

.main-navbar.scrolled .navbar-logo img {
  height: 48px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 20px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.15px;
  position: relative;
}

.nav-link i.nav-icon-home {
  font-size: 15px;
}

.nav-home-link {
  padding: 6px 10px;
}

.nav-home-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.nav-link i.arr {
  font-size: 10px;
  color: var(--mid-gray);
  transition: transform 0.3s;
}

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

.nav-link:hover i.arr {
  transform: rotate(180deg);
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
  min-width: 225px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.26s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-top: 3px solid var(--primary);
  z-index: 999;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-dropdown a i {
  width: 18px;
  color: var(--primary);
  font-size: 13px;
}

.nav-dropdown a:hover {
  background: rgba(255, 0, 128, 0.05);
  color: var(--primary);
  padding-left: 28px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-icon-btn {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 18px;
  transition: var(--transition);
  flex-shrink: 0;
  text-decoration: none;
  padding: 8px;
}

.nav-icon-btn:hover {
  color: var(--primary);
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.15);
  margin: 0 4px;
}

.btn-quote {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 0 52px 0 22px;
  height: 46px;
  border-radius: var(--radius-pill);
  border: none;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-quote:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(24, 27, 87, 0.35);
}

.btn-quote .btn-splash {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 48px;
  background-image: url('../images/button_bg.png');
  background-size: cover;
  background-position: center;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  pointer-events: none;
}

.navbar-toggler-custom {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--light-gray);
  border: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.navbar-toggler-custom:hover {
  background: var(--primary);
}

.navbar-toggler-custom span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform, opacity;
}

.navbar-toggler-custom:hover span {
  background: var(--white);
}

.navbar-toggler-custom.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler-custom.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggler-custom.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1050;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
  transition: right 0.48s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.48s;
  padding-bottom: 40px;
  visibility: hidden;
}

.mobile-nav.open {
  right: 0;
  visibility: visible;
  transition: right 0.38s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0s linear 0s;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
}

.mobile-nav-header img {
  height: 46px;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
  font-size: 14px;
}

.mobile-nav-close:hover {
  background: var(--primary);
  color: var(--white);
}

.mobile-nav-links {
  padding: 12px 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
  cursor: pointer;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  background: rgba(255, 0, 128, 0.04);
}

.mobile-nav-link i.toggle-icon {
  font-size: 10px;
  color: var(--mid-gray);
  transition: transform 0.3s;
}

.mobile-nav-link.expanded i.toggle-icon {
  transform: rotate(180deg);
}

.mobile-sub-menu {
  display: none;
  background: var(--off-white);
}

.mobile-sub-menu.open {
  display: block;
}

.mobile-sub-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 38px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark-gray);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.mobile-sub-menu a i {
  color: var(--primary);
  width: 16px;
  font-size: 12px;
}

.mobile-sub-menu a:hover {
  color: var(--primary);
  padding-left: 46px;
}

.mobile-nav-footer {
  padding: 22px 22px 0;
}

.mobile-nav-contact {
  background: rgba(255, 0, 128, 0.05);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 14px;
}

.mobile-nav-contact p {
  font-family: var(--font-alt);
  font-size: 12px;
  color: var(--mid-gray);
  margin-bottom: 4px;
}

.mobile-nav-contact a {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.48s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.search-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(13, 13, 43, 0.97);
  padding: 24px 40px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-panel.open {
  transform: translateY(0);
}

.search-panel input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 22px;
  outline: none;
}

.search-panel input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-panel button {
  background: var(--navy);
  border: none;
  border-radius: var(--radius-pill);
  color: var(--white);
  padding: 12px 28px;
  font-family: var(--font-secondary);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.search-panel button:hover {
  background: var(--primary);
}

.search-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  padding: 4px;
}

.search-close:hover {
  color: var(--white);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}

.hero-swiper {
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 800px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(237, 228, 203, 0.22) 0%, rgba(237, 228, 203, 0.08) 50%, rgba(237, 228, 203, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 70px 80px;
  display: flex;
  align-items: center;
}

.slide-left {
  width: 48%;
  max-width: 600px;
}

.slide-tag {
  display: inline-block;
  font-family: var(--font-alt);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}

.slide-title {
  font-family: var(--font-primary);
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}

.title-small-icon {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: 54px;
  border-radius: 30px;
  object-fit: cover;
  margin-left: 10px;
  position: relative;
  top: -4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.slide-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  color: #555;
  max-width: 430px;
  margin-bottom: 36px;
}

.slide-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.slide-cta {
  height: 50px;
  font-size: 14px;
  padding: 0 56px 0 24px;
  flex-shrink: 0;
}

.slide-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.slide-phone-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffa826;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.slide-phone-icon i {
  color: #fff;
  font-size: 16px;
}

.slide-phone:hover .slide-phone-icon {
  background: var(--primary);
}

.slide-phone:hover .slide-phone-icon i {
  color: var(--white);
}

.slide-phone-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.slide-phone-text .label {
  font-family: var(--font-alt);
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slide-phone-text .number {
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
}

.slide-phone:hover .slide-phone-text .number {
  color: var(--primary);
}

.slide-social {
  position: absolute;
  right: 40px;
  bottom: 44px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  z-index: 10;
}

.slide-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  transition: var(--transition);
}

.slide-social a:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--navy);
  transform: scale(1.08);
}

.hero-slide .slide-tag,
.hero-slide .slide-title,
.hero-slide .slide-desc,
.hero-slide .slide-actions {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.swiper-slide-active .slide-tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.swiper-slide-active .slide-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.20s;
}

.swiper-slide-active .slide-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.33s;
}

.swiper-slide-active .slide-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.46s;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
  color: var(--navy);
  font-size: 15px;
  transition: var(--transition);
  overflow: hidden;
}

.hero-arrow .arrow-bg {
  position: absolute;
  inset: 0;
  background: var(--primary);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 0;
}

.hero-arrow i {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.hero-arrow:hover {
  box-shadow: 0 8px 28px rgba(255, 0, 128, 0.4);
}

.hero-arrow:hover .arrow-bg {
  transform: scale(1);
}

.hero-arrow:hover i {
  color: var(--white);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-prev::before,
.hero-next::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.06);
  z-index: -1;
}

.hero-prev::before {
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-next::before {
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-pagination {
  position: absolute !important;
  bottom: 26px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  z-index: 20;
  display: flex !important;
  gap: 8px;
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.28);
  opacity: 1;
  border-radius: 50%;
  transition: var(--transition);
  margin: 0 !important;
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background: var(--primary);
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 990;
  border: none;
}

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

.scroll-top:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--navy);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary-custom:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-pink);
  transform: translateY(-2px);
}

.choose-section {
  background: #ffffff;
  padding: var(--section-gap) 0;
}

.choose-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.choose-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 56px;
}

.choose-hdr-left {
  flex: 1;
  max-width: 50%;
}

.choose-subtitle-inline {
  font-family: var(--font-secondary);
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--black);
  text-transform: none;
  letter-spacing: 0;
  margin-right: 16px;
  display: inline-block;
  vertical-align: middle;
}

.choose-title {
  font-family: var(--font-primary);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -1.2px;
}

.choose-title-light {
  font-weight: 600;
  color: #9e9e9e;
}

.choose-hdr-right {
  flex: 1;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  padding-left: 40px;
}

.choose-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
}

.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.choose-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.choose-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.card-referrals {
  background: #fdfaf5;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.referrals-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fdfaf5;
  margin-right: -12px;
  object-fit: cover;
}

.avatar-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff7b00;
  border: 2px solid #fdfaf5;
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  z-index: 2;
}

.referrals-text {
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.referrals-percent {
  font-family: var(--font-primary);
  font-size: 56px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.card-delivery {
  background-size: cover;
  background-position: center;
  padding: 40px 32px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 380px;
  justify-content: flex-end;
  position: relative;
}

.delivery-title {
  font-family: var(--font-secondary);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.delivery-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 24px;
}

.delivery-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.delivery-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.3;
  opacity: 0.75;
}

.choose-col-center {
  background-size: contain;
  background-position: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 580px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.center-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center-title {
  font-family: var(--font-secondary);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.center-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 420px;
  margin-bottom: 24px;
}

.choose-col-right {
  background: #fdfaf5;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

.choose-shape-container {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 220px;
  height: 220px;
  z-index: 1;
  display: block;
}

.choose-custom-shape {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  transition: var(--transition);
}

.choose-custom-shape:hover {
  transform: scale(1.03);
}

#chooseEmblemMask {
  mask-type: alpha;
}

.choose-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 160px;
  position: relative;
  z-index: 2;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrapper svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-title {
  font-family: var(--font-secondary);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-body);
}

.renovations-section {
  background: #ffffff;
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.renovations-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.renovations-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.renovations-hdr-left {
  max-width: 65%;
}

.renovations-title {
  font-family: var(--font-primary);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.renovations-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 600px;
}

.renovations-hdr-right {
  flex-shrink: 0;
}

.renovations-slider-container {
  position: relative;
  width: 100%;
}

.renovations-slider {
  width: 100%;
  margin: 0 -15px;
  overflow: hidden;
  padding: 10px 0;
}

.renovations-slider .slick-slide {
  padding: 0 15px;
  outline: none;
}

.renovation-slide {
  height: auto;
}

.renovation-card {
  height: 520px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.renovation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

.renovation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.renovation-card-title {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  z-index: 2;
  white-space: nowrap;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.renovations-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 1.5px solid #eaeaea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 15px;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.renovations-prev {
  left: -23px;
}

.renovations-next {
  right: -23px;
}

.renovations-prev:hover,
.renovations-next:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-pink);
  transform: translateY(-50%) scale(1.05);
}

.projects-section {
  background: #fdfaf5;
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.projects-brush-bg {
  position: absolute;
  right: 0;
  top: 30%;
  transform: translateY(-50%);
  width: auto;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}

.projects-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.projects-header {
  position: relative;
  text-align: center;
  margin-bottom: 56px;
}

.projects-hdr-left {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.projects-subtitle {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.projects-title {
  font-family: var(--font-primary);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.projects-hdr-right {
  position: absolute;
  right: 0;
  bottom: 8px;
}

.projects-container .projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.project-card {
  background: #ffffff;
  border: 1.5px solid #eaeaea;
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(24, 27, 87, 0.1);
}

.project-img-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.project-card:hover .project-img {
  transform: scale(1.06);
}

.project-card-body {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.project-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.project-card-title {
  font-family: var(--font-secondary);
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.2px;
}

.project-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 14px;
  transition: var(--transition);
}

.project-card:hover .project-arrow-btn {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

.project-desc-box {
  border-left: 2.5px solid #d9d9d9;
  padding-left: 14px;
  margin-left: 2px;
}

.project-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
}

.testimonials-section {
  background: #ffffff;
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.testimonials-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.testimonials-col-left {
  flex: 1;
  max-width: 55%;
  display: flex;
  flex-direction: column;
}

.testimonials-col-right {
  flex: 1;
  max-width: 45%;
}

.testimonials-title {
  font-family: var(--font-primary);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}

.testimonials-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 560px;
}

.testimonials-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin: 28px 0;
}

.testimonials-slider-wrapper {
  position: relative;
  width: 100%;
}

.testimonials-swiper {
  width: 100%;
  padding-bottom: 24px;
}

.testimonials-swiper .swiper-slide {
  opacity: 0;
  pointer-events: none;
}

.testimonials-swiper .swiper-slide-active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-card {
  background: #fdfaf5;
  border-radius: var(--radius-md);
  padding: 40px 48px;
  position: relative;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.quote-mark {
  font-family: var(--font-primary);
  font-size: 80px;
  font-weight: 800;
  line-height: 0.8;
  color: var(--navy);
  opacity: 0.25;
  user-select: none;
  flex-shrink: 0;
  margin-top: -10px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}

.testimonial-author-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
}

.author-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: var(--shadow-sm);
}

.author-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.author-role {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--mid-gray);
}

.testimonial-controls {
  position: absolute;
  bottom: 10px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.testimonial-pagination {
  position: static !important;
  width: auto !important;
  display: flex !important;
  gap: 6px;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(24, 27, 87, 0.15) !important;
  opacity: 1 !important;
  border-radius: 50%;
  transition: var(--transition);
  margin: 0 !important;
  cursor: pointer;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--navy) !important;
  transform: scale(1.2);
}

.testimonial-sep {
  width: 1px;
  height: 16px;
  background: rgba(0, 0, 0, 0.2);
}

.testimonial-view-more {
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 13.5px;
  color: var(--black);
  transition: var(--transition);
  white-space: nowrap;
}

.testimonial-view-more:hover {
  color: var(--primary);
}

.testimonials-img-wrapper {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.testimonials-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}

.testimonials-img-wrapper:hover .testimonials-img {
  transform: scale(1.03);
}

.blog-carousel-section {
  background: #ffffff;
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}

.blog-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.blog-row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.blog-col-left {
  flex: 0 0 35%;
  max-width: 35%;
  display: flex;
  flex-direction: column;
}

.blog-col-right {
  flex: 0 0 65%;
  max-width: 65%;
  overflow: hidden;
}

.blog-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-title {
  font-family: var(--font-primary);
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.blog-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: #777777;
  margin-bottom: 40px;
}

.blog-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 420px;
}

.btn-blogs-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 0 52px 0 22px;
  height: 46px;
  border-radius: var(--radius-pill);
  border: none;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-blogs-cta:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(24, 27, 87, 0.35);
}

.btn-blogs-cta .btn-splash {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 48px;
  background-image: url('../images/button_bg.png');
  background-size: cover;
  background-position: center;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  pointer-events: none;
}

.blog-slider-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.blog-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: 2px solid var(--black);
  color: var(--black);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}

.blog-nav-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.blog-nav-btn.swiper-button-disabled {
  border: 1.5px solid #dcdcdc !important;
  color: #dcdcdc !important;
  background: transparent !important;
  cursor: not-allowed;
  opacity: 1 !important;
  pointer-events: none;
}

.blog-swiper {
  width: 100%;
  overflow: hidden;
}

.blog-swiper .swiper-wrapper {
  align-items: stretch;
}

.blog-swiper .swiper-slide {
  height: auto;
  padding: 6px 4px 10px;
}

.blog-carousel-section .blog-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 22px rgba(24, 27, 87, 0.08);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-carousel-section .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(24, 27, 87, 0.14);
}

.blog-carousel-section .blog-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  flex-shrink: 0;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.blog-carousel-section .blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-carousel-section .blog-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 18px;
}

.blog-carousel-section .blog-card-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.blog-carousel-section .blog-card-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #777777;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-carousel-section .blog-view-more {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  margin-bottom: 16px;
  align-self: flex-start;
}

.blog-carousel-section .blog-view-more::after {
  content: '\2192';
  font-size: 14px;
  transition: transform 0.2s ease;
}

.blog-carousel-section .blog-view-more:hover {
  color: var(--primary);
}

.blog-carousel-section .blog-view-more:hover::after {
  transform: translateX(4px);
}

.blog-carousel-section .blog-card-divider {
  width: 100%;
  height: 1px;
  background: #eeeeee;
  margin-bottom: 14px;
}

.blog-carousel-section .blog-card-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #999;
}

.blog-carousel-section .blog-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-carousel-section .blog-meta-item i {
  color: #c5a47e;
  font-size: 13px;
}

.footer-section {
  background: url('../images/footerbg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
}

.footer-subscribe-container {
  max-width: 1600px;
  margin: 0 auto 60px auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
}

.footer-subscribe-box {
  width: 100%;
  max-width: 650px;
}

.footer-subscribe-form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  padding: 4px;
  background: rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.footer-subscribe-form:focus-within {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.35);
}

.footer-subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 24px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
}

.footer-subscribe-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.btn-subscribe {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 0 52px 0 22px;
  height: 44px;
  border-radius: var(--radius-pill);
  border: none;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-subscribe:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-subscribe .btn-splash {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 48px;
  background-image: url('../images/button_bg.png');
  background-size: cover;
  background-position: center;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  pointer-events: none;
}

.footer-main-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px 50px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.brand-col .footer-logo img {
  height: 54px;
  width: auto;
  margin-bottom: 24px;
}

.brand-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: var(--transition);
}

.footer-social-icons a:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-secondary);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 6px;
  max-width: 280px;
}

.footer-hours li .day {
  font-weight: 500;
}

.footer-hours li .time {
  color: rgba(255, 255, 255, 0.8);
}

.footer-map-wrapper {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0;
}

.footer-info-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 30px 40px;
}

.footer-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

a.footer-info-item:hover {
  color: var(--white);
}

.footer-info-item i {
  color: var(--primary);
  font-size: 15px;
}

.footer-copyright-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 35%, #8b0057 70%, var(--primary) 100%);
  padding: 16px 0;
}

.footer-copyright-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.copyright-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.copyright-text a {
  color: var(--white);
  font-weight: 700;
  transition: var(--transition);
}

.copyright-text a:hover {
  text-decoration: underline;
}

.sitemap-link {
  font-size: 13.5px;
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
}

.sitemap-link:hover {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.page-hero {
  position: relative;
  background: linear-gradient(rgba(24, 27, 87, 0.82), rgba(24, 27, 87, 0.82)), url('https://images.unsplash.com/photo-1562259949-e8e7689d7828?auto=format&fit=crop&w=1600&q=80') center / cover no-repeat;
  padding: 90px 40px;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero-title span {
  color: #ff0080;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 3.2vw, 14px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  padding: 0 15px;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color .3s;
  display: inline-flex;
  align-items: center;
}

.breadcrumb-nav a:hover {
  color: #ff0080;
}

.breadcrumb-nav .bc-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.breadcrumb-nav .bc-current {
  color: #ff0080;
  font-weight: 600;
  text-align: center;
  word-break: break-word;
}

.projects-section {
  padding: 72px 0 80px;
  background: #fff;
}

.projects-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

.projects-header {
  text-align: center;
  margin-bottom: 44px;
}

.projects-header .section-tag {
  display: inline-block;
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ff0080;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.projects-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  color: #181b57;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #444;
  background: #f2f2f2;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 8px 22px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  background: rgba(255, 0, 128, 0.08);
  color: #ff0080;
  border-color: rgba(255, 0, 128, 0.25);
}

.filter-btn.active {
  background: #ff0080;
  color: #fff;
  border-color: #ff0080;
  box-shadow: 0 4px 18px rgba(255, 0, 128, 0.3);
}

.projects-inner .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.project-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #eee;
  display: block;
  transition: transform 0.3s ease;
}

.project-item:focus-visible {
  outline: 3px solid #ff0080;
  outline-offset: 2px;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.project-item:hover img {
  transform: scale(1.07);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(24, 27, 87, 0.82) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.project-overlay-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ff0080;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  align-self: flex-end;
  box-shadow: 0 4px 16px rgba(255, 0, 128, 0.4);
  transition: transform 0.25s ease;
}

.project-item:hover .project-overlay-icon {
  transform: scale(1.1);
}

.project-overlay-label {
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

.project-item[data-hidden="true"] {
  display: none;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 26, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-box {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 88vw;
  max-height: 80vh;
}

#lightboxImg {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
  display: block;
  transition: opacity 0.2s ease;
}

#lightboxImg.fading {
  opacity: 0;
}

.lb-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.lb-close:hover {
  background: #ff0080;
  border-color: #ff0080;
}

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 2;
}

.lb-arrow:hover {
  background: #ff0080;
  border-color: #ff0080;
}

.lb-prev {
  left: -68px;
}

.lb-next {
  right: -68px;
}

.lb-arrow:hover.lb-prev {
  transform: translateY(-50%) translateX(-2px);
}

.lb-arrow:hover.lb-next {
  transform: translateY(-50%) translateX(2px);
}

.lb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 16px;
  padding: 0 4px;
}

.lb-label {
  font-family: 'Exo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lb-counter {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.lb-counter span {
  color: #ff0080;
}

.lb-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  max-width: 88vw;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 0, 128, 0.5) transparent;
}

.lb-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
  opacity: 0.55;
}

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

.lb-thumb.active {
  border-color: #ff0080;
  opacity: 1;
}

.lb-thumb:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.project-cta-banner {
  background: linear-gradient(90deg, #181b57 0%, #212573 40%, #8b0057 75%, #ff0080 100%);
  padding: 56px 40px;
}

.project-cta-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.project-cta-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.inner-cta-banner,
.about-cta-banner,
.reviews-cta-banner,
.contact-cta-banner,
.service-cta-banner,
.project-cta-banner {
  background: linear-gradient(90deg, #181b57 0%, #212573 40%, #8b0057 75%, #ff0080 100%);
  padding: 56px 40px;
}

.inner-cta-inner,
.about-cta-inner,
.reviews-cta-inner,
.contact-cta-inner,
.service-cta-inner,
.project-cta-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.inner-cta-text,
.about-cta-text,
.reviews-cta-text,
.contact-cta-text,
.service-cta-text,
.project-cta-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.contact-cta-text {
  margin-bottom: 0;
}

.about-section {
  padding: 50px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.about-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(24, 27, 87, 0.18);
}

.about-img-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: linear-gradient(135deg, #181b57, #212573);
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(24, 27, 87, 0.35);
  min-width: 120px;
}

.about-badge .badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  color: #ff0080;
}

.about-badge .badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 4px;
}

.about-text-col {
  padding-left: 10px;
}

.about-section-tag {
  display: inline-block;
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ff0080;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.about-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 600;
  line-height: 1.1;
  color: #181b57;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.about-section-title span {
  color: #ff0080;
}

.about-section-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.78;
  color: #555555;
  margin-bottom: 18px;
}

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

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff0080, #ff4da6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255, 0, 128, 0.3);
}

.about-feature-icon i {
  color: #fff;
  font-size: 15px;
}

.about-feature-text h4 {
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #181b57;
  margin-bottom: 2px;
}

.about-feature-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

.stats-section {
  background: #f8f7f4;
  padding: 64px 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1260px;
  margin: 0 auto;
  text-align: center;
}

.stat-card {
  padding: 32px 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(24, 27, 87, 0.13);
}

.stat-card .s-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  color: #181b57;
  display: block;
}

.stat-card .s-num span {
  color: #ff0080;
}

.stat-card .s-label {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
  display: block;
}

.history-section {
  padding: 100px 0;
  background: #f8f7f4;
}

.history-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.history-header {
  text-align: center;
  margin-bottom: 72px;
}

.history-header .section-tag {
  display: inline-block;
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ff0080;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.history-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  color: #181b57;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.history-header h2 span {
  color: #ff0080;
}

.history-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #777;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.timeline {
  position: relative;
  padding: 8px 0;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ff0080 0%, #181b57 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 32px;
  padding-right: 52px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-right: 0;
  padding-left: 52px;
}

.timeline-center {
  position: absolute;
  top: 18px;
  right: -22px;
  z-index: 2;
}

.timeline-item:nth-child(even) .timeline-center {
  right: auto;
  left: -22px;
}

.timeline-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #181b57, #2e3399);
  border: 3px solid #f8f7f4;
  box-shadow: 0 0 0 3px #181b57, 0 4px 16px rgba(24, 27, 87, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-icon-wrap i {
  color: #fff;
  font-size: 16px;
}

.timeline-icon-wrap:hover {
  transform: scale(1.1);
}

.timeline-icon-active {
  background: linear-gradient(135deg, #ff0080, #ff4da6);
  box-shadow: 0 0 0 3px #ff0080, 0 4px 18px rgba(255, 0, 128, 0.4);
  animation: pulse-icon 2.2s ease-in-out infinite;
}

.timeline-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 4px 18px rgba(24, 27, 87, 0.08);
  border-right: 4px solid #d6d6d6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-card {
  border-right: none;
  border-left: 4px solid #ff0080;
}

.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(24, 27, 87, 0.13);
}

.timeline-card-active {
  background: linear-gradient(135deg, #181b57 0%, #212573 100%);
  box-shadow: 0 8px 30px rgba(24, 27, 87, 0.28);
  border-color: #ff0080 !important;
}

.timeline-card-active h3 {
  color: #fff !important;
}

.timeline-card-active p {
  color: rgba(255, 255, 255, 0.85) !important;
}

.timeline-year {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: #181b57;
  border-radius: 999px;
  padding: 3px 13px;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.timeline-year-active {
  background: #ff0080;
  box-shadow: 0 3px 12px rgba(255, 0, 128, 0.38);
}

.timeline-card h3 {
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #181b57;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.timeline-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.74;
  color: #666;
  margin: 0;
}

.rating-banner {
  background: #f8f7f4;
  padding: 52px 40px;
  border-bottom: 1px solid #eeeeee;
}

.rating-banner-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.rating-banner-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.rating-big-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  color: #181b57;
}

.rating-big-num span {
  color: #ff0080;
}

.rating-info-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rating-stars-row {
  display: flex;
  gap: 4px;
}

.rating-stars-row i {
  color: #ffd600;
  font-size: 22px;
}

.rating-info-col .out-of {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
}

.rating-info-col .total-reviews {
  font-family: 'Exo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #181b57;
}

.rating-banner-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 260px;
  flex: 1;
  max-width: 400px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #555;
  width: 44px;
  text-align: right;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 3px;
}

.bar-label i {
  color: #ffd600;
  font-size: 11px;
}

.bar-track {
  flex: 1;
  height: 7px;
  background: #e5e5e5;
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd600, #ff0080);
}

.bar-count {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
  width: 24px;
  text-align: left;
  flex-shrink: 0;
}

.reviews-section {
  padding: 50px 0;
  background: #ffffff;
}

.reviews-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

.reviews-header {
  margin-bottom: 56px;
}

.reviews-header .section-tag {
  display: inline-block;
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ff0080;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.reviews-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  color: #181b57;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: #f8f7f4;
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff0080, #ffd600);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(24, 27, 87, 0.12);
  border-color: rgba(255, 0, 128, 0.1);
}

.review-card:hover::before {
  opacity: 1;
}

.review-quote-icon {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: rgba(24, 27, 87, 0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-stars i {
  color: #ffd600;
  font-size: 14px;
}

.review-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.76;
  color: #555;
  margin-bottom: 24px;
}

.review-divider {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 20px;
}

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

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #ff0080;
}

.reviewer-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #181b57, #ff0080);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.reviewer-name {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #ffd600;
  line-height: 1.2;
  display: block;
}

.reviewer-role {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
  display: block;
}

.contact-section {
  padding: 90px 0;
  background: #ffffff;
}

.contact-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-section-tag {
  display: inline-block;
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ff0080;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.contact-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  color: #181b57;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.contact-section-title span {
  color: #ff0080;
}

.contact-intro {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
}

.hours-block {
  background: #f8f7f4;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 32px;
  border-left: 4px solid #ff0080;
}

.hours-block h4 {
  font-family: 'Exo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #181b57;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.hours-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hours-block li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hours-block li i {
  color: #ff0080;
  font-size: 12px;
  width: 14px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #f8f7f4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.contact-detail-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(24, 27, 87, 0.1);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #181b57, #212573);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.contact-detail-item:hover .contact-detail-icon {
  background: linear-gradient(135deg, #ff0080, #cc0066);
}

.contact-detail-icon i {
  color: #fff;
  font-size: 17px;
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.contact-detail-value {
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #181b57;
  transition: color 0.3s ease;
}

.contact-detail-item:hover .contact-detail-value {
  color: #ff0080;
}

.form-section-tag {
  display: inline-block;
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ff0080;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.form-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  color: #181b57;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #333;
  background: #f8f7f4;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  padding: 13px 18px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff0080;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 0, 128, 0.08);
}

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

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.form-note {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #aaa;
  flex: 1;
}

.form-note i {
  color: #ff0080;
  margin-right: 4px;
}

.contact-map-section {
  padding: 0;
  line-height: 0;
}

.contact-map-section iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
  filter: saturate(0.7) contrast(1.05);
}

.form-toast {
  display: none;
  background: linear-gradient(135deg, #181b57, #ff0080);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 10px;
  margin-top: 12px;
  align-items: center;
  gap: 10px;
}

.form-toast.show {
  display: flex;
}

.services-section {
  padding: 50px 0;
  background: #fff;
}

.services-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: flex-start;
}

.service-sidebar {
  position: sticky;
  top: 108px;
}

.sidebar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #181b57 0%, #ff0080 100%);
  padding: 16px 22px;
  border-radius: 12px 12px 0 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1.5px solid #eeeeee;
  border-top: none;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}

.service-menu li {
  border-bottom: 1px solid #eeeeee;
}

.service-menu li:last-child {
  border-bottom: none;
}

.service-menu-btn {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  padding: 15px 22px;
  font-family: 'Exo', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.service-menu-btn:hover {
  background: rgba(255, 0, 128, 0.04);
  color: #ff0080;
  padding-left: 28px;
}

.service-menu-btn.active {
  background: rgba(255, 0, 128, 0.06);
  color: #ff0080;
  font-weight: 700;
  border-left: 3px solid #ff0080;
}

.service-menu-btn .menu-arrow {
  font-size: 11px;
  color: #ccc;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.service-menu-btn.active .menu-arrow,
.service-menu-btn:hover .menu-arrow {
  color: #ff0080;
  transform: translateX(3px);
}

.mobile-service-select-wrap {
  display: none;
  margin-bottom: 28px;
}

.mobile-service-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.mobile-service-select {
  width: 100%;
  font-family: 'Exo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #181b57;
  background: #f8f7f4;
  border: 2px solid #ff0080;
  border-radius: 10px;
  padding: 13px 18px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FF0080' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.service-panel {
  display: none;
  animation: fadeInPanel 0.35s ease;
}

.service-panel.active {
  display: block;
}

.service-panel-header {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1.5px solid #eeeeee;
}

.service-panel-tag {
  display: inline-block;
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #ff0080;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.service-panel-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: #181b57;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

.service-panel-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 26px;
  display: block;
}

.service-desc-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}

.phases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.phase-card {
  background: #f8f7f4;
  border-radius: 14px;
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}

.phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(24, 27, 87, 0.1);
  border-color: rgba(255, 0, 128, 0.12);
}

.phase-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(24, 27, 87, 0.06);
  line-height: 1;
  position: absolute;
  top: 8px;
  right: 14px;
  user-select: none;
  pointer-events: none;
}

.phase-card h3 {
  font-family: 'Exo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #181b57;
  margin-bottom: 10px;
  position: relative;
}

.phase-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.72;
  color: #666;
  margin: 0;
  position: relative;
}

.service-highlights {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-highlights li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.service-highlights li i {
  color: #ff0080;
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

.projects-section {
  padding: 50px 0 80px;
  background: #fff;
}

.projects-inner .projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.project-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #eee;
  display: block;
  transition: transform 0.3s ease;
  border: none;
  padding: 0;
}

.lb-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
  opacity: 0.55;
  background: none;
  padding: 0;
}

.blp-section {
  padding: 50px 0;
  background: #fff;
}

.blp-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 52px;
  align-items: flex-start;
}

.blp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.blp-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(24, 27, 87, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
}

.blp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(24, 27, 87, 0.13);
}

.blp-card-img {
  position: relative;
  overflow: hidden;
  height: 210px;
  flex-shrink: 0;
}

.blp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.blp-card:hover .blp-card-img img {
  transform: scale(1.06);
}

.blp-card-cat {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #ff0080;
  border-radius: 999px;
  padding: 4px 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blp-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
}

.blp-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #aaa;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blp-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blp-card-meta i {
  color: #ff0080;
  font-size: 11px;
}

.blp-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  color: #181b57;
  line-height: 1.28;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
  transition: color 0.25s;
  letter-spacing: -0.2px;
}

.blp-card-title:hover {
  color: #ff0080;
}

.blp-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blp-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ff0080;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 9px 20px;
  border: 1.5px solid rgba(255, 0, 128, 0.3);
  border-radius: 999px;
  align-self: flex-start;
  transition: all 0.25s ease;
}

.blp-read-more:hover {
  background: #ff0080;
  color: #fff;
  border-color: #ff0080;
}

.blp-read-more i {
  font-size: 11px;
  transition: transform 0.25s;
}

.blp-read-more:hover i {
  transform: translateX(3px);
}

.blp-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
}

.blp-card.featured .blp-card-img {
  width: 46%;
  height: auto;
  min-height: 260px;
  flex-shrink: 0;
}

.blp-card.featured .blp-card-body {
  padding: 30px 28px;
  justify-content: center;
}

.blp-card.featured .blp-card-title {
  font-size: clamp(21px, 2.2vw, 28px);
}

.blp-card.featured .blp-card-excerpt {
  -webkit-line-clamp: 4;
}

.blp-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.blp-page-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #e5e5e5;
  background: #fff;
  font-family: 'Exo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  text-decoration: none;
}

.blp-page-btn:hover,
.blp-page-btn.active {
  background: #ff0080;
  border-color: #ff0080;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 0, 128, 0.3);
}

.blp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 108px;
}

.blp-widget {
  background: #f8f7f4;
  border-radius: 14px;
  padding: 24px 22px;
}

.blp-widget-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #181b57;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ff0080;
  position: relative;
}

.blp-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blp-cat-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.blp-cat-list li a:hover,
.blp-cat-list li a.active-cat {
  background: rgba(255, 0, 128, 0.07);
  color: #ff0080;
  padding-left: 16px;
}

.blp-cat-list li a i {
  font-size: 10px;
  color: #ff0080;
}

.blp-recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blp-recent-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.blp-recent-thumb {
  width: 68px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.blp-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blp-recent-item:hover .blp-recent-thumb img {
  transform: scale(1.08);
}

.blp-recent-title {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #181b57;
  text-decoration: none;
  line-height: 1.4;
  display: block;
  transition: color 0.2s;
  margin-bottom: 4px;
}

.blp-recent-title:hover {
  color: #ff0080;
}

.blp-recent-date {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 4px;
}

.blp-recent-date i {
  font-size: 10px;
  color: #ff0080;
}

.blp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blp-tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  background: #fff;
  border: 1.5px solid #e5e5e5;
  border-radius: 6px;
  padding: 5px 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blp-tag:hover {
  background: #ff0080;
  color: #fff;
  border-color: #ff0080;
}

.blog-single-section {
  padding: 50px 0;
  background: #fff;
}

.blog-single-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 52px;
  align-items: flex-start;
}

.blog-article {}

.article-featured-img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16/9;
}

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

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.article-cat-badge {
  font-family: 'Exo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #ff0080;
  border-radius: 999px;
  padding: 4px 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-meta-item {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-meta-item i {
  color: #ff0080;
  font-size: 11px;
}

.article-main-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #181b57;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.article-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff0080, #ffd600);
  border-radius: 999px;
  margin-bottom: 24px;
}

.article-body p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.82;
  color: #555;
  margin-bottom: 20px;
}

.article-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: #181b57;
  margin: 36px 0 14px;
  padding-left: 16px;
  border-left: 4px solid #ff0080;
  letter-spacing: -0.3px;
}

.article-body h3 {
  font-family: 'Exo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #181b57;
  margin: 28px 0 12px;
}

.article-body ul,
.article-body ol {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.78;
  color: #555;
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-body ul li,
.article-body ol li {
  margin-bottom: 6px;
}

.article-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 0, 128, 0.05);
  border-left: 4px solid #ff0080;
  border-radius: 0 12px 12px 0;
  padding: 18px 20px;
  margin: 24px 0;
}

.article-tip-box .tip-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #ff0080;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.article-tip-box .tip-icon i {
  color: #fff;
  font-size: 14px;
}

.article-tip-box .tip-label {
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ff0080;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: block;
}

.article-tip-box p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0 !important;
}

.color-swatches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.color-swatch-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #f8f7f4;
  border-radius: 10px;
}

.swatch-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(0, 0, 0, 0.08);
}

.swatch-dot.blue-green {
  background: #4bb8a9;
}

.swatch-dot.yellow-orange {
  background: #f4a234;
}

.swatch-dot.grey-neutral {
  background: #a0a0a0;
}

.swatch-dot.crisp-white {
  background: #f5f5f0;
  border-color: #ccc;
}

.swatch-info {}

.swatch-name {
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #181b57;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: block;
  margin-bottom: 2px;
}

.swatch-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #888;
  line-height: 1.5;
}

.article-cta-box {
  background: linear-gradient(135deg, #181b57 0%, #2e317a 50%, #8b0057 100%);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  margin: 40px 0;
}

.article-cta-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.article-cta-box p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 22px !important;
  line-height: 1.6;
}

.blog-cta-banner {
  background: linear-gradient(90deg, #181b57 0%, #212573 40%, #8b0057 75%, #ff0080 100%);
  padding: 56px 40px;
}

.blog-cta-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.blog-cta-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.sitemap-section {
  padding: 80px 0;
  background: #fff;
}

.sitemap-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.sitemap-intro {
  text-align: center;
  margin-bottom: 60px;
}

.sitemap-intro .section-tag {
  display: inline-block;
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ff0080;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.sitemap-intro h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  color: #181b57;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.sitemap-intro p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #777;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.sitemap-group {
  background: #f8f7f4;
  border-radius: 16px;
  padding: 28px 24px 22px;
  border: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sitemap-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff0080, #ffd600);
  border-radius: 16px 16px 0 0;
}

.sitemap-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(24, 27, 87, 0.11);
  border-color: rgba(255, 0, 128, 0.12);
}

.sitemap-group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid #ebebeb;
}

.sitemap-group-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #181b57, #ff0080);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sitemap-group-icon i {
  color: #fff;
  font-size: 16px;
}

.sitemap-group-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #181b57;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.25s;
  line-height: 1;
}

.sitemap-group-title:hover {
  color: #ff0080;
}

.sitemap-sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sitemap-sub-list li a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.sitemap-sub-list li a i {
  font-size: 9px;
  color: #ff0080;
  flex-shrink: 0;
}

.sitemap-sub-list li a:hover {
  background: rgba(255, 0, 128, 0.07);
  color: #ff0080;
  padding-left: 16px;
}

.sitemap-group.home-group {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 30px;
}

.sitemap-group.home-group .sitemap-group-header {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  flex-shrink: 0;
  min-width: 130px;
}

.sitemap-group.home-group .sitemap-sub-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.sitemap-group.home-group .sitemap-sub-list li a {
  border: 1.5px solid #e0e0e0;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  background: #fff;
}

.sitemap-group.home-group .sitemap-sub-list li a:hover {
  background: #ff0080;
  color: #fff;
  border-color: #ff0080;
  padding-left: 16px;
}

.sitemap-cta-banner {
  background: linear-gradient(90deg, #181b57 0%, #212573 40%, #8b0057 75%, #ff0080 100%);
  padding: 56px 40px;
}

.sitemap-cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.sitemap-cta-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.top_btm_pd {
  padding-top: 60px !important;
  padding-bottom: 20px !important;
}

.top_pd {
  margin-top: 20px !important;
}

.btm_pd {
  margin-bottom: 60px !important;
}

.testimonial-sep {
  background: none !important;
}

.top_btm_pd h2 {
  font-size: 48px !important;
  font-weight: 600 !important;
}

.projects-hdr-left {
  max-width: 720px !important;
}

.choose-col-center {
  background-repeat: no-repeat;
  background-size: cover;
}

.project-desc {
  margin-bottom: 0 !important;
}

.renovations-slider {
  margin: 0 0px;
}


@keyframes pulse-icon {

  0%,
  100% {
    box-shadow: 0 0 0 3px #ff0080, 0 4px 18px rgba(255, 0, 128, 0.4);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(255, 0, 128, 0.18), 0 4px 18px rgba(255, 0, 128, 0.25);
  }
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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



@media only screen and (max-width: 1880px) {
  .hero-slide {
    min-height: 600px;
  }

  :root {
    --navbar-h: 84px;
    --section-gap: 96px;
  }

  .hero-slide {
    min-height: 730px;
  }
}

@media only screen and (max-width: 1780px) {
  :root {
    --navbar-h: 82px;
    --section-gap: 90px;
  }

  .nav-wrap,
  .top-bar .tb-wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media only screen and (max-width: 1680px) {
  .slide-inner {
    padding: 65px 70px;
  }

  :root {
    --navbar-h: 80px;
    --section-gap: 86px;
  }
}

@media only screen and (max-width: 1550px) {
  :root {
    --section-gap: 80px;
  }

  .nav-link {
    font-size: 14px;
    padding: 8px 10px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }
}


@media only screen and (max-width: 1440px) {
  .slide-inner {
    padding: 60px 60px;
  }

  .slide-title {
    font-size: clamp(44px, 5.2vw, 72px);
  }

  :root {
    --navbar-h: 78px;
    --section-gap: 76px;
  }

  .nav-wrap,
  .top-bar .tb-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }

  .top_btm_pd h2 {
    font-size: 40px !important;
  }

  .renovation-card {
    height: 430px;
  }

  .testimonial-card {
    padding: 25px 25px;
  }

  .slide-title {
    font-size: 60px;
  }

  .title-small-icon {
    height: 40px;
  }

  .choose-desc {
    font-size: 14px;
  }

  .history-section {
    padding-top: 0;
  }
}

@media only screen and (max-width: 1280px) {
  .slide-inner {
    padding: 55px 50px;
  }

  .hero-slide {
    min-height: 580px;
  }

  .slide-title {
    font-size: clamp(40px, 5vw, 64px);
  }

  .slide-left {
    width: 52%;
  }

  .testimonials-container {
    padding: 0 32px;
  }

  .testimonials-row {
    gap: 40px;
  }

  .blog-container {
    padding: 0 32px;
  }

  .blog-row {
    gap: 40px;
  }

  .footer-subscribe-container,
  .footer-main-container,
  .footer-info-container,
  .footer-copyright-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  :root {
    --navbar-h: 76px;
    --section-gap: 68px;
  }

  .nav-link {
    font-size: 13px;
    padding: 7px 8px;
  }

  .nav-menu {
    gap: 0;
  }

  .choose-container {
    padding: 0 32px;
  }

  .choose-header {
    gap: 40px;
    margin-bottom: 44px;
  }

  .choose-col-center {
    min-height: 520px;
    padding: 30px;
  }

  .choose-col-right {
    padding: 30px 24px;
    gap: 28px;
  }

  .card-referrals {
    padding: 20px 24px;
  }

  .referrals-percent {
    font-size: 46px;
  }

  .projects-container {
    padding: 0 32px;
  }

  .projects-header {
    margin-bottom: 44px;
  }

  .renovations-container {
    padding: 0 32px;
  }

  .choose-col-center {
    padding: 20px;
  }

  .card-delivery {
    padding: 30px 20px;
  }

  .choose-col-right {
    padding: 30px 20px;
  }

  .hero-arrow {
    width: 30px;
    height: 30px;
  }

  .slide-inner {
    padding: 50px 50px;
  }

  .choose-features {
    margin-top: 100px;
  }

  .choose-shape-container {
    width: 170px;
    height: 170px;
  }

  .top_btm_pd {
    padding-top: 40px !important;
    padding-bottom: 20px !important;
  }

  .btm_pd {
    margin-bottom: 40px !important;
  }

  .renovations-header {
    margin-bottom: 30px;
  }

  .blog-row {
    gap: 0px;
  }

  .blog_middle {
    padding-right: 30px;
  }

  .top_btm_pd h2 {
    font-size: 35px !important;
  }

  .slide-title {
    font-size: 52px;
  }

  .title-small-icon {
    height: 35px;
  }

  .slide-social a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 1367px) {
  :root {
    --section-gap: 72px;
  }

  .nav-link {
    font-size: 13.5px;
    padding: 7px 9px;
  }

  .navbar-logo img {
    height: 54px;
  }
}

@media only screen and (max-width: 1150px) {
  .slide-inner {
    padding: 50px 40px;
  }

  .slide-title {
    font-size: clamp(36px, 4.8vw, 58px);
  }

  .slide-left {
    width: 56%;
  }

  .title-small-icon {
    height: 46px;
  }

  :root {
    --section-gap: 64px;
  }

  .nav-link {
    font-size: 13px;
    padding: 7px 6px;
  }

  .btn-quote {
    font-size: 13px;
    padding: 0 46px 0 18px;
    height: 42px;
  }
}

@media (min-width: 1100px) {
  .navbar-toggler-custom {
    display: none !important;
  }

  .mobile-nav {
    pointer-events: none;
  }

  .mobile-overlay {
    display: none !important;
  }
}

@media (max-width: 1099px) {
  .nav-menu {
    display: none !important;
  }

  .btn-quote-desktop {
    display: none !important;
  }

  .navbar-toggler-custom {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .nav-wrap {
    padding: 0 20px;
  }

  .tb-left {
    display: none;
  }

  .top-bar .tb-wrap {
    justify-content: flex-end;
    padding: 0 20px;
  }
}


@media (max-width: 1100px) {
  .lb-prev {
    left: -56px;
  }

  .lb-next {
    right: -56px;
  }
}

@media only screen and (max-width: 1080px) {
  :root {
    --navbar-h: 74px;
  }

  .nav-link {
    font-size: 13px;
    padding: 7px 5px;
  }

  .choose-grid,
  .exp_bx {
    gap: 15px;
  }

  .projects-container .projects-grid {
    gap: 20px;
  }

  .project-card {
    padding: 17px;
  }

  .slide-phone {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .hero-slide {
    min-height: 540px;
  }

  .slide-inner {
    padding: 44px 32px;
  }

  .slide-left {
    width: 60%;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }

  .hero-prev {
    left: 12px;
  }

  .hero-next {
    right: 12px;
  }

  .slide-social {
    right: 24px;
    bottom: 30px;
  }

  .testimonials-row {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .testimonials-col-left,
  .testimonials-col-right {
    max-width: 100%;
  }

  .blog-row {
    flex-direction: column;
    gap: 40px;
  }

  .blog-col-left,
  .blog-col-right {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .blog-swiper .swiper-slide {
    border-right: none;
    padding-right: 0;
    padding-left: 0;
  }

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

  .nav-menu {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .nav-wrap,
  .top-bar .tb-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .choose-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .choose-hdr-left,
  .choose-hdr-right {
    max-width: 100%;
  }

  .choose-hdr-right {
    border-left: none;
    padding-left: 0;
  }

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

  .choose-col-center {
    grid-column: span 2;
    min-height: 480px;
  }

  .projects-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .projects-hdr-left {
    max-width: 100%;
    text-align: left;
    margin: 0;
  }

  .projects-hdr-right {
    position: static;
  }

  .projects-container .projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .projects-brush-bg {
    height: 70%;
    opacity: 0.5;
  }

  .renovations-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .renovations-hdr-left {
    max-width: 100%;
  }

  .renovations-prev {
    left: -10px;
  }

  .renovations-next {
    right: -10px;
  }

  .shape_box {
    grid-column: span 3;
  }

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

  .choose-col-right {
    min-height: 480px;
  }

  .projects-container .projects-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .blog_middle {
    padding-right: 0px;
    margin-bottom: 25px;
  }

  .blog-actions-row {
    max-width: 100%;
  }

  .renovation-card {
    height: 290px;
    padding: 20px;
  }

  .renovations-slider .slick-slide {
    padding: 0 8px;
  }

  .testimonials-row {
    flex-direction: column;
    gap: 30px;
  }
	.slide-desc , .choose-desc , .delivery-desc , .center-desc , .feature-desc , .project-desc , .renovations-desc , .testimonials-desc , .testimonial-text , .blog-desc , .blog-card-desc , .brand-desc,.tb-item ,.about-section-desc ,.about-feature-text p ,.history-subtitle ,.service-desc-text , .review-text ,.blp-card-excerpt,.contact-intro,.hours-block li{
    font-size: 14px !important;
}
	.history-header {
    margin-bottom: 35px;
}
}

@media (max-width: 991px) {
  .page-hero {
    padding: 72px 30px;
  }

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

  .about-badge {
    right: 16px;
  }

  .about-text-col {
    padding-left: 0;
  }

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

  .timeline::before {
    display: none;
  }

  .timeline {
    padding: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    position: relative;
    width: 100%;
    margin-left: 0 !important;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  .timeline-item::before,
  .timeline-item::after {
    display: none !important;
  }

  .timeline-center,
  .timeline-item:nth-child(even) .timeline-center {
    position: static;
    transform: none;
    right: auto;
    left: auto;
    top: auto;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 56px;
    padding-top: 20px;
    z-index: 2;
  }

  .timeline-center::after {
    content: '';
    flex: 1;
    width: 2px;
    background: linear-gradient(180deg, #ff0080 0%, #181b57 100%);
    margin-top: 8px;
    border-radius: 2px;
    opacity: 0.45;
    min-height: 16px;
  }

  .timeline-item:last-child .timeline-center::after,
  .timeline-item:last-child:nth-child(even) .timeline-center::after {
    display: none;
  }

  .timeline-icon-wrap {
    width: 38px;
    height: 38px;
    border-width: 2px;
    box-shadow: 0 0 0 3px #181b57, 0 4px 14px rgba(24, 27, 87, 0.22);
    flex-shrink: 0;
  }

  .timeline-icon-wrap i {
    font-size: 14px;
  }

  .timeline-icon-active {
    box-shadow: 0 0 0 3px #ff0080, 0 4px 14px rgba(255, 0, 128, 0.35);
  }

  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    flex: 1;
    border: none;
    border-left: 3px solid #c9c6c7;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 3px 18px rgba(24, 27, 87, 0.09);
    padding: 16px 18px;
    margin: 12px 0 12px 0;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: static;
  }

  .history-section {
    padding-top: 0;
  }

  .timeline-item:nth-child(odd) .timeline-card:hover,
  .timeline-item:nth-child(even) .timeline-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(24, 27, 87, 0.14);
  }

  .timeline-card::before {
    display: none;
  }

  .timeline-card-active {
    background: linear-gradient(135deg, #181b57 0%, #212573 100%) !important;
    border-left-color: #ff0080 !important;
  }

  .timeline-year {
    font-size: 11px;
    padding: 3px 11px;
    margin-bottom: 7px;
    display: inline-block;
  }

  .timeline-card h3 {
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.35;
  }

  .timeline-card p {
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
  }

  .rating-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .rating-banner-right {
    max-width: 100%;
    width: 100%;
  }

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-sidebar {
    display: none;
  }

  .mobile-service-select-wrap {
    display: block;
  }

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

  .projects-inner .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lb-prev {
    left: 8px;
  }

  .lb-next {
    right: 8px;
  }

  .lb-arrow {
    width: 44px;
    height: 44px;
    font-size: 15px;
    background: rgba(0, 0, 0, 0.55);
  }

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

  .blp-sidebar {
    position: static;
  }

  .blp-card.featured {
    flex-direction: column;
  }

  .blp-card.featured .blp-card-img {
    width: 100%;
    aspect-ratio: 16/10;
  }

  .blog-inner,
  .blog-single-inner {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-card.featured {
    flex-direction: column;
  }

  .blog-card.featured .blog-card-img {
    width: 100%;
    aspect-ratio: 16/10;
  }

  .color-swatches {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 991px) {
  :root {
    --navbar-h: 72px;
    --section-gap: 60px;
  }

  .hero-slide {
    min-height: 560px;
  }

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

  .title-small-icon {
    height: 25px;
  }

  .hero-arrow {
    display: none;
  }

  .top_btm_pd {
    padding-top: 25px !important;
    padding-bottom: 20px !important;
  }

  .btm_pd {
    margin-bottom: 25px !important;
  }

  .projects-container {
    padding: 0 20px;
  }

  .choose-container {
    padding: 0 20px;
  }

  .testimonials-container {
    padding: 0 20px;
  }

  .blog-container {
    padding: 0px 20px;
  }

  .renovations-container {
    padding: 0 20px;
  }

  .slide-inner {
    padding: 50px 20px;
  }

  .stat-card .s-num {
    font-size: 42px;
  }
}


@media only screen and (max-width: 900px) {
  .hero-slide {
    min-height: 500px;
    background-position: right center;
  }

  .slide-inner {
    padding: 40px 28px 80px;
  }

  .slide-left {
    width: 70%;
  }

  .slide-title {
    font-size: clamp(34px, 6vw, 52px);
  }

  .slide-social {
    right: 20px;
    bottom: 24px;
  }
}

@media (max-width: 900px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sitemap-group.home-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .sitemap-group.home-group .sitemap-group-header {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1.5px solid #ebebeb;
  }
}

@media only screen and (max-width: 800px) {
  .choose-grid {
    grid-template-columns: 1fr 1fr;
  }
}


@media only screen and (max-width: 768px) {
  .hero-slide {
    min-height: 480px;
  }

  .slide-inner {
    padding: 36px 22px 80px;
  }

  .slide-left {
    width: 80%;
  }

  .hero-arrow {
    display: none;
  }

  .title-small-icon {
    height: 40px;
  }

  .footer-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-copyright-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  :root {
    --topbar-h: 36px;
    --navbar-h: 68px;
    --section-gap: 56px;
  }

  .tb-item.tb-addr {
    display: none;
  }

  .top-bar .tb-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .choose-col-center {
    grid-column: span 1;
    min-height: 440px;
  }

  .choose-section {
    padding: var(--section-gap) 0;
  }

  .choose-shape-container {
    width: 180px;
    height: 180px;
    top: -15px;
    right: -15px;
  }

  .choose-features {
    margin-top: 130px;
  }

  .projects-container .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-brush-bg {
    display: none;
  }

  .renovation-card {
    height: 450px;
    padding: 30px;
  }

  .renovations-prev {
    left: -5px;
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .renovations-next {
    right: -5px;
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .footer-copyright-container {
    align-items: center;
  }
}

@media only screen and (max-width: 767px) {
  .mobile-nav {
    width: 280px;
  }

  .btn-quote {
    font-size: 13px;
    padding: 0 44px 0 16px;
    height: 40px;
  }

  .slide-social {
    left: 26px;
    right: 0;
  }

  .choose-col-center {
    padding: 20px;
    grid-column: span 3;
    margin: 15px 0;
  }

  .exp_bx {
    grid-column: span 3;
  }

  .choose-col-center,
  .card-delivery {
    min-height: auto;
  }

  .choose-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .testimonials-divider {
    margin: 0 0px 20px;
  }

  .project-card-title {
    font-size: 14px;
    letter-spacing: 0px;
  }

  .project-card {
    padding: 10px;
  }

  .project-arrow-btn {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .search-panel {
    padding: 12px 14px;
    gap: 8px;
    flex-wrap: nowrap;
    align-items: center;
  }

  .search-panel input {
    font-size: 14px;
    padding: 10px 14px;
  }

  .search-panel button {
    padding: 10px 14px;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 42px;
    height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
  }

  .search-panel button i {
    margin-right: 0 !important;
  }

  .search-panel button .search-btn-text {
    display: none;
  }

  .search-close {
    font-size: 18px;
    flex-shrink: 0;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }

  .contact-section {
    padding: 40px 0;
  }

  .contact-inner {
    gap: 0px;
  }
}

@media only screen and (max-width: 700px) {
  .projects-container .projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .projects-inner .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .projects-inner {
    padding: 0 20px;
  }

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

  .page-hero {
    padding: 64px 20px;
  }

  .project-cta-banner {
    padding: 40px 20px;
  }

  .project-cta-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .contact-inner {
    padding: 0 20px;
  }

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

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

  .blp-inner {
    padding: 0 20px;
  }

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

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

  .blog-inner,
  .blog-single-inner {
    padding: 0 20px;
  }

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

  .blog-section,
  .blog-single-section {
    padding: 52px 0;
  }

  .blog-cta-banner {
    padding: 40px 20px;
  }

  .blog-cta-inner {
    justify-content: center;
    text-align: center;
  }

  .article-cta-box {
    padding: 26px 20px;
  }
}

@media only screen and (max-width: 600px) {
  .hero-slide {
    min-height: 420px;
    background-position: 70% center;
  }

  .slide-inner {
    padding: 32px 18px 70px;
  }

  .slide-left {
    width: 100%;
  }

  .slide-title {
    font-size: clamp(30px, 8vw, 44px);
  }

  .slide-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .slide-social {
    display: none;
  }

  .title-small-icon {
    height: 36px;
  }

  .testimonials-container {
    padding: 0 16px;
  }

  .testimonial-card {
    padding: 30px 24px;
    flex-direction: column;
    gap: 12px;
  }

  .quote-mark {
    font-size: 60px;
    margin-top: 0;
  }

  .testimonial-author-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .testimonial-controls {
    position: static;
    margin-top: 20px;
    width: 100%;
    justify-content: flex-start;
  }

  .blog-container {
    padding: 0 16px;
  }

  .blog-actions-row {
    gap: 20px;
  }

  .footer-subscribe-container,
  .footer-main-container,
  .footer-info-container,
  .footer-copyright-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .brand-col .footer-logo img {
    height: 48px;
  }

  :root {
    --topbar-h: 0px;
    --navbar-h: 64px;
    --section-gap: 50px;
  }

  .top-bar {
    display: none;
  }

  .nav-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .card-referrals {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .referrals-percent {
    align-self: flex-end;
  }

  .card-delivery {
    padding: 30px 20px;
    min-height: auto;
  }

  .delivery-stats {
    flex-direction: column;
    gap: 16px;
  }

  .choose-col-center {
    padding: 30px 20px;
    min-height: 380px;
  }

  .choose-col-right {
    padding: 30px 20px;
  }

  .project-card {
    padding: 16px;
  }

  .projects-container {
    padding: 0 16px;
  }

  .renovations-container {
    padding: 0 16px;
  }

  .renovations-prev,
  .renovations-next {
    display: none !important;
  }

  .top_btm_pd h2 {
    font-size: 32px !important;
  }

  .testimonials-swiper {
    padding-bottom: 0px;
  }

  .renovations-prev,
  .renovations-next {
    display: block !important;
  }

  .referrals-percent {
    font-size: 35px;
  }

  .card-referrals {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: 64px 20px;
  }

  .about-section,
  .history-section {
    padding: 60px 0;
  }

  .about-grid,
  .history-inner {
    padding: 0 20px;
  }

  .timeline-center,
  .timeline-item:nth-child(even) .timeline-center {
    width: 46px;
    padding-top: 16px;
  }

  .timeline-icon-wrap {
    width: 32px;
    height: 32px;
  }

  .timeline-icon-wrap i {
    font-size: 12px;
  }

  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    padding: 13px 14px;
    margin: 10px 0 10px 0;
  }

  .timeline-card h3 {
    font-size: 13px;
  }

  .timeline-card p {
    font-size: 12.5px;
  }

  .timeline-year {
    font-size: 10.5px;
    padding: 2px 9px;
  }

  .stats-section {
    padding: 48px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .reviews-inner {
    padding: 0 20px;
  }

  .rating-banner {
    padding: 40px 20px;
  }

  .about-cta-banner,
  .reviews-cta-banner,
  .contact-cta-banner,
  .service-cta-banner,
  .project-cta-banner {
    padding: 40px 20px;
  }

  .about-cta-inner,
  .reviews-cta-inner,
  .contact-cta-inner,
  .service-cta-inner,
  .project-cta-inner {
    justify-content: center;
    text-align: center;
  }

  .service-panel-img {
    height: 200px;
  }

  .services-section {
    padding: 56px 0;
  }

  .project-cta-banner {
    padding: 40px 20px;
  }

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

  .sitemap-inner {
    padding: 0 20px;
  }

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

  .sitemap-cta-banner {
    padding: 40px 20px;
  }

  .sitemap-cta-inner {
    justify-content: center;
    text-align: center;
  }

  .history-section {
    padding-top: 0 !important;
  }

}

@media (max-width: 575px) {
  .navbar-logo img {
    height: 48px;
  }
}

@media only screen and (max-width: 520px) {
  :root {
    --section-gap: 46px;
  }

  .mobile-nav {
    width: 100%;
  }

  .btn-quote {
    padding: 0 44px 0 16px;
  }

  .main-navbar .btn-quote {
    display: none;
  }

  .btn-quote .mobile-nav,
  .btn-quote span {
    display: block;
  }

  .slide-desc {
    display: none;
  }

  .slide-title {
    font-size: 36px;
  }

  .renovations-prev,
  .renovations-next {
    display: none !important;
  }

  .choose-subtitle-inline {
    margin-right: 5px;
  }

  .footer-subscribe-input {
    width: 100%;
  }

  .btn-subscribe {
    padding: 0 35px 0 20px;
  }

  .footer-subscribe-input {
    padding: 10px 15px;
    font-size: 14px;
  }

  .footer-hours li {
    max-width: 100%;
  }

  .copyright-text {
    text-align: center;
  }

  .footer-links {
    gap: 5px;
  }

  .brand-desc {
    max-width: 100%;
  }

.footer-section {
    padding: 40px 0 0 0;
}

.footer-subscribe-container {
    margin: 0 auto 40px auto;
}

.rating-big-num {
    font-size: 74px;
    font-weight: 600;
}

}


@media only screen and (max-width: 480px) {
  .hero-slide {
    min-height: 320px;
  }

  .slide-title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .slide-tag {
    font-size: 11px;
    padding: 4px 12px;
  }

  .slide-desc {
    font-size: 13.5px;
    margin-bottom: 26px;
  }

  .slide-cta {
    height: 44px;
    font-size: 13px;
    padding: 0 48px 0 18px;
  }

  .hero-pagination {
    bottom: 14px !important;
  }

  :root {
    --navbar-h: 60px;
  }

  .navbar-logo img {
    height: 44px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .choose-shape-container {
    width: 150px;
    height: 150px;
    top: -10px;
    right: -10px;
  }

  .choose-features {
    margin-top: 110px;
  }
}

@media (max-width: 480px) {
  .projects-inner .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .lb-thumbs {
    display: none;
  }
}
@media only screen and (max-width: 430px) {
	.stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
}
	.stat-card .s-num {
    font-size: 35px;
}
	.about-img-wrapper img {
    height: 350px;
}
}
@media only screen and (max-width: 420px) {
  .navbar-logo img {
    height: 40px;
  }
}

@media only screen and (max-width: 375px) {
  .search-panel span {
    display: none;
  }
}

@media only screen and (max-width: 360px) {
  .hero-slide {
    min-height: 340px;
  }

  .slide-title {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  .title-small-icon {
    height: 30px;
  }

  :root {
    --navbar-h: 58px;
    --section-gap: 40px;
  }

  .navbar-logo img {
    height: 36px;
  }

  body {
    font-size: 15px;
  }
}


/* ==========================================================================
   BEFORE & AFTER PROJECTS GALLERY
   ========================================================================== */
 
.projects-subtitle-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
}
 
.ba-projects-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
 
.ba-project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
  border: 1px solid #eaeaea;
}
 
.ba-project-card.ba-visible {
  opacity: 1;
  transform: translateY(0);
}
 
@keyframes baFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
 
.ba-card-header {
  padding: 20px 25px;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fafafa;
}
 
.ba-project-number {
  font-family: 'Exo', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #FF0080;
  opacity: 0.8;
}
 
.ba-project-title {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #181B57;
  flex-grow: 1;
}
 
.ba-category-badge {
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background: #181B57;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}
 
/* Image Row Layout */
.ba-images-row {
  display: flex;
  padding: 20px;
  gap: 15px;
  align-items: stretch !important;
}
 
.ba-image-block {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  aspect-ratio: 4 / 3;
}
 
.ba-slider-block {
  display: flex !important;
  height: auto !important;
  flex: 1 !important;
  aspect-ratio: 4 / 3;
}
 
.ba-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  background-color: #f1f5f9;
}
 
.ba-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
 
.ba-image-wrap:hover img {
  transform: scale(1.05);
}
 
.ba-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
 
.ba-badge-before {
  background: rgba(24, 27, 87, 0.9);
  border-left: 3px solid #ff4b4b;
}
 
.ba-badge-after {
  background: rgba(255, 0, 128, 0.9);
  border-left: 3px solid #fff;
}
 
.ba-arrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF0080;
  font-size: 24px;
  padding: 0 5px;
}
 
/* Responsive adjustments */
@media (max-width: 991px) {
  .ba-images-row { flex-direction: column; }
  .ba-arrow-divider { transform: rotate(90deg); padding: 10px 0; }
}
 
@media (max-width: 576px) {
  .ba-card-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ba-project-title { font-size: 20px; }
}
 
/* ==========================================================================
   SWIPER SLIDER MODIFICATIONS FOR AFTER IMAGES
   ========================================================================== */
.ba-after-swiper, .ba-before-swiper {
  padding-bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 8px !important;
  position: relative !important;
  overflow: hidden;
}
 
.ba-after-swiper .swiper-wrapper, .ba-before-swiper .swiper-wrapper {
  height: 100% !important;
}
 
.ba-after-swiper .swiper-slide, .ba-before-swiper .swiper-slide {
  height: 100% !important;
  display: flex !important;
  overflow: hidden;
}
 
.ba-after-swiper .swiper-slide .ba-image-wrap, .ba-before-swiper .swiper-slide .ba-image-wrap {
  width: 100% !important;
  height: 100% !important;
  min-height: auto !important; 
}
 
.ba-after-swiper .swiper-slide .ba-image-wrap img, .ba-before-swiper .swiper-slide .ba-image-wrap img {
  height: 100% !important;
  object-fit: cover !important;
}
 
/* Move pagination dots inside the image overlay */
.ba-after-swiper .swiper-pagination, .ba-before-swiper .swiper-pagination {
  position: absolute;
  bottom: 15px !important;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10 !important;
}
 
.ba-after-swiper .swiper-pagination-bullet, .ba-before-swiper .swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.6 !important;
  width: 10px !important;
  height: 10px !important;
  margin: 0 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4) !important;
}
 
.ba-after-swiper .swiper-pagination-bullet-active, .ba-before-swiper .swiper-pagination-bullet-active {
  background: #FF0080 !important;
  opacity: 1 !important;
}
 
/* Restore arrows but make them beautiful inside the overlay */
.ba-after-swiper .swiper-button-next,
.ba-after-swiper .swiper-button-prev,
.ba-before-swiper .swiper-button-next,
.ba-before-swiper .swiper-button-prev {
  display: flex !important;
  background: rgba(0, 0, 0, 0.4) !important;
  color: #fff !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}
 
.ba-after-swiper .swiper-button-next:after,
.ba-after-swiper .swiper-button-prev:after,
.ba-before-swiper .swiper-button-next:after,
.ba-before-swiper .swiper-button-prev:after {
  font-size: 16px !important;
  font-weight: bold !important;
}
 
.ba-after-swiper .swiper-button-next:hover,
.ba-after-swiper .swiper-button-prev:hover,
.ba-before-swiper .swiper-button-next:hover,
.ba-before-swiper .swiper-button-prev:hover {
  background: rgba(255, 0, 128, 0.9) !important;
}