@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font);
}

body {
  font-family: var(--theme-font);
  box-sizing: border-box;
}

:root {
  --theme-color: #000;
  --theme-color2: #fff;
  --theme-font: "Open Sans", sans-serif;
  --heading-font: "Open Sans", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  color: #000;
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
}

.common-heading {
  color: #000000;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.common-btn {
  background-color: #000;
  color: #fff;
  padding: 15px 25px;
}

.common-space {
  padding: 80px 0;
}

section {
  overflow: hidden;
}

/* --- Premium Header Refinements --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  /* Top Bar Styling */
}
.site-header .top-bar {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-header .top-bar .contact-links a,
.site-header .top-bar .social-icons a {
  color: var(--theme-color2);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.site-header .top-bar .contact-links a:hover,
.site-header .top-bar .social-icons a:hover {
  opacity: 0.6;
}
.site-header {
  /* Navbar Main */
}
.site-header .navbar {
  padding: 25px 0;
  transition: all 0.4s;
}
.site-header .navbar .logo-area img {
  max-height: 80px;
  filter: invert(1); /* Keeps white on dark background */
  transition: all 0.4s;
}
.site-header .navbar .navbar-nav .nav-item .nav-link {
  color: var(--theme-color2);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 20px !important;
  position: relative;
}
.site-header .navbar .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--theme-color2);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.site-header .navbar .navbar-nav .nav-item .nav-link:hover::after, .site-header .navbar .navbar-nav .nav-item .nav-link.active::after {
  width: 30px;
}
.site-header .navbar .navbar-nav .nav-item {
  /* Dropdown Styling */
}
.site-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  background: var(--theme-color);
  border: 1px solid #222;
  border-radius: 0;
  padding: 20px 0;
  top: 20px;
  margin-top: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.site-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  color: #ddd;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 25px;
  transition: all 0.3s;
}
.site-header .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: var(--theme-color2);
  padding-left: 30px;
}
.site-header .navbar .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
  display: block;
  animation: slideUp 0.3s ease-out;
}
.site-header .navbar .btn-premium {
  background-color: transparent;
  color: #fff;
  border: solid 1px #fff;
  padding: 10px 20px;
  transition: all 0.3s;
}
.site-header .navbar .btn-premium:hover {
  background-color: #000;
}
.site-header .navbar {
  /* Mobile Toggler */
}
.site-header .navbar .navbar-toggler {
  border: none;
  color: var(--theme-color2);
  font-size: 24px;
}
.site-header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
.site-header {
  /* Action Button */
}
.site-header .header-btn {
  border: 1px solid var(--theme-color2);
  color: var(--theme-color2);
  padding: 10px 25px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
}
.site-header .header-btn:hover {
  background: var(--theme-color2);
  color: var(--theme-color);
}
.site-header {
  /* --- STICKY STATE --- */
}
.site-header.sticky {
  background: var(--theme-color2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.site-header.sticky .top-bar {
  display: none;
}
.site-header.sticky .navbar {
  padding: 15px 0;
}
.site-header.sticky .navbar .logo-area img {
  max-height: 50px;
  filter: invert(0); /* Switch to black on white background */
}
.site-header.sticky .navbar .navbar-nav .nav-item .nav-link {
  color: var(--theme-color);
}
.site-header.sticky .navbar .navbar-nav .nav-item .nav-link::after {
  background: var(--theme-color);
}
.site-header.sticky .btn-premium {
  border-color: var(--theme-color);
  color: var(--theme-color);
}
.site-header.sticky .btn-premium:hover {
  background: var(--theme-color);
  color: var(--theme-color2);
}
.site-header.sticky .navbar-toggler {
  color: var(--theme-color);
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--theme-color);
}
.hero-section .hero-slider .item .hero-inner {
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  /* Automatic B&W conversion for any image */
}
.hero-section .hero-slider .item .hero-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.hero-section .hero-slider .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 5rem;
  color: var(--theme-color2);
}
.hero-section .hero-slider .hero-content .subtitle {
  display: block;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: 300;
}
.hero-section .hero-slider .hero-content h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1px;
}
.hero-section .hero-slider .hero-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 500px;
  margin-bottom: 40px;
  text-align: left;
}
.hero-section .hero-slider .hero-content .hero-btns {
  display: flex;
  gap: 20px;
}
.hero-section .hero-slider .hero-content .hero-btns .btn-main {
  background: var(--theme-color2);
  color: var(--theme-color);
  padding: 15px 35px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  transition: all 0.3s;
  border: 1px solid var(--theme-color2);
}
.hero-section .hero-slider .hero-content .hero-btns .btn-main:hover {
  background: transparent;
  color: var(--theme-color2);
}
.hero-section .hero-slider .hero-content .hero-btns .btn-ghost {
  background: transparent;
  color: var(--theme-color2);
  padding: 15px 35px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-section .hero-slider .hero-content .hero-btns .btn-ghost:hover {
  border-color: var(--theme-color2);
  background: var(--theme-color2);
  color: var(--theme-color);
}
.hero-section .hero-slider {
  /* Owl Navigation Customization */
}
.hero-section .hero-slider .owl-nav {
  position: absolute;
  bottom: 50px;
  right: 10%;
  margin: 0;
}
.hero-section .hero-slider .owl-nav button.owl-prev,
.hero-section .hero-slider .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0;
  color: #fff !important;
  margin: 0 5px;
  transition: all 0.3s;
}
.hero-section .hero-slider .owl-nav button.owl-prev:hover,
.hero-section .hero-slider .owl-nav button.owl-next:hover {
  background: #fff !important;
  color: #000 !important;
  border-color: #fff !important;
}
.hero-section .hero-slider {
  /* Owl Dots Customization */
}
.hero-section .hero-slider .owl-dots {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}
.hero-section .hero-slider .owl-dots .owl-dot span {
  width: 4px;
  height: 40px;
  margin: 5px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}
.hero-section .hero-slider .owl-dots .owl-dot.active span {
  background: #fff;
  height: 60px;
}

.about-section {
  background-color: rgba(243, 240, 240, 0.8196078431); /* Pure White */
  overflow: hidden;
  position: relative;
}
.about-section .about-image-wrapper {
  position: relative;
  padding-right: 50px;
  padding-bottom: 50px;
}
.about-section .about-image-wrapper .main-img {
  border: 1px solid #eee;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}
.about-section .about-image-wrapper .main-img:hover {
  filter: grayscale(0%);
}
.about-section .about-image-wrapper .main-img {
  /* Optional: subtle pop on hover */
}
.about-section .about-image-wrapper .secondary-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  border: 10px solid var(--theme-color2);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.about-section .about-image-wrapper .experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--theme-color);
  color: var(--theme-color2);
  padding: 30px;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-section .about-image-wrapper .experience-badge .number {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.about-section .about-image-wrapper .experience-badge .text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}
.about-section .about-content .subtitle {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #ddd;
  font-size: 12px;
  margin-bottom: 15px;
}
.about-section .about-content .common-heading {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 25px;
}
.about-section .about-content .divider {
  width: 60px;
  height: 2px;
  background: var(--theme-color);
  margin-bottom: 30px;
}
.about-section .about-content .lead-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 20px;
  line-height: 1.6;
}
.about-section .about-content p {
  color: #555;
  margin-bottom: 30px;
}
.about-section .about-content .about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.about-section .about-content .about-features li {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.about-section .about-content .about-features li i {
  margin-right: 15px;
  font-size: 12px;
  width: 25px;
  height: 25px;
  border: 1px solid var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section .about-content .common-btn {
  display: inline-block;
  border: 1px solid var(--theme-color);
  transition: all 0.3s;
}
.about-section .about-content .common-btn:hover {
  background: transparent;
  color: var(--theme-color);
}

.services-editorial {
  background-color: #fff;
  color: #000;
}
.services-editorial .section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 20px;
  color: #ddd;
}
.services-editorial .massive-heading {
  font-size: clamp(40px, 8vw, 70px);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -2px;
}
.services-editorial .service-intro {
  font-size: 18px;
  color: #444;
  max-width: 400px;
  margin-left: auto;
}
.services-editorial {
  /* Featured Service 01 Styling */
}
.services-editorial .featured-service-row {
  margin-top: 80px;
  align-items: center;
}
.services-editorial .featured-service-row .service-image-box {
  position: relative;
  overflow: hidden;
  height: 550px;
}
.services-editorial .featured-service-row .service-image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.services-editorial .featured-service-row .service-image-box:hover img {
  transform: scale(1.1);
}
.services-editorial .featured-service-row .service-content-box {
  padding: 60px;
  background: #000;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-editorial .featured-service-row .service-content-box .num {
  font-size: 14px;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 20px;
}
.services-editorial .featured-service-row .service-content-box h3 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 25px;
}
.services-editorial .featured-service-row .service-content-box p {
  color: #aaa;
  margin-bottom: 30px;
  text-align: left;
}
.services-editorial .featured-service-row .service-content-box .sub-services {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.services-editorial .featured-service-row .service-content-box .sub-services li {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.services-editorial .featured-service-row .service-content-box .sub-services li span {
  color: #666;
  margin-right: 10px;
}
.services-editorial .featured-service-row .service-content-box .service-link {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  width: -moz-fit-content;
  width: fit-content;
}
.services-editorial {
  /* Split Services (Ceramic & Correction) */
}
.services-editorial .split-service {
  display: flex;
  gap: 30px;
  align-items: center;
}
.services-editorial .split-service .split-info {
  flex: 1;
}
.services-editorial .split-service .split-info .num {
  font-size: 12px;
  color: #ccc;
}
.services-editorial .split-service .split-info h4 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 800;
  margin: 15px 0;
}
.services-editorial .split-service .split-info p {
  color: #666;
  font-size: 14px;
}
.services-editorial .split-service .split-img {
  flex: 1;
  height: 300px;
  overflow: hidden;
}
.services-editorial .split-service .split-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.services-editorial {
  /* Specialty List Styling */
}
.services-editorial .list-cat {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 12px;
}
.services-editorial .specialty-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s;
}
.services-editorial .specialty-item span {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.services-editorial .specialty-item p {
  margin: 0;
  color: #ddd;
  font-size: 14px;
}
.services-editorial .specialty-item:hover {
  padding-left: 20px;
  background: #fafafa;
}
.services-editorial .btn-outline-dark {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #000;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #000;
  transition: 0.3s;
}
.services-editorial .btn-outline-dark:hover {
  background: #000;
  color: #fff;
}

.reviews-section {
  background-color: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.reviews-section .subtitle {
  display: block;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 15px;
  color: #666;
}
.reviews-section .common-heading {
  font-size: 45px;
  margin-bottom: 0;
}
.reviews-section .reviews-slider-wrap {
  position: relative;
  padding: 60px 0;
}
.reviews-section .reviews-slider-wrap .quote-bg-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 300px;
  color: rgba(255, 255, 255, 0.03);
  z-index: 0;
  pointer-events: none;
}
.reviews-section .reviews-slider {
  z-index: 1;
}
.reviews-section .reviews-slider .item {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}
.reviews-section .reviews-slider .review-card .rating-stars {
  margin-bottom: 30px;
}
.reviews-section .reviews-slider .review-card .rating-stars i {
  font-size: 12px;
  color: #fff;
  margin: 0 3px;
}
.reviews-section .reviews-slider .review-card .review-text {
  font-size: 26px;
  line-height: 1.6;
  font-style: italic;
  font-weight: 300;
  color: #ddd;
  margin-bottom: 40px;
  text-align: center; /* Override global justify for quotes */
}
.reviews-section .reviews-slider .review-card .reviewer-meta .name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 5px;
}
.reviews-section .reviews-slider .review-card .reviewer-meta .vehicle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
}
.reviews-section .reviews-slider {
  /* Owl Nav Custom */
}
.reviews-section .reviews-slider .owl-nav {
  margin: 0;
}
.reviews-section .reviews-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px !important;
  color: rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s;
}
.reviews-section .reviews-slider .owl-nav button:hover {
  color: #fff !important;
  background: transparent !important;
}
.reviews-section .reviews-slider .owl-nav button.owl-prev {
  left: -50px;
}
.reviews-section .reviews-slider .owl-nav button.owl-next {
  right: -50px;
}
.reviews-section .reviews-slider {
  /* Owl Dots Custom */
}
.reviews-section .reviews-slider .owl-dots {
  margin-top: 50px;
}
.reviews-section .reviews-slider .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 1px;
  border-radius: 0;
  margin: 5px;
  transition: all 0.3s;
}
.reviews-section .reviews-slider .owl-dots .owl-dot.active span {
  background: #fff;
  width: 50px;
}

/* Responsive Fix */
@media (max-width: 991px) {
  .reviews-section .reviews-slider .review-text {
    font-size: 20px;
  }
  .reviews-section .reviews-slider .owl-nav {
    display: none;
  }
}
.portfolio-section {
  background-color: #fff;
}
.portfolio-section .section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 20px;
  color: #ddd;
}
.portfolio-section .massive-heading {
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 40px;
}
.portfolio-section {
  /* Filters */
}
.portfolio-section .portfolio-filters {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.portfolio-section .portfolio-filters .filter-btn {
  background: none;
  border: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #999;
  transition: 0.3s;
  position: relative;
}
.portfolio-section .portfolio-filters .filter-btn::after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: 0.3s;
}
.portfolio-section .portfolio-filters .filter-btn:hover, .portfolio-section .portfolio-filters .filter-btn.active {
  color: #000;
}
.portfolio-section .portfolio-filters .filter-btn:hover::after, .portfolio-section .portfolio-filters .filter-btn.active::after {
  width: 100%;
}
.portfolio-section {
  /* Grid Items */
}
.portfolio-section .portfolio-grid .portfolio-item .portfolio-wrapper {
  position: relative;
  overflow: hidden;
  background: #000;
}
.portfolio-section .portfolio-grid .portfolio-item .portfolio-wrapper img {
  width: 100%;
  height: 358px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s;
}
.portfolio-section .portfolio-grid .portfolio-item .portfolio-wrapper .portfolio-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: 0.5s;
  z-index: 2;
}
.portfolio-section .portfolio-grid .portfolio-item .portfolio-wrapper .portfolio-info .info-inner {
  transform: translateY(20px);
  transition: 0.5s;
}
.portfolio-section .portfolio-grid .portfolio-item .portfolio-wrapper .portfolio-info .info-inner .category {
  display: block;
  color: #ddd;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.portfolio-section .portfolio-grid .portfolio-item .portfolio-wrapper .portfolio-info .info-inner h4 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 20px;
}
.portfolio-section .portfolio-grid .portfolio-item .portfolio-wrapper .portfolio-info .info-inner .view-project {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
}
.portfolio-section .portfolio-grid .portfolio-item .portfolio-wrapper .portfolio-info .info-inner .view-project:hover {
  border-color: #fff;
}
.portfolio-section .portfolio-grid .portfolio-item .portfolio-wrapper:hover img {
  transform: scale(1.1);
  opacity: 0.6;
}
.portfolio-section .portfolio-grid .portfolio-item .portfolio-wrapper:hover .portfolio-info {
  opacity: 1;
}
.portfolio-section .portfolio-grid .portfolio-item .portfolio-wrapper:hover .portfolio-info .info-inner {
  transform: translateY(0);
}
.portfolio-section .instagram-link {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #000;
  border: 1px solid #000;
  padding: 15px 30px;
  transition: 0.3s;
}
.portfolio-section .instagram-link:hover {
  background: #000;
  color: #fff;
}

/* Specific sizing for the wide item */
@media (min-width: 992px) {
  .portfolio-item.col-lg-8 .portfolio-wrapper {
    aspect-ratio: 21/9;
  }
}
.site-footer {
  background-color: #000;
  color: #fff;
  overflow: hidden;
  /* Form Styling */
}
.site-footer .onyx-form .form-group {
  position: relative;
}
.site-footer .onyx-form .form-group .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #fff;
  padding: 15px 0;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.site-footer .onyx-form .form-group .form-control:focus {
  box-shadow: none;
  border-color: #fff;
  outline: none;
}
.site-footer .onyx-form .form-group .form-control::-moz-placeholder {
  color: #cccccc;
}
.site-footer .onyx-form .form-group .form-control::placeholder {
  color: #cccccc;
}
.site-footer .onyx-form .form-group textarea.form-control {
  resize: none;
}
.site-footer .onyx-form .submit-btn {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  padding: 15px 45px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
  cursor: pointer;
}
.site-footer .onyx-form .submit-btn i {
  margin-left: 10px;
  transition: 0.3s;
}
.site-footer .onyx-form .submit-btn:hover {
  background: transparent;
  color: #fff;
}
.site-footer .onyx-form .submit-btn:hover i {
  transform: translateX(5px);
}
.site-footer {
  /* Info Block Styling */
}
.site-footer .footer-info h5 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 800;
}
.site-footer .footer-info p {
  color: #fff;
  font-size: 14px;
  text-align: left;
}
.site-footer .footer-info .info-link {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 5px;
  transition: 0.3s;
}
.site-footer .footer-info .info-link:hover {
  opacity: 0.6;
}
.site-footer .footer-info .footer-socials {
  display: flex;
  gap: 20px;
}
.site-footer .footer-info .footer-socials a {
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}
.site-footer .footer-info .footer-socials a:hover {
  color: #ddd;
}
.site-footer {
  /* Bottom Section */
}
.site-footer .footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.site-footer .footer-bottom .copyright {
  font-size: 10px;
  letter-spacing: 1px;
  color: #cfcfcf;
  margin-bottom: 0;
}
.site-footer .footer-bottom .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-bottom .footer-links li {
  display: inline-block;
  margin-left: 20px;
}
.site-footer .footer-bottom .footer-links li a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #cfcfcf;
  transition: 0.3s;
}
.site-footer .footer-bottom .footer-links li a:hover {
  color: #fff;
}

/* ── Page Hero ── */
.page-hero {
  background-color: #000;
  background-image: url("img/bread-bg.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(110%);
  position: relative;
  padding: 220px 0 110px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.page-hero .hero-inner {
  position: relative;
  z-index: 2;
  filter: none;
}
.page-hero .page-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 12px;
  color: #ddd;
  margin-bottom: 20px;
  font-weight: 400;
}
.page-hero h1 {
  font-size: clamp(30px, 6vw, 69px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.88;
  color: #fff;
  letter-spacing: -3px;
  margin-bottom: 40px;
}
.page-hero .deco-line {
  position: absolute;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 220px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08), transparent);
  z-index: 2;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 15px;
}
.page-breadcrumb a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ddd;
  transition: color 0.3s;
}
.page-breadcrumb a:hover {
  color: #fff;
}
.page-breadcrumb .sep {
  width: 30px;
  height: 1px;
  background: #333;
  display: block;
}
.page-breadcrumb span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

/* ── Story Section ── */
.story-section {
  background-color: #fff;
}
.story-section p {
  color: #555;
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 22px;
}
.story-section .about-pg-image {
  margin-top: 2.5rem;
}
.story-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 11px;
  color: #514f4f;
  margin-bottom: 16px;
  font-weight: 600;
}

.story-heading {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  color: #000;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.story-divider {
  width: 60px;
  height: 2px;
  background: #000;
  margin-bottom: 35px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 50px;
}
.stats-grid .stat-box {
  padding: 25px 30px;
  text-align: center;
}
.stats-grid .stat-box:nth-child(1) {
  background: #000;
}
.stats-grid .stat-box:nth-child(2) {
  background: #111;
}
.stats-grid .stat-box:nth-child(3) {
  background: #111;
}
.stats-grid .stat-box:nth-child(4) {
  background: #1a1a1a;
}
.stats-grid .stat-box .stat-num {
  display: block;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}
.stats-grid .stat-box .stat-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f9f9f9;
  line-height: 1.8;
}

/* Values List */
.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #eee;
}
.values-list li:first-child {
  border-top: 1px solid #eee;
}
.values-list li .val-icon {
  width: 42px;
  height: 42px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: #000;
}
.values-list li .val-content h6 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 5px;
}
.values-list li .val-content p {
  font-size: 13px;
  color: #555;
  margin-bottom: 0;
}

/* ── Process Section ── */
.process-section {
  padding: 100px 0;
  color: #fff;
  background-image: linear-gradient(21deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8784313725), #000000, #080808), url(img/carbg4.jpg);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: cover;
}
.process-section .section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 11px;
  color: #d9d9d9;
  margin-bottom: 16px;
}
.process-section .process-heading {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 0;
}
.process-section .process-divider {
  width: 60px;
  height: 1px;
  background: #333;
  margin: 40px 0;
}
.process-section .process-intro {
  color: #ddd;
  font-size: 14px;
  line-height: 26px;
  text-align: left;
}
.process-section .process-steps {
  margin-top: 0;
}
.process-section .process-steps .process-step {
  display: flex;
  gap: 30px;
  padding: 32px 0;
  border-bottom: 1px solid #111;
  align-items: flex-start;
  transition: all 0.3s;
}
.process-section .process-steps .process-step:first-child {
  border-top: 1px solid #111;
}
.process-section .process-steps .process-step:hover {
  padding-left: 8px;
  border-color: #2a2a2a;
}
.process-section .process-steps .process-step:hover .step-icon {
  border-color: #fff;
  background: #fff;
  color: #000;
}
.process-section .process-steps .process-step .step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #6d6d6d;
  flex-shrink: 0;
  width: 35px;
  padding-top: 16px;
}
.process-section .process-steps .process-step .step-icon {
  width: 50px;
  height: 50px;
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 17px;
  transition: all 0.3s;
}
.process-section .process-steps .process-step .step-content h4 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 10px;
}
.process-section .process-steps .process-step .step-content p {
  color: #ddd;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  text-align: left;
}

/* Buttons */
.btn-white-outline {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 35px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
}
.btn-white-outline:hover {
  background: #fff;
  color: #000;
}

/* ── CTA Strip ── */
.cta-strip {
  background: #fff;
  padding: 90px 0;
  border-top: 1px solid #eee;
}
.cta-strip h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #000;
  line-height: 1.1;
}
.cta-strip p {
  color: #555;
  font-size: 15px;
  text-align: left;
  margin-top: 16px;
}
.cta-strip .btn-cta {
  display: inline-block;
  padding: 17px 42px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
}
.cta-strip .btn-cta.btn-cta-fill {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}
.cta-strip .btn-cta.btn-cta-fill:hover {
  background: transparent;
  color: #000;
}
.cta-strip .btn-cta.btn-cta-outline {
  background: transparent;
  color: #000;
  border: 1px solid #ccc;
  margin-left: 12px;
}
.cta-strip .btn-cta.btn-cta-outline:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}

.filter-tabs {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
}
.filter-tabs li a {
  display: block;
  padding: 20px 22px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaa;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  white-space: nowrap;
}
.filter-tabs li a:hover, .filter-tabs li a.active {
  color: #000;
  border-bottom-color: #000;
}

/* ── Services Grid ── */
.services-listing {
  background: #fff;
  overflow: hidden;
}

/* Featured Row */
.featured-service {
  position: relative;
  overflow: hidden;
  height: 520px;
  background: #000;
  display: block;
  text-decoration: none;
}
.featured-service img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s;
  opacity: 0.7;
}
.featured-service:hover img {
  transform: scale(1.07);
  opacity: 0.5;
}
.featured-service:hover .btn-feat-view {
  border-color: #fff;
  gap: 18px;
}
.featured-service:hover .btn-feat-view i {
  transform: translateX(4px);
}
.featured-service .feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px;
}
.featured-service .feat-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #ddd;
  margin-bottom: 14px;
}
.featured-service .feat-tag {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ddd;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  margin-bottom: 18px;
  width: -moz-fit-content;
  width: fit-content;
}
.featured-service h3 {
  font-size: clamp(28px, 4vw, 33px);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
}
.featured-service p {
  color: #ddd;
  font-size: 14px;
  line-height: 24px;
  max-width: 480px;
  margin-bottom: 28px;
  text-align: left;
}

.btn-feat-view {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 6px;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-feat-view i {
  transition: transform 0.3s;
  font-size: 10px;
}

/* Side Card */
.side-service {
  position: relative;
  overflow: hidden;
  background: #000;
  display: block;
  text-decoration: none;
  height: 100%;
}
.side-service img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s;
  opacity: 0.65;
}
.side-service:hover img {
  transform: scale(1.07);
  opacity: 0.45;
}
.side-service:hover .btn-side-view {
  border-color: #fff;
  gap: 15px;
}
.side-service .side-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
}
.side-service .side-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #444;
  margin-bottom: 10px;
}
.side-service h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.side-service p {
  color: #666;
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 20px;
  text-align: left;
}

.btn-side-view {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 5px;
  transition: all 0.3s;
  text-decoration: none;
}

/* Standard Service Card */
.service-card {
  background: #fff;
  border: 1px solid #eee;
  display: block;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.4s;
  height: 100%;
}
.service-card:hover {
  border-color: #000;
  transform: translateY(-4px);
}
.service-card:hover .card-image img {
  transform: scale(1.08);
  opacity: 0.85;
}
.service-card:hover .card-tag {
  transform: scaleX(1);
}
.service-card:hover .btn-view-service {
  border-color: #000;
  gap: 15px;
}
.service-card:hover .btn-view-service i {
  transform: translateX(4px);
}
.service-card .card-image {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: #000;
}
.service-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s;
}
.service-card .card-num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #ddd;
  z-index: 2;
}
.service-card .card-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card .card-body-custom {
  padding: 30px 28px 28px;
}
.service-card .card-category {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #aaa;
  margin-bottom: 10px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 13px;
  color: #555;
  line-height: 22px;
  margin-bottom: 24px;
}

.btn-view-service {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-view-service i {
  font-size: 9px;
  transition: transform 0.3s;
}

/* Divider */
.section-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 60px 0;
}

/* Category Heading */
.grid-cat-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 11px;
  color: #aaa;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

/* ── Bottom CTA ── */
.services-cta {
  background: #1c1c1c;
  position: relative;
  overflow: hidden;
}
.services-cta::before {
  content: "ONYX";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(120px, 20vw, 240px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -10px;
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.services-cta .cta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 11px;
  color: #ddd;
  margin-bottom: 16px;
}
.services-cta h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.services-cta p {
  color: #ddd;
  font-size: 14px;
  line-height: 26px;
  text-align: left;
  max-width: 420px;
}

.btn-cta-white {
  display: inline-block;
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  padding: 17px 42px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-cta-white:hover {
  background: transparent;
  color: #fff;
}

.btn-cta-outline-w {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1px solid #333;
  padding: 17px 42px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
  margin-left: 12px;
  text-decoration: none;
}
.btn-cta-outline-w:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}

/* Contact Split Section */
.contact-split {
  display: flex;
  min-height: 90vh;
}
.contact-split .split-form {
  background: #000000;
  padding: 90px 70px;
  flex: 0 0 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-split .split-info {
  background: #fff;
  padding: 90px 60px;
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid #eee;
}

/* Info Blocks */
.contact-info-block {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.contact-info-block:first-child {
  border-top: 1px solid #eee;
}
.contact-info-block .info-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #aaa;
  margin-bottom: 12px;
  font-weight: 700;
}
.contact-info-block .info-value {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}
.contact-info-block .info-value a {
  color: #000;
  display: block;
  font-size: 20px;
  transition: opacity 0.3s;
}
.contact-info-block .info-value a:hover {
  opacity: 0.4;
}

/* Hours Table */
.hours-table {
  width: 100%;
}
.hours-table tr td {
  font-size: 13px;
  padding: 4px 0;
  color: #555;
}
.hours-table tr td:last-child {
  text-align: right;
  font-weight: 700;
  color: #000;
}

/* Contact Socials */
.contact-socials {
  display: flex;
  gap: 0;
  margin-top: 40px;
}
.contact-socials a {
  width: 46px;
  height: 46px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 15px;
  transition: all 0.3s;
  margin-right: -1px;
}
.contact-socials a:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  z-index: 1;
}

/* Map Strip */
.map-strip {
  height: 420px;
  background: #111;
  position: relative;
  overflow: hidden;
}
.map-strip iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-strip .map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 4px solid #000;
}

/* Quick Info Strip */
.quick-info-strip {
  background: #ffffff;
  border-top: 1px solid #111;
}

.quick-info-item {
  padding: 45px 40px;
  border-right: 1px solid #111;
  text-align: center;
}
.quick-info-item:last-child {
  border-right: none;
}
.quick-info-item .qi-icon {
  width: 48px;
  height: 48px;
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 17px;
  color: #000;
  transition: all 0.3s;
}
.quick-info-item:hover .qi-icon {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.quick-info-item .qi-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #181818;
  margin-bottom: 8px;
}
.quick-info-item .qi-value {
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

/* Form Styling */
.onyx-form-contact .form-group {
  position: relative;
}
.onyx-form-contact .form-group .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #fff;
  padding: 15px 0;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.onyx-form-contact .form-group .form-control:focus {
  box-shadow: none;
  border-color: #fff;
  outline: none;
}
.onyx-form-contact .form-group .form-control::-moz-placeholder {
  color: #cccccc;
}
.onyx-form-contact .form-group .form-control::placeholder {
  color: #cccccc;
}
.onyx-form-contact .form-group textarea.form-control {
  resize: none;
}
.onyx-form-contact .form-group select option {
  background-color: #000;
  color: #fff;
}
.onyx-form-contact .submit-btn {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  padding: 15px 45px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
  cursor: pointer;
}
.onyx-form-contact .submit-btn i {
  margin-left: 10px;
  transition: 0.3s;
}
.onyx-form-contact .submit-btn:hover {
  background: transparent;
  color: #fff;
}
.onyx-form-contact .submit-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-split {
    flex-direction: column;
    overflow: hidden;
  }
  .contact-split .split-form,
  .contact-split .split-info {
    flex: 0 0 100%;
    padding: 60px 30px;
  }
  .quick-info-item {
    border-right: none;
    border-bottom: 1px solid #111;
    padding: 35px 20px;
  }
  .quick-info-item:last-child {
    border-bottom: none;
  }
}
/* Service Detail */
.service-detail-section {
  background: #fff;
}
.service-detail-section .service-num {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #ccc;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.service-detail-section .service-cat {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #888;
  margin-bottom: 16px;
}
.service-detail-section h2 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.05;
  color: #000;
  margin-bottom: 0;
}
.service-detail-section .detail-divider {
  width: 50px;
  height: 2px;
  background: #000;
  margin: 28px 0 32px;
}
.service-detail-section p {
  color: #555;
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 20px;
}

/* Feature Highlights */
.detail-features {
  list-style: none;
  padding: 0;
  margin: 36px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.detail-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
}
.detail-features li:nth-child(odd) {
  padding-right: 20px;
}
.detail-features li i {
  width: 24px;
  height: 24px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* Image Block */
.detail-image-block {
  position: relative;
}
.detail-image-block .main-detail-img {
  position: relative;
  overflow: hidden;
  height: 580px;
}
.detail-image-block .main-detail-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.detail-image-block .main-detail-img:hover img {
  transform: scale(1.05);
}
.detail-image-block .secondary-detail-img {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 160px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.detail-image-block .secondary-detail-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detail-image-block .img-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: #000;
  color: #fff;
  padding: 20px 24px;
  text-align: center;
  z-index: 2;
}
.detail-image-block .img-badge strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.detail-image-block .img-badge span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ddd;
  margin-top: 4px;
  display: block;
}

/* Booking CTA */
.detail-cta {
  background: #000;
  padding: 70px 0;
}
.detail-cta h3 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
}
.detail-cta p {
  color: #ddd;
  font-size: 14px;
  text-align: left;
  margin-top: 10px;
}

/* Related Services */
.related-services {
  background: #fff;
  padding: 70px 0 80px;
  border-top: 1px solid #eee;
}
.related-services .related-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #aaa;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.related-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #000;
  transition: padding-left 0.3s;
}
.related-item:first-of-type {
  border-top: 1px solid #eee;
}
.related-item:hover {
  padding-left: 12px;
  color: #000;
}
.related-item:hover .rel-arrow {
  color: #000;
  transform: translateX(5px);
}
.related-item .rel-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.related-item .rel-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ccc;
  width: 30px;
}
.related-item .rel-name {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}
.related-item .rel-arrow {
  font-size: 11px;
  color: #ccc;
  transition: all 0.3s;
}

.review-section {
  background: #fff;
}
.review-section .testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  position: relative;
  height: 100%;
  transition: all 0.35s ease;
  overflow: hidden;
}
.review-section .testimonial-card::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 100px;
  font-weight: 800;
  color: #f0f0f0;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
  transition: color 0.35s;
}
.review-section .testimonial-card:hover {
  border-color: #000;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}
.review-section .testimonial-card:hover::before {
  color: #e8e8e8;
}
.review-section .testimonial-card .card-body {
  padding: 40px 32px 32px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.review-section .testimonial-card .card-body .quote {
  font-size: 14px;
  line-height: 26px;
  color: #555;
  font-style: italic;
  margin-bottom: 28px;
  text-align: left;
  flex: 1;
}
.review-section .testimonial-card .card-body .card-footer-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid #eee;
}
.review-section .testimonial-card .card-body .card-footer-box .client-info h5 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #000;
  margin-bottom: 0;
}
.review-section .testimonial-card .card-body .card-footer-box .client-info h6 {
  font-size: 13px;
  color: #555;
  margin-top: 5px;
}
.review-section .testimonial-card .card-body .card-footer-box .stars {
  display: flex;
  gap: 3px;
}
.review-section .testimonial-card .card-body .card-footer-box .stars i {
  font-size: 9px;
  color: #000;
}

@media (max-width: 991px) {
  .review-section .testimonial-card:hover {
    transform: none;
    box-shadow: none;
  }
}
@media (max-width: 576px) {
  .review-section .testimonial-card .card-body {
    padding: 36px 24px 26px;
  }
}
/* Responsive */
@media (max-width: 1024px) {
  .page-hero {
    padding: 170px 0 62px;
  }
  .page-hero h1 {
    font-size: 45px;
    line-height: unset;
    letter-spacing: unset;
    margin-bottom: 40px;
  }
  .page-breadcrumb {
    gap: 15px;
    color: #fff;
  }
}
@media (max-width: 991px) {
  .detail-image-block {
    margin-bottom: 60px;
  }
  .detail-image-block .secondary-detail-img {
    display: none;
  }
  .detail-image-block .img-badge {
    left: 20px;
  }
  .detail-features {
    grid-template-columns: 1fr;
  }
  #mainNav {
    background-color: #000;
  }
  .site-header .navbar .navbar-nav .nav-item .nav-link:hover::after,
  .site-header .navbar .navbar-nav .nav-item .nav-link.active::after {
    display: none;
  }
  .hero-section .hero-slider .owl-dots {
    left: unset;
    right: 50px;
  }
  .site-header.sticky #mainNav {
    background-color: transparent;
  }
  .story-section .story-label {
    margin-top: 15px;
  }
  .site-header .navbar .navbar-nav .nav-item .nav-link::after {
    margin-left: 9px;
    position: unset;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-slider .hero-content .hero-btns .btn-main {
    padding: 13px 23px;
  }
  .about-section .about-content .common-heading {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 25px;
  }
  .common-heading {
    font-size: 30px;
    line-height: 1.2;
  }
  .about-section {
    background-color: rgba(243, 240, 240, 0.8196078431);
  }
  .services-editorial .massive-heading {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: unset;
    text-transform: uppercase;
  }
  .services-editorial .massive-heading br {
    display: none;
  }
  .services-editorial .row.mb-5 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .services-editorial .featured-service-row .service-image-box {
    height: auto;
  }
  .services-editorial .featured-service-row .service-content-box {
    padding: 20px;
  }
  .services-editorial .featured-service-row .service-content-box h3 {
    font-size: 30px;
  }
  .services-editorial .featured-service-row .service-content-box .service-link {
    margin-top: 22px;
  }
  .services-editorial .split-service {
    flex-direction: column;
  }
  .services-editorial .mt-5 {
    margin-top: 0 !important;
  }
  .reviews-section .reviews-slider-wrap {
    padding: 0 0;
  }
  .reviews-section .reviews-slider .review-card .review-text {
    font-size: 20px;
  }
  .portfolio-section .massive-heading {
    font-size: 30px;
    letter-spacing: unset;
  }
  .portfolio-section .massive-heading br {
    display: none;
  }
  .footer-top.common-space {
    padding: 50px 0 30px;
  }
  .footer-bottom * {
    text-align: center;
  }
  .page-hero {
    padding: 170px 0 40px;
  }
  .page-hero h1 {
    font-size: 33px;
    letter-spacing: unset;
  }
  .story-heading,
  .process-section .process-heading {
    letter-spacing: unset;
    font-size: 30px;
  }
  .story-heading br,
  .process-section .process-heading br {
    display: none;
  }
  .process-section .process-heading {
    gap: 10px;
  }
  .page-hero {
    padding: 160px 0 33px;
  }
  .stats-grid .stat-box .stat-num {
    font-size: 35px;
  }
  .detail-image-block .main-detail-img {
    height: unset;
  }
  .review-section .testimonial-card {
    margin-bottom: 10px;
  }
}
@media (max-width: 425px) {
  .hero-section .hero-slider .hero-content .hero-btns .btn-main {
    padding: 13px 14px;
  }
  .hero-section .hero-slider .hero-content .hero-btns .btn-ghost {
    padding: 13px 13px;
  }
  .cta-strip .btn-cta {
    padding: 13px 22px;
  }
}/*# sourceMappingURL=style.css.map */