/* ========= CSS VARIABLES ========= */
:root {
  --primary: #c8102e;
  --primary-dk: #9b0c22;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gold: #e8a020;
  --light: #fefefe;
  --white: #ffffff;
  --gap: 1.25rem;
  --speed: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --closed: 5rem;
  --open: 30rem;
  --accent: #ff6b35;
  --base: #CA4445;
  --secondary: #232728;  
  --whatsapp:   #25D366;
  --whatsapp-dk:#1aab54;
  --text: #7D8081;
  --gray: #EFE6E1;
  --bg: #f5ede8;   
  --cream:   #EFE6E1;  
  --ink: #1a1410;
  --rust: #b85c2b; 
  --soft: #e8e0d0;
  --muted: #6b5f52;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --c2-base: #CA4445;
  --c2-base-rgb: 202, 68, 69;
  --c2-dark: #232728;
  --c2-dark-rgb: 35, 39, 40;
  --c2-white: #ffffff;
  --c2-muted: #7D8081;
  --c2-light-bg: #f5f3f0;
  --c2-border: rgba(255, 255, 255, 0.10);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  overflow-x: hidden;
}

a{
  text-decoration: none;
}

/* ========= TOP BAR ========= */
.topbar {
  background: var(--primary);
  padding: 9px 0;
  font-size: 13px;
  color: #fff;
  position: relative;
  z-index: 100;
}

.topbar .tb-left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.topbar .tb-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar .tb-item i {
  font-size: 15px;
  opacity: .85;
}

.topbar .tb-item span {
  font-weight: 600;
  letter-spacing: .3px;
}

.tb-item a{
  color: var(--white);
  font-weight: 900;
}

.topbar .tb-item small {
  display: block;
  font-size: 11px;
  opacity: .8;
  font-weight: 300;
}

.topbar .tb-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}

.topbar .tb-right a {
  color: #fff;
  font-size: 14px;
  opacity: .85;
  transition: var(--transition);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
}

.topbar .tb-right a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, .2);
  border-color: #fff;
}

.topbar-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, .3);
}

/* ========= MAIN NAVBAR ========= */
.main-nav {
  background: var(--light);
  padding: 0 15px;
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
  transition: var(--transition);
}

.main-nav.scrolled {
  box-shadow: 0 2px 30px rgba(200, 16, 46, .25);
}

.navbar-brand {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: 175px;
}

.navbar-brand img {
  width: 175px;
}

.brand-logo-wrap {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.brand-logo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 60%);
}

.brand-logo-wrap i {
  font-size: 26px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.brand-text {
  line-height: 1;
}

.brand-text .b-name {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-text .b-tagline {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav links */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav-menu>li {
  position: relative;
}

.nav-menu>li>a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 22px 14px;
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}

.nav-menu>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-menu>li>a:hover,
.nav-menu>li.active>a {
  color: #000000;
}

.nav-menu>li>a:hover::after,
.nav-menu>li.active>a::after {
  left: 0;
  right: 0;
}

.nav-menu>li>a .arrow-icon {
  font-size: 10px;
  opacity: .7;
  transition: transform .3s ease;
}

.nav-menu>li:hover>a .arrow-icon {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--dark2);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 8px 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .6);
  z-index: 1000;
  list-style: none;
}

.nav-menu>li:hover>.dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-custom li {
  position: relative;
}

.dropdown-menu-custom li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  padding: 10px 20px;
  text-decoration: none;
  letter-spacing: .3px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu-custom li a:hover {
  color: #fff;
  background: rgba(200, 16, 46, .15);
  border-left-color: var(--primary);
  padding-left: 26px;
}

/* Sub-dropdown (level 3) */
.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 210px;
  background: #222;
  border-top: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
  box-shadow: 10px 10px 30px rgba(0, 0, 0, .5);
  z-index: 1001;
  list-style: none;
}

.dropdown-menu-custom li:hover>.sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-dropdown li a {
  font-size: 13px;
  border-left: 3px solid transparent;
}

.sub-dropdown li a:hover {
  border-left-color: var(--gold);
  background: rgba(232, 160, 32, .12);
}

/* Nav right icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.nav-icon-btn:hover {
  background: var(--primary);
  color: #fff;
}

.btn-contact {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-contact:hover {
  background: var(--primary-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 16, 46, .4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 4.5px;
  border-radius: 2px;
  background: #000;
  transition: var(--transition);
}

.hamburger span:nth-child(1) {
  width: 28px;
}

.hamburger span:nth-child(2) {
  width: 20px;
}

.hamburger span:nth-child(3) {
  width: 28px;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  width: 28px;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  width: 28px;
}

/* ========= MOBILE SIDEBAR ========= */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease;
  backdrop-filter: blur(3px);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--dark);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform .45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-sidebar.open {
  transform: translateX(0);
}

.mob-header {
  background: var(--dark2);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--primary);
  flex-shrink: 0;
}

.mob-header .mob-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mob-brand img {
  width: 150px;
}

.mob-header .mob-brand .mob-logo {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-header .mob-brand .mob-logo i {
  color: #fff;
  font-size: 20px;
}

.mob-header .mob-brand .mob-name {
  font-family: var(--font-head);
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.mob-header .mob-brand .mob-sub {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mob-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: none;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.mob-close:hover {
  background: var(--primary);
}

.mob-nav {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}

.mob-nav::-webkit-scrollbar {
  width: 4px;
}

.mob-nav::-webkit-scrollbar-track {
  background: transparent;
}

.mob-nav::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 2px;
}

.mob-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mob-nav>ul>li {
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.mob-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.mob-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--primary);
  transition: width .3s ease;
}

.mob-nav-link:hover::before,
.mob-nav-link.active-parent::before {
  width: 3px;
}

.mob-nav-link:hover,
.mob-nav-link.active-parent {
  color: #fff;
  padding-left: 26px;
}

.mob-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  transition: var(--transition);
  flex-shrink: 0;
}

.mob-nav-link.active-parent .mob-arrow {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}

/* Sub-menu in mobile */
.mob-submenu {
  display: none;
  background: rgba(0, 0, 0, .25);
}

.mob-submenu.open {
  display: block;
}

.mob-submenu li {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.mob-submenu li a,
.mob-submenu li span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px 11px 36px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.mob-submenu li a:hover {
  color: #fff;
  padding-left: 44px;
}

.mob-submenu li span:hover {
  color: #fff;
  padding-left: 44px;
}

/* Level 3 */
.mob-sublevel {
  display: none;
  background: rgba(0, 0, 0, .3);
}

.mob-sublevel.open {
  display: block;
}

.mob-sublevel li a {
  padding: 10px 20px 10px 52px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5);
}

.mob-sublevel li a:hover {
  color: var(--gold);
  padding-left: 60px;
}

.mob-sub-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255, 255, 255, .5);
  transition: var(--transition);
  flex-shrink: 0;
}

.mob-submenu li span.active-sub .mob-sub-arrow {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(90deg);
}

.mob-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: var(--dark2);
  flex-shrink: 0;
}

.mob-footer .mob-contact-btn {
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px;
  border-radius: 6px;
  transition: var(--transition);
  margin-bottom: 12px;
}

.mob-footer .mob-contact-btn:hover {
  background: var(--primary-dk);
}

.mob-footer .mob-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.mob-footer .mob-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.mob-footer .mob-socials a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ========= HERO SLIDER ========= */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.slide-item {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s linear;
}

.owl-item.active .slide-bg {
  transform: scale(1.08);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .5) 60%, rgba(200, 16, 46, .15) 100%);
}

/* Slide BGs */
.slide-1 .slide-bg {
  background-image: url('../image/img/s1.jpg');
}

.slide-2 .slide-bg {
  background-image: url('../image/img/s2.jpg');
}

.slide-3 .slide-bg {
  background-image: url('../image/img/s3.jpg');
}

.slide-content {
  position: relative;
  z-index: 10;
  max-width: 760px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.slide-tag::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.slide-heading {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease .15s, transform .8s ease .15s;
}

.slide-heading .text-accent {
  color: var(--primary);
}

.slide-divider {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  margin-bottom: 22px;
  transition: width 1s ease .3s;
}

.slide-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease .4s, transform .7s ease .4s;
}

.slide-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease .55s, transform .7s ease .55s;
}

.btn-primary-slide {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-slide:hover {
  background: var(--primary-dk);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(200, 16, 46, .5);
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-video .play-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
}

.btn-video .play-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  animation: pulse-ring 2s ease infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(.9);
    opacity: .8;
  }

  50% {
    transform: scale(1.1);
    opacity: .3;
  }

  100% {
    transform: scale(.9);
    opacity: .8;
  }
}

.btn-video:hover {
  color: var(--gold);
}

.btn-video:hover .play-icon {
  border-color: var(--gold);
  background: rgba(232, 160, 32, .1);
}

/* Active slide animations */
.owl-item.active .slide-tag,
.owl-item.active .slide-desc,
.owl-item.active .slide-actions {
  opacity: 1;
  transform: translateY(0);
}

.owl-item.active .slide-heading {
  opacity: 1;
  transform: translateY(0);
}

.owl-item.active .slide-divider {
  width: 80px;
}

/* Owl Controls */
.hero-slider .owl-nav {
  margin: 0;
}


.hero-slider .owl-prev,
.hero-slider .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .1) !important;
  border: 2px solid rgba(255, 255, 255, .25) !important;
  color: #fff !important;
  font-size: 18px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: var(--transition) !important;
  backdrop-filter: blur(4px);
}

.hero-slider .owl-prev {
  left: 28px;
}

.hero-slider .owl-next {
  right: 28px;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.hero-slider .owl-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-slider .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .4) !important;
  margin: 0 !important;
  transition: var(--transition) !important;
}

.hero-slider .owl-dot.active span,
.hero-slider .owl-dot:hover span {
  background: var(--primary) !important;
  transform: scale(1.3);
}

/* Slide counter */
.slide-counter {
  position: absolute;
  right: 40px;
  bottom: 80px;
  z-index: 10;
  text-align: right;
}

.slide-counter .current {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  -webkit-text-stroke: 1px var(--primary);
}

.slide-counter .total {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: 1px;
}

.slide-counter-divider {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, .3);
  margin: 6px 0 4px auto;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
  cursor: pointer;
}

.scroll-indicator span {
  font-size: 10px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, .35);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 7px;
  background: #fff;
  border-radius: 2px;
  animation: scroll-anim 1.8s ease infinite;
}

@keyframes scroll-anim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(12px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* ========= RESPONSIVE ========= */
@media (max-width: 991px) {

  .nav-menu,
  .btn-contact,
  .nav-icon-btn {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .topbar .tb-left {
    gap: 14px;
  }
}

@media (max-width: 576px) {
  .topbar {
    display: none;
  }

  .slide-counter {
    display: none;
  }

  .hero-slider .owl-prev {
    left: 12px;
  }

  .hero-slider .owl-next {
    right: 12px;
  }
}

/* ========= UTILITY ========= */
.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-2 {
  margin-right: 8px !important;
}

/* Navbar flex layout */
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-center {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

@media (max-width:991px) {
  .nav-center {
    display: none;
  }
}

/* ============================================
       KEYFRAMES  (exact from Firdip source)
    ============================================ */
@keyframes topBottom {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes ping2 {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(.85);
    opacity: .55;
  }
}

/* ============================================
       SEC-TITLE
    ============================================ */
.sec-title {
  padding-bottom: 20px;
}

.sec-title__img {
  width: 22px;
  height: 22px;
  display: inline-block;
}

/* div replaces  */
.sec-title__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--firdip-secondary);
  text-transform: uppercase;
  letter-spacing: .3px;
}

/* ============================================
       FIRDIP BTN
    ============================================ */
.firdip-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--firdip-white);
  padding: 15px 34px;
  border-radius: 2px;
  transition: background .35s ease, transform .35s ease, box-shadow .35s ease;
}

.firdip-btn:hover {
  background: var(--firdip-base);
  color: var(--firdip-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 16, 46, .35);
}

/* ============================================
       ABOUT ONE  —  ported exactly from Firdip CSS
    ============================================ */
.about-one {
  padding-bottom: 40px;
  padding-top: 40px;
  background: var(--firdip-white, #fff);
}

@media (max-width: 991px) {
  .about-one {
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .about-one {
    padding-bottom: 80px;
  }
}

.about-one__left {
  margin-right: 50px;
}

@media (max-width: 991px) {
  .about-one__left {
    margin-right: 0;
  }
}

/* Thumb wrapper */
.about-one__thumb {
  position: relative;
  z-index: 1;
}

/* Red strip — rendered as a child div (same as ::after in Firdip) */
.about-one__thumb::after {
  content: "";
  width: 24px;
  height: 361px;
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, #CA4445 0%, rgba(202, 68, 69, 0) 100%);
  animation: ping2 4s ease-in-out infinite;
  z-index: 2;
}

.about-one__thumb__item {
  position: relative;
  z-index: 1;
}

/* Main image */
@media (max-width: 1199px) and (min-width: 991px) {
  .about-one__thumb__item--one img {
    object-fit: cover;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .about-one__thumb__item--one img {
    object-fit: cover;
    width: 100%;
  }
}

/* Overlapping secondary image */
.about-one__thumb__item__two {
  position: absolute;
  bottom: -44px;
  right: 0;
  z-index: 3;
}

.about-one__thumb__item__two img {
  max-width: 230px;
}

@media (max-width: 767px) {
  .about-one__thumb__item__two img {
    max-width: 160px;
  }
}

/* Floating gas cylinder */
.about-one__thumb__item__three {
  position: absolute;
  left: -35px;
  bottom: -35px;
  z-index: 4;
  animation: topBottom 4s ease-in-out infinite;
}

.about-one__thumb__item__three img {
  width: 150px;
}

@media (max-width: 1199px) {
  .about-one__thumb__item__three {
    left: -30px;
  }
}

@media (max-width: 767px) {
  .about-one__thumb__item__three {
    left: -5px;
    bottom: -55px;
  }

  .about-one__thumb__item__three img {
    width: 80px;
  }
}

/* Counter badge */
.about-one__thumb__funfact {
  margin-top: -48px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
  max-width: 239px;
  width: 100%;
  background: var(--firdip-secondary, #232728);
  border-top: 4px solid var(--firdip-white, #fff);
  border-left: 4px solid var(--firdip-white, #fff);
  border-right: 4px solid var(--firdip-white, #fff);
  padding: 28px 0;
}

/* div replaces h2 */
.about-one__thumb__funfact__coun {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 40px;
  line-height: 85%;
  margin-bottom: 14px;
  color: var(--firdip-base, #CA4445);
}

.about-one__thumb__funfact__coun .plus {
  font-size: 28px;
  align-self: flex-start;
  margin-top: 3px;
}

.about-one__thumb__funfact__text {
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: var(--firdip-white, #fff);
  margin-bottom: -4px;
  padding-bottom: 0;
  text-align: center;
}

/* Right side */
.about-one__top {
  margin-bottom: 30px;
}

.about-one__top .sec-title {
  padding-bottom: 20px;
}

.about-one__top__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  margin-bottom: 0;
  color: var(--firdip-text, #7D8081);
}

/* Feature row */
.about-one__feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--firdip-text-gray, #EFE6E1);
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .about-one__feature {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
  }
}

.about-one__feature__item {
  display: flex;
  align-items: center;
  gap: 22px;
}

.about-one__feature__icon {
  width: 100%;
  max-width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--firdip-text-gray, #EFE6E1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--firdip-secondary, #232728);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  flex-shrink: 0;
}

.about-one__feature__icon::after {
  content: "";
  width: 0%;
  height: 0%;
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--firdip-base, #CA4445);
  z-index: -1;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

.about-one__feature__item:hover .about-one__feature__icon {
  color: var(--firdip-white, #fff);
}

.about-one__feature__item:hover .about-one__feature__icon::after {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}

/* div replaces h4 */
.about-one__feature__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: var(--firdip-secondary, #232728);
  text-transform: uppercase;
}

.about-one__feature__title a {
  color: inherit;
  background: linear-gradient(to right, currentColor 0%, currentColor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
}

.about-one__feature__title a:hover {
  background-size: 100% 1px;
}

/* Checklist */
.about-one__list__item {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.about-one__list__item__content {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  margin-right: -10px;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--firdip-text, #7D8081);
  text-transform: capitalize;
}

.about-one__list__item__content i {
  color: var(--firdip-base, #CA4445);
  margin-right: 8px;
  transition: all 0.4s ease-in-out;
}

.about-one__list__item__content:hover i {
  color: var(--firdip-secondary, #232728);
}

.about-one__list__item__content+.about-one__list__item__content {
  margin-top: 18px;
}

.about-one__list__btn {
  margin-top: 47px;
}

/* Small thumb */
.about-one__list__item__thumb {
  overflow: hidden;
  border-radius: 3px;
}

.about-one__list__item__thumb img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  transition: transform .5s ease;
}

.about-one__list__item__thumb:hover img {
  transform: scale(1.06);
}

/* ============================================
       SCROLL REVEAL
    ============================================ */
.abt-fade {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}

.abt-fade.from-left {
  transform: translateX(-48px);
  transition-duration: .9s;
}

.abt-fade.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.abt-fade.d1 {
  transition-delay: .1s;
}

.abt-fade.d2 {
  transition-delay: .25s;
}

.abt-fade.d3 {
  transition-delay: .4s;
}

.abt-fade.d4 {
  transition-delay: .55s;
}

.abt-fade.d5 {
  transition-delay: .7s;
}

.gutter-y-30 {
  row-gap: 30px !important;
}

.featured-products-sec {
  background-image: url(../image/img/background.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0px;
}

.featured-products-sec .dots {
  display: none;
}

.featured-products-sec .sec-title__tagline {
  display: block;
}

.head {
  max-width: 1400px;
  margin: auto;
  padding: 70px 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.head h2 {
  font-size: 2rem;
  color: #fff;
}

.head-sec {
  text-align: center;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-btn:hover {
  background: var(--accent);
}

.slider {
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
}

.track {
  display: flex;
  gap: var(--gap);
  align-items: flex-start;
  justify-content: center;
  scroll-behavior: smooth;
  padding-bottom: 40px;
  overflow: auto;
}

.track::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  flex: 0 0 var(--closed);
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: flex-basis var(--speed), transform var(--speed);
}

.project-card[active] {
  flex-basis: var(--open);
  transform: translateY(0px);
}

.project-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75);
  transition: transform var(--speed);
}

.project-card:hover .project-card__bg {
  transform: scale(1.06);
}

.project-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(transparent 40%, rgba(0, 0, 0, .85));
}

.project-card__title {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.project-card__thumb,
.project-card__desc,
.project-card__btn {
  display: none;
}

.project-card[active] .project-card__content {
  flex-direction: row;
  align-items: center;
  padding: 30px;
  gap: 20px;
}

.project-card[active] .project-card__title {
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 38px;
}

.project-card[active] .project-card__thumb,
.project-card[active] .project-card__desc,
.project-card[active] .project-card__btn {
  display: block;
  color: #fff;
}

.project-card__thumb {
  width: 130px;
  border-radius: 6px;
}

.project-card__desc {
  max-width: 260px;
}

.project-card__btn {
  margin-top: 10px;
  padding: 8px 18px;
  border: none;
  border-radius: 30px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 20px 0;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.controls {
  display: none;
}

/* =========================
   MOBILE RESPONSIVE FIX
========================= */
@media (max-width: 768px) {

  :root {
    --closed: 100%;
    --open: 100%;
    --gap: 12px;
  }

  /* header */

  .head {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 15px;
    gap: 15px;
  }

  .head h2 {
    font-size: 22px;
  }

  /* slider */

  .slider {
    padding: 0 15px;
  }

  .track {
    flex-direction: column;
    overflow: visible;
  }

  /* cards */

  .project-card {
    width: 100%;
    height: auto;
    min-height: 70px;
    flex: 0 0 auto;
  }

  /* active card */

  .project-card[active] {
    min-height: 280px;
    transform: none;
  }

  /* title */

  .project-card__title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 18px;
  }

  /* content layout */

  .project-card__content {
    flex-direction: row;
    align-items: center;
    padding: 14px;
    gap: 15px;
  }

  /* hide extra content */

  .project-card__thumb,
  .project-card__desc,
  .project-card__btn {
    display: none;
  }

  /* show when active */

  .project-card[active] .project-card__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-card[active] .project-card__thumb {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .project-card[active] .project-card__desc {
    display: block;
    font-size: 14px;
  }

  .project-card[active] .project-card__btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  /* controls */

  .controls {
    width: 100%;
    justify-content: space-between;
  }

  .nav-btn {
    width: 36px;
    height: 36px;
  }

  /* dots hidden */

  .dots {
    display: none;
  }

}

/* ── SECTION ── */
.service-three {
  padding: 60px 0;
  position: relative;
  z-index: 1;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(202, 68, 69, 0.04) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23ca4445' fill-opacity='0.07'/%3E%3C/svg%3E");
  background-size: auto, 60px 60px;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── SECTION TITLE ── */
 

.sec-title__tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
}

.sec-title__tagline .icon-wrap {
  width: 32px;
  height: 32px;
  background: var(--base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.sec-title__tagline .icon-wrap svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.sec-title__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--secondary);
  text-transform: uppercase;
}

/* ── CAROUSEL WRAPPER ── */
.carousel-outer {
  position: relative;
}

/* NAV BUTTONS */
.carousel-nav {
  position: absolute;
  top: -72px;
  right: 0;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, transform 0.2s;
  color: var(--secondary);
}

.nav-btn:hover {
  background: var(--base);
  color: #fff;
  transform: scale(1.08);
}

.nav-btn svg {
  width: 18px;
  height: 18px;
}

/* ── TRACK ── */
.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ── CARD ── */
.service-card {
  background: var(--white);
  padding: 40px 15px 0;
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}

/* bottom red line on hover */
.service-card::after {
  content: "";
  width: 80%;
  height: 2px;
  background: var(--gray);
  position: absolute;
  bottom: 0;
  right: 0;
  transition: background 0.4s;
}

.service-card:hover::after {
  background: var(--base);
}

/* ── CARD TOP ── */
.card-top {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray);
  margin-bottom: 30px;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
}

.card-top::after {
  content: "";
  width: 0%;
  height: calc(100% + 1px);
  background: var(--gray);
  position: absolute;
  top: 0;
  left: -40px;
  z-index: -1;
  transition: width 0.4s ease;
}

.service-card:hover .card-top::after {
  width: calc(100% + 80px);
}

.card-icon {
  background: var(--gray);
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--base);
  font-size: 28px;
  transition: background 0.4s, color 0.4s;
}

.service-card:hover .card-icon {
  background: var(--base);
  color: #fff;
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-left: 20px;
  line-height: 1.2;
}

/* ── CARD IMAGE ── */
.card-thumb {
  overflow: hidden;
  margin-bottom: 30px;
  height: 300px;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.service-card:hover .card-thumb img {
  transform: scale(1.1);
}

/* ── CARD TEXT ── */
.card-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
}

/* ── CARD BTN ── */
.card-btn { 
  margin-bottom: 0;
  padding-bottom: 0;
}

.card-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  padding: 12px 22px;
  transition: background 0.3s;
  position: relative;
  bottom: -10px;
  z-index: 1;
}

.card-btn a:hover {
  background: var(--base);
}

.card-btn a svg {
  width: 14px;
  height: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
  .service-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

@media (max-width: 767px) {
  .service-three {
    padding: 70px 0;
  }

  .service-card {
    flex: 0 0 100%;
    padding: 30px 24px 0;
  }

  .carousel-nav {
    display: none;
  }

  .sec-title {
    margin-bottom: 30px;
  }

  /* dots for mobile */
  .carousel-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }
}

@media (min-width: 768px) {
  .carousel-dots {
    display: none;
  }
}

.carousel-dots {
  display: none;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray);
  border: 2px solid #ccc;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.dot.active {
  background: var(--base);
  border-color: var(--base);
}

@media (min-width: 576px) and (max-width: 767px) {
  .service-card {
    flex: 0 0 calc(100% - 20px);
  }
}


/* ── Section ── */
.funfact {
  position: relative;
  z-index: 1;
  padding: 70px 20px 60px;
  overflow: hidden;
}

/* Diagonal red background via clip-path */
.funfact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--base);
  background-image: repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, 0.04) 0px,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 10px);
  clip-path: polygon(0 8%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

/* ── Grid ── */
.funfact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

/* ── Card ── */
.funfact__card {
  background: var(--white);
  position: relative;
  padding: 60px 16px 36px;
  text-align: center;
  z-index: 1;
  transition: transform 0.3s ease;
}

/* Beige top strip */
.funfact__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--card-bg);
  z-index: -1;
}

.funfact__card:hover {
  transform: translateY(-4px);
}

/* ── Icon badge ── */
.funfact__icon {
  width: 68px;
  height: 68px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 44px;
  position: relative;
  color: #fff;
  font-size: 25px;
  transition: background 0.35s ease;
}

.funfact__icon::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 14px;
  background: var(--dark);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: background 0.35s ease;
}

.funfact__card:hover .funfact__icon,
.funfact__card:hover .funfact__icon::after {
  background: var(--base);
}

.funfact__icon svg {
  width: 36px;
  height: 36px;
  fill: var(--white);
}

/* ── Number ── */
.funfact__number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 2px;
}

/* ── Label ── */
.funfact__label {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .funfact__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .funfact::before {
    clip-path: none;
  }
}

@media (max-width: 480px) {
  .funfact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .funfact {
    padding: 50px 14px 40px;
  }

  .funfact__card {
    padding: 50px 10px 28px;
  }

  .funfact__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 36px;
  }
}

@media (max-width: 340px) {
  .funfact__grid {
    grid-template-columns: 1fr;
  }
}

/* Count animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.funfact__card {
  animation: countUp 0.6s ease both;
}

.funfact__card:nth-child(1) {
  animation-delay: 0.1s;
}

.funfact__card:nth-child(2) {
  animation-delay: 0.25s;
}

.funfact__card:nth-child(3) {
  animation-delay: 0.4s;
}

.funfact__card:nth-child(4) {
  animation-delay: 0.55s;
}


/* ── Section ── */


.testi {
  padding: 100px 20px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* diagonal line background texture */
.testi::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      rgba(0, 0, 0, 0.025) 0px, rgba(0, 0, 0, 0.025) 1px,
      transparent 1px, transparent 12px);
  pointer-events: none;
}

.testi__container {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

/* ── Sec title ── */
.testi .sec-title{
  text-align: end;
  margin: 0;
  padding: 0;
}

.testi .sec-title__title{
  margin: 0;
  padding: 0;
}

.sec-title__tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--base);
  margin-bottom: 14px;
}

.sec-title__tagline svg {
  width: 20px;
  height: 20px;
  fill: var(--base);
}

.sec-title__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  text-transform: uppercase;
}

/* ── Slider wrapper ── */
.testi__inner {
  position: relative;
}

/* ── Slide card ── */
.testi__card {
  display: none;
  background: var(--cream);
  position: relative;
  padding: 0;
  z-index: 1;
}

.testi__card.active {
  display: flex;
}

/* White diagonal cut top-right */
.testi__card::after {
  content: "";
  position: absolute;
  top: -0.5px;
  right: 0;
  width: 65%;
  height: 48px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 6% 100%);
  z-index: 0;
}

/* Red chevron right edge */
.testi__card::before {
  content: "";
  position: absolute;
  height: 140px;
  width: 34px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  background: var(--base);
  bottom: 0;
  right: 0;
  z-index: 2;
}

/* White chevron behind red */
.testi__chevron {
  position: absolute;
  height: 220px;
  width: 54px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  background: #fff;
  bottom: -40px;
  right: -2px;
  z-index: 0;
}

/* Left red accent */
.testi__left-accent {
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  height: 120px;
  width: 30px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--base);
  z-index: 3;
}

/* ── Left: photo column ── */
.testi__photo-col {
  flex: 0 0 340px;
  position: relative;
}

.testi__photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
}

.testi__identity {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  text-align: center;
  padding: 20px;
}

.testi__name {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.testi__role {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Right: content column ── */
.testi__content-col {
  flex: 1;
  padding: 80px 70px 50px 50px;
  position: relative;
}

/* Thumb row */
.testi__thumbs {
  display: flex;
  gap: 6px;
  margin-bottom: 30px;
}

.testi__thumb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid transparent;
  cursor: pointer;
  transition: border-color 0.3s;
  flex-shrink: 0;
}

.testi__thumb.active {
  border-color: var(--base);
}

.testi__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Stars */
.testi__stars {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.testi__stars i {
  width: 22px;
  height: 22px;
  color: var(--base);
}

/* Review text */
.testi__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 30px;
}

/* Quote mark */
.testi__quote {
  position: absolute;
  top: 110px;
  right: 60px;
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  pointer-events: none;
  user-select: none;
}

/* Arrows */
.testi__arrows {
  display: flex;
  gap: 10px;
}

.testi__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--dark);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testi__btn:hover {
  background: var(--base);
  color: #fff;
}

.testi__btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .testi__card.active {
    flex-direction: column;
  }

  .testi__photo-col {
    flex: none;
    width: 100%;
  }

  .testi__photo-col img {
    min-height: 280px;
  }

  .testi__content-col {
    padding: 30px 30px 40px;
  }

  .testi__quote {
    top: 10px;
    right: 10px;
    font-size: 70px;
  }

  .testi__chevron {
    display: none;
  }

  .testi__card::before {
    display: none;
  }

  .testi__left-accent {
    display: none;
  }

  .testi__card::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .testi {
    padding: 60px 16px;
  }

  .testi__thumb {
    width: 60px;
    height: 60px;
  }

  .testi__content-col {
    padding: 24px 20px 32px;
  }

  .testi__quote {
    display: none;
  }

  .testi__photo-col img {
    min-height: 240px;
  }
}

/* Fade animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testi__card.active {
  animation: fadeSlide 0.5s ease;
}

.faq-section {
  padding: 50px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ---- TOP LABEL ---- */
.faq-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.faq-label .fire-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-label .fire-icon-wrap i {
  color: #c0392b;
  font-size: 16px;
}

.faq-label span {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #333;
  text-transform: uppercase;
}

/* ---- MAIN TITLE ---- */
.faq-title {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 40px;
}

/* ---- SEARCH ---- */
.faq-search-wrap {
  position: relative;
  margin-bottom: 30px;
}

.faq-search-wrap input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  border: none;
  background: #f5f0ec;
  border-radius: 4px;
  font-size: 14px;
  color: #888;
  outline: none;
  font-family: 'Open Sans', sans-serif;
}

.faq-search-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 15px;
}

/* ---- ACCORDION ---- */
.faq-accordion .accordion-item {
  border: none;
  border-radius: 0 !important;
  margin-bottom: 10px;
  background: #f5f0ec;
}

.faq-accordion .accordion-button {
  background: #f5f0ec;
  color: #1a1a1a;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 20px 22px;
  box-shadow: none !important;
  border-radius: 0 !important;
  position: relative;
}

.faq-accordion .accordion-button::after {
  display: none;
}

.faq-accordion .accordion-button .faq-toggle-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  font-size: 20px;
  color: #555;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-toggle-btn {
  background: #c0392b;
  border-color: #c0392b;
  color: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #f5f0ec;
  color: #1a1a1a;
}

.faq-accordion .accordion-body {
  background: #f5f0ec;
  padding: 0 22px 22px;
  font-size: 14px;
  color: #666;
  line-height: 1.75;
}

/* dot indicator on first item */
.faq-accordion .accordion-button .dot-indicator {
  width: 8px;
  height: 8px;
  background: #c0392b;
  border-radius: 50%;
  margin-left: 10px;
  flex-shrink: 0;
  display: inline-block;
}

/* ---- RIGHT SIDEBAR CARDS ---- */
.sidebar-card {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.sidebar-card-inner {
  background: #2a2a2a;
  padding: 36px 26px 30px;
  text-align: center;
  position: relative;
}

.sidebar-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='300' filter='url(%23noise)' opacity='0.07'/%3E%3C/svg%3E") repeat;
  opacity: 0.3;
  pointer-events: none;
}

.sidebar-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -58px auto 20px;
  position: relative;
  z-index: 2;
  border: none;
}

.sidebar-icon-circle i {
  color: #c0392b;
  font-size: 26px;
}

.sidebar-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.sidebar-card-divider {
  border: none;
  border-top: 1px solid #444;
  margin: 0 -26px 18px;
  position: relative;
  z-index: 2;
}

.sidebar-card-label {
  font-size: 12px;
  color: #888;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.sidebar-card-contact {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 2;
}

.sidebar-card-contact span {
  font-weight: 400;
  color: #bbb;
}

.sidebar-card-contact a {
  font-weight: 700;
  color: var(--base);
}

@media (max-width: 768px) {
  .faq-section { padding: 30px 20px; }
  .faq-title { font-size: 28px; }
}

/* ── Section ── */
.feature-one {
  padding: 50px 0;
  background: #fff;
  position: relative;
}
@media (max-width: 991px) { .feature-one { padding: 100px 0; } }
@media (max-width: 767px) { .feature-one { padding: 80px 0; } }

/* ── Container ── */
.feature-one .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ── Grid ── */
.feature-one__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .feature-one__row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .feature-one__row { grid-template-columns: 1fr; }
}

/* ── Card ── */
.feature-one__item {
  border: 1px solid #EFE6E1;
  background: #fff;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  cursor: default;
}

/* Red fill from top on hover */
.feature-one__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #CA4445;
  z-index: -1;
  transition: height 0.4s ease-in-out;
}
.feature-one__item:hover::after {
  height: 100%;
}

/* ── Icon ── */
.feature-one__item__icon {
  font-size: 46px;
  color: #7D8081;
  line-height: 1;
  margin-bottom: 22px;
  transition: color 0.4s ease-in-out;
  display: block;
}

/* ── Title (no heading tag) ── */
.feature-one__item__title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #232728;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: color 0.4s ease-in-out;
  display: block;
}

/* ── Text ── */
.feature-one__item__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.56;
  color: #7D8081;
  transition: color 0.4s ease-in-out;
  display: block;
}

/* ── Hover: turn all text white ── */
.feature-one__item:hover .feature-one__item__icon,
.feature-one__item:hover .feature-one__item__title,
.feature-one__item:hover .feature-one__item__text {
  color: #fff;
}


/* ===== CLIENT LOGOS SECTION ===== */
.logos-section {
    background: var(--base) ;
    padding: 50px 20px;
}

.logos-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Carousel Specific Styling */
#logosCarousel.owl-carousel {
    display: flex;
    align-items: center;
}

#logosCarousel .owl-stage-outer {
    display: flex;
    align-items: center;
}

#logosCarousel .owl-stage {
    display: flex;
    align-items: center;
}

#logosCarousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item {
    background: white;
    padding: 10px;
    border-radius: 4px;
    margin: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.logo-item img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

/* Logo Carousel Navigation */
#logosCarousel .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

#logosCarousel .owl-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.3) !important;
    border: none;
    color: white !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

#logosCarousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.6) !important;
    transform: scale(1.1);
}

#logosCarousel .owl-prev::before {
    content: '\f053';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

#logosCarousel .owl-next::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Logo Dots */
#logosCarousel .owl-dots {
    text-align: center;
    margin-top: 20px;
    padding: 0;
}

#logosCarousel .owl-dot {
    display: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 6px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

#logosCarousel .owl-dot.active {
    background: white;
    transform: scale(1.3);
}


/* =============================
   FOOTER WRAPPER
============================= */

.htf-footer {
  position: relative;
  z-index: 1;
  background: #232728;
  margin-top: 55px;
  padding-top: 90px;
  overflow: hidden;
}

.htf-footer-bg {
  position: absolute;
  inset: 0;
  background-image: url(../image/img/14.png');
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  opacity: .4;
  mix-blend-mode: luminosity;
  z-index: 0;
  pointer-events: none;
}

/* container */

.htf-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

/* =============================
TOP BAR
============================= */

.htf-top {
  position: relative;
  z-index: 3;
}

.htf-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 35px 56px;
  position: relative;
  transform: translateY(-50%);
}

.htf-top-inner::after {
  content: "";
  height: 1px;
  background: #00000040;
  position: absolute;
  left: 225px;
  right: 250px;
  top: 50%;
}

@media(max-width:767px) {
  .htf-top-inner::after {
    display: none;
  }
}

@media(max-width:575px) {

  .htf-top-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
  }

}

/* logo */

.htf-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.htf-logo-icon {
  width: 44px;
  height: 44px;
  background: #3a3a3a26;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.htf-logo-icon i {
  font-size: 20px;
  color: #000;
}

.htf-logo-text img {
  display: block;
}

/* social */

.htf-social {
  display: flex;
  gap: 12px;
}

.htf-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #3a3a3a26;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  transition: .3s;
}

.htf-social a:hover {
  background: #232728;
  color: #CA4445;
}

/* =============================
MIDDLE
============================= */

.htf-middle {  
  position: relative;
  z-index: 2;
}

@media(max-width:991px) {
  .htf-middle {
    margin-bottom: 40px;
  }
}

.htf-row {
  display: grid;
  grid-template-columns: 2fr 1.6fr 1.2fr 1.6fr;
  gap: 30px;
}

@media(max-width:991px) {
  .htf-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:575px) {
  .htf-row {
    grid-template-columns: 1fr;
  }
}

/* widgets */

.htf-widget-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 18px;
  display: block;
}

.htf-widget-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  color: #dfdfdf;
  margin-bottom: 22px;
  display: block;
}

/* links */

.htf-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  height: 200px;
    overflow-y: overlay;
}

::-webkit-scrollbar {
  width: 10px; /* Adjust width as needed */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color of the track */
}

::-webkit-scrollbar-thumb {
  background: var(--primary); /* Color of the scrollbar handle */ 
}

::-webkit-scrollbar-thumb:hover {
  background: #555; /* Color on hover */
}


.htf-links a {
  font-size: 15px;
  font-weight: 500;
  color: #dfdfdf;
  line-height: 1.9;
  transition: .3s;
}

.htf-links a:hover {
  color: #CA4445;
}

/* contact */

.htf-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.htf-contact-item {
  display: flex;
  gap: 12px;
}

.htf-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(121, 117, 119, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CA4445;
}

.htf-contact-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  color: #dfdfdf;
  display: block;
  transition: .3s;
}

.htf-contact-text:hover {
  color: #CA4445;
}

/* =============================
BOTTOM
============================= */

.htf-bottom {
  background: #232728;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.htf-bottom-inner {
  padding: 26px 0;
  text-align: center;
}

.htf-copy {
  font-size: 15px;
  font-weight: 500;
  color: #dfdfdf;
}

.htf-copy a{
  color: var(--primary);
  font-weight: 900;
}


/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
  color: var(--primary);
}
.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--firdip-base, #CA4445);
  position: relative;
  overflow: hidden;
}
.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--firdip-black, #171818);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}


/* ════════════════════════════════════════════
    SPEED DIAL WRAPPER
    Place this anywhere — fixed bottom-right
════════════════════════════════════════════ */
.float-speed-dial {
  position: fixed;
  bottom: 32px;
  left: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  z-index: 9999;
}

/* ── Sub-buttons container ── */
.float-speed-dial__items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease;
}

/* Open state via hover OR .open class (JS toggle) */
.float-speed-dial:hover .float-speed-dial__items,
.float-speed-dial.open .float-speed-dial__items {
  max-height: 240px;
  opacity: 1;
}

/* ── Each dial item row ── */
.float-speed-dial__item {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  text-decoration: none;
  transform: translateY(12px);
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.28s ease;
}

.float-speed-dial:hover .float-speed-dial__item,
.float-speed-dial.open .float-speed-dial__item {
  transform: translateY(0);
  opacity: 1;
}

/* Staggered entrance */
.float-speed-dial:hover .float-speed-dial__item:nth-child(2),
.float-speed-dial.open .float-speed-dial__item:nth-child(2) {
  transition-delay: 0.06s;
}

.float-speed-dial:hover .float-speed-dial__item:nth-child(1),
.float-speed-dial.open .float-speed-dial__item:nth-child(1) {
  transition-delay: 0.13s;
}

/* ── Tooltip tag ── */
.float-speed-dial__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--dark);
  padding: 6px 13px;
  border-radius: 4px;
  white-space: nowrap; 
  position: relative;
}

/* Arrow pointing LEFT toward icon */
.float-speed-dial__tag::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--dark);
  border-left-width: 0;
}

/* ── Icon circle ── */
.float-speed-dial__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
 

/* WhatsApp colours */
.float-speed-dial__item--wa .float-speed-dial__icon {
  background: var(--whatsapp);
  color: var(--white); 
}

.float-speed-dial__item--wa:hover .float-speed-dial__icon {
  background: var(--whatsapp-dk); 
}

/* Call colours */
.float-speed-dial__item--call .float-speed-dial__icon {
  background: var(--primary);
  color: var(--white); 
}

.float-speed-dial__item--call:hover .float-speed-dial__icon {
  background: var(--primary-dk); 
}

/* ── Main trigger button ── */
.float-speed-dial__trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow:
    0 6px 24px rgba(200, 16, 46, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transition:
    background 0.3s ease,
    transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.float-speed-dial:hover .float-speed-dial__trigger,
.float-speed-dial.open .float-speed-dial__trigger {
  background: var(--primary-dk);
  transform: rotate(45deg);
  box-shadow:
    0 8px 30px rgba(200, 16, 46, 0.65),
    0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Outer pulse ring on trigger */
.float-speed-dial__trigger::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: dialPulse 2.4s ease-out infinite;
}

/* Second slower ring */
.float-speed-dial__trigger::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: dialPulse 2.4s ease-out infinite 0.8s;
}

@keyframes dialPulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }

  80% {
    transform: scale(1.75);
    opacity: 0;
  }

  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

/* ── Responsive: slightly smaller on mobile ── */
@media (max-width: 480px) {
  .float-speed-dial {
    bottom: 20px;
    left: 20px;
  }

  .float-speed-dial__trigger {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .float-speed-dial__icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .float-speed-dial__tag {
    font-size: 10px;
    padding: 5px 11px;
  }
}

.hero-slider .owl-dots{
  display: none;
}


/* ── Section wrapper ── */
.about-us-two {
  max-width: 1200px;
  width: 100%;
  margin: auto; 
  padding: 72px 0px;
  position: relative; 
  overflow: hidden;
}

/* subtle grain overlay */
.about-us-two::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .4;
}

/* ── Float container ── */
.about-us-two__body {
  position: relative;
}

.about-us-two__body::after {
  content: '';
  display: table;
  clear: both;
}

/* ── Floated image block ── */
.about-us-two__img-wrap {
    float: left;
    width: 42%;
    margin: 6px 48px 32px 0px;
    position: relative;
    shape-outside: margin-box;
}

.about-us-two__img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: grayscale(18%) contrast(1.06);
}

.about-us-two__img-wrap::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border-top: 2px solid var(--rust);
  border-right: 2px solid var(--rust);
  z-index: 0;
  pointer-events: none;
}

.about-us-two__img-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 60%;
  height: 60%;
  border-bottom: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  z-index: 0;
  pointer-events: none;
}

/* ── Floating badge ── */
.about-us-two__badge {
  position: absolute;
  bottom: 28px;
  right: -28px; 
  color: var(--cream);
  padding: 22px 26px;
  text-align: center;
  z-index: 10;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .22);
  animation: floatBadge 3.6s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.about-us-two__badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--primary);
  display: block;
}

.about-us-two__badge-label {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: .8;
  margin-top: 4px;
  display: block;
}

/* ── Text content ── */
.about-us-two__eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 1.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 18px;
}

.about-us-two__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 28px;
}

.about-us-two__title em {
  font-style: italic;
  color: var(--rust);
}

.about-us-two__lead {
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 22px;
}

.about-us-two__body p {
  font-size: .97rem;
  line-height: 1.9;
  color: #5a4f45;
  margin-bottom: 18px;
}

.about-us-two__rule {
  border: none;
  border-top: 1px solid var(--soft);
  margin: 30px 0;
}

/* ── Stats row ── */
.about-us-two__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--soft);
  margin-top: 40px;
  padding-top: 36px;
}

.about-us-two__stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--soft);
}

.about-us-two__stat:last-child {
  border-right: none;
}

.about-us-two__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary-dk);
  display: block;
  line-height: 1;
}

.about-us-two__stat-label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

/* ── CTA ── */
.about-us-two__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 30px;
  background: var(--primary);
  color: var(--white);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, gap .25s;
  cursor: pointer;
  border: none;
}

.about-us-two__cta:hover {
  background: var(--rust);
  gap: 16px;
}

.about-us-two__cta svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .about-us-two {
    padding: 52px 36px;
  }

  .about-us-two__img-wrap {
    width: 48%;
    margin-left: 32px;
  }

  .about-us-two__img-wrap img {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .about-us-two {
    padding: 40px 24px;
  }

  .about-us-two__img-wrap {
    float: none;
    width: 100%;
    margin: 0 0 40px 0;
  }

  .about-us-two__img-wrap img {
    height: 300px;
  }

  .about-us-two__badge {
    left: 16px;
    bottom: 16px;
  }

  .about-us-two__stats {
    flex-wrap: wrap;
  }

  .about-us-two__stat {
    flex: 1 1 45%;
    border-right: none;
    border-bottom: 1px solid var(--soft);
    padding: 16px 10px;
  }

  .about-us-two__stat:nth-child(odd) {
    border-right: 1px solid var(--soft);
  }

  .about-us-two__stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* ── Banner ── */
.fighters-banner {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image */
.fighters-banner__bg {
  position: absolute;
  inset: 0;
  /*background-image: url(../image/img/15.jpg');*/
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
  animation: slowZoom 8s ease forwards;
}

@keyframes slowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

/* Dark gradient overlay */
.fighters-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.38) 40%,
    rgba(0,0,0,.38) 60%,
    rgba(0,0,0,.72) 100%
  );
}

/* Bottom fade */
.fighters-banner__fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
}

/* Content */
.fighters-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: riseIn .7s cubic-bezier(.22,1,.36,1) both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Page title – styled <p> not a heading tag */
.fighters-banner__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}

/* Breadcrumb nav */
.fighters-banner__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
}

.fighters-banner__breadcrumb li {
  display: flex;
  align-items: center;
}

.fighters-banner__breadcrumb a,
.fighters-banner__breadcrumb span {
  font-family: 'Barlow', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}

.fighters-banner__breadcrumb a:hover {
  color: #fff;
}

/* Active / current page */
.fighters-banner__breadcrumb li[aria-current="page"] span {
  color: #fff;
}

/* Separator — double slash with fire-red accent */
.fighters-banner__sep {
  display: inline-flex;
  align-items: center;
  margin: 0 10px;
  gap: 2px;
}

.fighters-banner__sep i {
  display: inline-block;
  width: 2px;
  height: 13px;
  background: #e63222;
  border-radius: 1px;
  transform: skewX(-14deg);
}

.fighters-banner__sep i:first-child {
  opacity: .6;
}

/* Decorative bottom line */
.fighters-banner__line {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #e63222;
  z-index: 3;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .fighters-banner { height: 260px; }
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0px;
}

.sitemap-title {
    color: #2b2a28;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sitemap-card {
    background-color: white;
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: #2b2a28;
}

.sitemap-card:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(228, 126, 126, 0.3);
    text-decoration: none;
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sitemap-card:hover .card-description {
    opacity: 1;
}

.category-section {
    margin-bottom: 40px;
}

.category-header {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
}

.main-links {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .sitemap-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .category-header {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .sitemap-card {
        padding: 15px;
    }
    
    .card-label {
        font-size: 1rem;
    }
}


/* ════════════════════════════════════════
    CONTACT TWO — TOP FORM SECTION
════════════════════════════════════════ */
.contact-two {
  padding: 60px 0; 
  background: url(../image/img/16.webp');
  position: relative;
  background-size: cover ;
  overflow: hidden;
}

/* subtle diagonal stripe background */
.contact-two::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      transparent,
      transparent 40px,
      rgba(202, 68, 69, .025) 40px,
      rgba(202, 68, 69, .025) 41px);
  pointer-events: none;
}

/* ── Section header ── */
.contact-two__header {
  text-align: center;
  margin-bottom: 54px;
}

.contact-two__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c2-base);
  margin-bottom: 14px;
}

.contact-two__tagline i {
  font-size: .9rem;
}

.contact-two__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .02em;
}

.contact-two__title span {
  color: var(--c2-base);
}

/* ── Form ── */
.contact-two__form {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-two__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-two__form-control {
  position: relative;
}

.contact-two__form-control--full {
  grid-column: 1 / -1;
}

.contact-two__form-control i {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: var(--c2-base);
  font-size: .9rem;
  pointer-events: none;
  z-index: 2;
}

.contact-two__form-control--textarea i {
  top: 20px;
  transform: none;
}

.contact-two__form-control input,
.contact-two__form-control select,
.contact-two__form-control textarea {
  width: 100%;
  padding: 16px 18px 16px 46px;
  background: #fff;
  border: 1px solid #e2ddd8;
  border-radius: 0;
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  font-weight: 400;
  color: var(--c2-dark);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  appearance: none;
  -webkit-appearance: none;
}

.contact-two__form-control input::placeholder,
.contact-two__form-control textarea::placeholder {
  color: var(--c2-muted);
  font-weight: 400;
}

.contact-two__form-control select {
  color: var(--c2-muted);
  cursor: pointer;
  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='%23CA4445' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.contact-two__form-control select.has-value {
  color: var(--c2-dark);
}

.contact-two__form-control textarea {
  height: 150px;
  resize: none;
}

.contact-two__form-control input:focus,
.contact-two__form-control select:focus,
.contact-two__form-control textarea:focus {
  border-color: var(--c2-base);
  box-shadow: 0 0 0 3px rgba(var(--c2-base-rgb), .10);
}

/* submit button */
.contact-two__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 42px;
  background: var(--c2-base);
  color: var(--c2-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  z-index: 1;
}

.contact-two__submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c2-dark);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
  z-index: -1;
}

.contact-two__submit:hover::before {
  transform: translateX(0);
}

.contact-two__submit:hover {
  background: var(--c2-dark);
}

.contact-two__submit i {
  font-size: .9rem;
}

/* ════════════════════════════════════════
  CONTACT TWO — BOTTOM INFO STRIP
════════════════════════════════════════ */
.contact-two-bottom {
  padding-bottom: 0;
  margin-top: 80px;
}

.contact-two-bottom__inner {
  position: relative;
  z-index: 1;
  max-width: 950px;
  margin: 0 auto;
}

/* top row: title panel + phone panel */
.contact-two-bottom__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--c2-dark);
}

@media (max-width: 767px) {
  .contact-two-bottom__top {
    grid-template-columns: 1fr;
  }
}

/* left red panel */
.contact-two-bottom__top-title {
  background: var(--c2-base);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

/* noise texture on red panel */
.contact-two-bottom__top-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  opacity: .5;
  pointer-events: none;
}

.contact-two-bottom__top-title p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c2-white);
  text-align: center;
  position: relative;
  z-index: 1;
}

/* right phone panel */
.contact-two-bottom__top-phone {
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--c2-border);
}

.contact-two-bottom__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c2-base);
  color: var(--c2-white);
  font-size: 1.1rem;
  transition: all .35s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-two-bottom__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c2-white);
  border-radius: 50%;
  transform: scale(0);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
  z-index: -1;
}

.contact-two-bottom__top-phone:hover .contact-two-bottom__icon {
  color: var(--c2-dark);
}

.contact-two-bottom__top-phone:hover .contact-two-bottom__icon::after {
  transform: scale(1);
}

.contact-two-bottom__subtitle {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c2-muted);
  display: block;
  margin-bottom: 4px;
}

.contact-two-bottom__text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c2-white);
  display: block;
}

.contact-two-bottom__text a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.contact-two-bottom__text a:hover {
  color: var(--c2-base);
}

/* bottom row: email / address / social */
.contact-two-bottom__list-wrap {
  background: var(--c2-dark);
  padding: 32px 40px;
  max-width: 950px;
  margin: 0 auto;
}

.contact-two-bottom__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-two-bottom__list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 200px;
}

.contact-two-bottom__list-item--social {
  justify-content: flex-end;
  flex: 0 0 auto;
}

@media (max-width: 991px) {
  .contact-two-bottom__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .contact-two-bottom__list-item--social {
    justify-content: flex-start;
  }
}

.contact-two-bottom__list-item:hover .contact-two-bottom__icon {
  color: var(--c2-dark);
}

.contact-two-bottom__list-item:hover .contact-two-bottom__icon::after {
  transform: scale(1);
}

.contact-two-bottom__social {
  display: flex;
  gap: 10px;
}

.contact-two-bottom__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: var(--c2-white);
  background: rgba(255, 255, 255, .12);
  text-decoration: none;
  transition: background .25s, color .25s;
}

.contact-two-bottom__social a:hover {
  background: var(--c2-base);
  color: var(--c2-white);
}

/* ── Map ── */
.contact-two-map {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .contact-two {
    padding: 70px 0 0;
  }

  .contact-two__form-grid {
    grid-template-columns: 1fr;
  }

  .contact-two__form-control--full {
    grid-column: 1;
  }

  .contact-two-bottom__top-phone {
    padding: 28px 24px;
  }

  .contact-two-bottom__list-wrap {
    padding: 28px 24px;
  }

  .contact-two-map {
    height: 300px;
  }
}