/**
=======================================================
  * Website Developer: Exclusive Tech
  * Last Updated: 07 April 2026 | version: 2.3.7
  * Exclusive Tech URL: https://exclusivetech.org/
  * Note: Copying any part of this source code is prohibited and may lead to legal actions from the owner of the Website
  * Owner: This website is developed for Nakedi K Creations
  * Owner URL: https://nakedikcreations.co.za/
  ========================================================
*/

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
/* Blackjack - Regular (Only one weight available) */
@font-face {
  font-family: 'Blackjack';
  src: url('../fonts/blackjack/blackjack.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Poppins - Full Family */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Thin.otf') format('opentype');
  font-weight: 100;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-ExtraLight.otf') format('opentype');
  font-weight: 200;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Light.otf') format('opentype');
  font-weight: 300;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Regular.otf') format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Medium.otf') format('opentype');
  font-weight: 500;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-SemiBold.otf') format('opentype');
  font-weight: 600;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Bold.otf') format('opentype');
  font-weight: 700;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-ExtraBold.otf') format('opentype');
  font-weight: 800;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins/Poppins-Black.otf') format('opentype');
  font-weight: 900;
}

/* Comic Neue - Full Family (using TTF) */
@font-face {
  font-family: 'ComicNeue';
  src: url('../fonts/comicneue/ComicNeue-Light.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'ComicNeue';
  src: url('../fonts/comicneue/ComicNeue-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'ComicNeue';
  src: url('../fonts/comicneue/ComicNeue-Bold.ttf') format('truetype');
  font-weight: 700;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  background: #111111;
  color: #f0f0f0;
}

a {
  text-decoration: none;
  color: #ba622c;
}

a:hover {
  color: #b14500;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Blackjack", sans-serif;
}

.form-control {
    color: #c6c6c6;
    background-color: #333333;
    border-color: #1d1d1f;
}

/*--------------------------------------------------------------
# WhatsApp button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ba622c;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 20px;
  color: #f0f0f0;
  line-height: 0;
  margin-left: 2px;
}
.back-to-top:hover {
  background: #25D366;
  color: #f0f0f0;
}
.back-to-top:hover i {
  color: #f0f0f0;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  top: 0;
  height: 70px;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: rgba(8, 8, 8, 0.85);
}
#header.header-transparent {
  background: rgba(8, 8, 8, 0.85);
}
#header.header-scrolled {
  top: 0;
  background: rgba(8, 8, 8, 0.95);
}
#header .logo h2 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}
#header .logo h2 a,
#header .logo h2 a:hover {
  color: #ba622c;
  text-decoration: none;
  font-weight: 600;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/* Logo: show full name by default, hide short version */
.logo-short { display: none; }
.logo-full  { display: inline; }

/* Mobile: swap to short name */
@media (max-width: 991px) {
  .logo-short { display: inline; }
  .logo-full  { display: none; }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #f0f0f0;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ba622c;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #f0f0f0;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #444444;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ba622c;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #f0f0f0;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #f0f0f0;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1a1814;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ba622c;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #f0f0f0;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ba622c;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0;
}

#hero .hero-container,
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item {
  height: 100vh;
  width: 100%;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(12, 11, 10, 0.55);
  position: absolute;
  inset: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  padding-top: 70px;
}

#hero .carousel-content {
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
  width: 100%;
}

#hero h2 {
  color: #f0f0f0;
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

#hero h2 span {
  color: #ba622c;
}

#hero p {
  margin: 0 auto 28px auto;
  color: #f0f0f0;
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
}

/* Unified fade: image and content together */
#hero .carousel-item {
  transition-property: opacity;
  opacity: 0;
}

#hero .carousel-item.active {
  opacity: 1;
  transition: opacity 0.9s ease-in-out;
}

#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: opacity 0.9s ease-in-out;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

/* Arrows */
#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 44px;
}

#hero .carousel-control-prev-icon,
#hero .carousel-control-next-icon {
  background: none;
  font-size: 32px;
  line-height: 0;
  width: auto;
  height: auto;
  color: #f0f0f0;
  transition: color 0.3s;
}

#hero .carousel-control-prev:hover .carousel-control-prev-icon,
#hero .carousel-control-next:hover .carousel-control-next-icon {
  color: #ba622c;
}

/* Hide arrows on mobile */
@media (max-width: 991px) {
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    display: none;
  }
}

/* Indicators */
#hero .carousel-indicators {
  margin-bottom: 16px;
}

#hero .carousel-indicators li {
  cursor: pointer;
  list-style-type: none;
}

/* Buttons */
.hero-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

#hero .btn-chat,
#hero .btn-request {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #f0f0f0;
  border: 2px solid #ba622c;
  text-decoration: none;
}

#hero .btn-request {
  background: #ba622c;
}

#hero .btn-chat:hover,
#hero .btn-request:hover {
  background: #b14500;
  border-color: #b14500;
  color: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
    margin-bottom: 14px;
  }

  #hero p {
    font-size: 14px;
    margin-bottom: 22px;
  }

  #hero .btn-chat,
  #hero .btn-request {
    padding: 9px 20px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  #hero h2 {
    font-size: 26px;
  }

  #hero .carousel-content {
    padding: 0 16px;
  }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #1a1814;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  color: #d4d4d4;
}

.section-title h2 span {
  color: #ba622c;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #171717;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  font-family: Poppins;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #37332a;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: rgba(0, 0, 0, 0.8);
  padding: 60px 0;
}

.about .content {
  padding: 0 80px;
}

.about .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #d4d4d4;
}

.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about .content p {
  font-size: 15px;
  color: #848484;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li+li {
  margin-top: 15px;
}

.about .content ul li {
  position: relative;
  padding-left: 26px;
}

.about .content ul i {
  font-size: 20px;
  color: #ba622c;
  position: absolute;
  left: 0;
  top: 2px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/* Image wrapper */
.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .about .content {
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .about .content {
    padding-top: 30px;
  }

  .about-image-wrapper {
    max-width: 100%;
    margin: 0;
  }
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.our-service-offering {
  background: #070707 !important;
}

.our-service-offering .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  height: 100%;
  background: #111111;
}

.our-service-offering .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ba622c;
}

.our-service-offering .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #ba622c;
}

.our-service-offering .box p {
  color: #d4d4d4;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.our-service-offering .box:hover {
  background: #171717;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.our-service-offering .box:hover p {
  color: #f0f0f0;
}

.our-service-offering .box:hover span,
.our-service-offering .box:hover h4 {
  color: #ba622c;
}

.our-service-offering .box:hover p {
  color: #f5f5f7;
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../img/events/nakedi-k-creations-events-bg-b.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.events::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.events .section-title h2 {
  color: #f0f0f0;
}

.events .container {
  position: relative;
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: #f0f0f0;
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #ba622c;
}

.events .event-item .price {
  font-size: 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid #ba622c;
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ba622c;
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ba622c;
}

/*--------------------------------------------------------------
# Request Quote button Menu
--------------------------------------------------------------*/
.request-quote-btn {
  background: #ba622c;
  color: #f0f0f0;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
}
.request-quote-btn:hover {
  background: #b14500;
  color: #f0f0f0;
}
@media (max-width: 992px) {
  .request-quote-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
    letter-spacing: 1px;
  }
}

/*--------------------------------------------------------------
# Request Quote Section
--------------------------------------------------------------*/
.request-quote {
  background: #181818;
}

/*--------------------------------------------------------------
# Request Quote Form
--------------------------------------------------------------*/
.request-quote .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #1d1d1f;
  border-radius: 20px;
}
.request-quote .php-email-form .form-group {
  padding-bottom: 8px;
}
.request-quote .php-email-form .validate {
  display: none;
  color: rgb(155, 1, 1);
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

/* Loading */
.request-quote .php-email-form .loading {
  display: none;
  background: #2a2a2a;
  color: #f0f0f0;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
}
.request-quote .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #ba622c;
  border-top-color: #f0f0f0;
  animation: animate-loading 1s linear infinite;
}
@keyframes animate-loading {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error message */
.request-quote .php-email-form .error-message {
  display: none;
  color: #f0f0f0;
  background: #c0392b;
  text-align: left;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
}

/* Success message */
.request-quote .php-email-form .sent-message {
  display: none;
  color: #f0f0f0;
  background: #ba622c;
  text-align: center;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
}

/* All inputs, textarea, select — shared base */
.request-quote .php-email-form input,
.request-quote .php-email-form textarea,
.request-quote .php-email-form select,
.request-quote .php-email-form input[type="date"],
.request-quote .php-email-form input[type="email"],
.request-quote .php-email-form input[type="tel"] {
  box-shadow: none !important;
  font-size: 14px !important;
  background: #333333 !important;
  background-color: #333333 !important;
  border-color: #1d1d1f !important;
  border-radius: 20px !important;
  color: #c6c6c6 !important;
  -webkit-text-fill-color: #c6c6c6 !important;
}

/* Focus — subtle dark border only, no color outline */
.request-quote .php-email-form input:focus,
.request-quote .php-email-form textarea:focus,
.request-quote .php-email-form select:focus,
.request-quote .php-email-form input[type="date"]:focus,
.request-quote .php-email-form input[type="email"]:focus,
.request-quote .php-email-form input[type="tel"]:focus {
  background: #333333 !important;
  background-color: #333333 !important;
  color: #c6c6c6 !important;
  -webkit-text-fill-color: #c6c6c6 !important;
  border-color: #555555 !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Autofill override */
.request-quote .php-email-form input:-webkit-autofill,
.request-quote .php-email-form input:-webkit-autofill:hover,
.request-quote .php-email-form input:-webkit-autofill:focus,
.request-quote .php-email-form textarea:-webkit-autofill,
.request-quote .php-email-form select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #333333 inset !important;
  -webkit-text-fill-color: #c6c6c6 !important;
  caret-color: #c6c6c6 !important;
}

/* Placeholder text */
.request-quote .php-email-form input::-webkit-input-placeholder,
.request-quote .php-email-form textarea::-webkit-input-placeholder { color: #c6c6c6 !important; opacity: 1 !important; }
.request-quote .php-email-form input::-moz-placeholder,
.request-quote .php-email-form textarea::-moz-placeholder           { color: #c6c6c6 !important; opacity: 1 !important; }
.request-quote .php-email-form input:-ms-input-placeholder,
.request-quote .php-email-form textarea:-ms-input-placeholder       { color: #c6c6c6 !important; opacity: 1 !important; }
.request-quote .php-email-form input::placeholder,
.request-quote .php-email-form textarea::placeholder                { color: #c6c6c6 !important; opacity: 1 !important; }

/* Select dropdown options */
.request-quote .php-email-form select option {
  background-color: #333333 !important;
  color: #f0f0f0 !important;
}
.request-quote .php-email-form select option:disabled {
  color: #888888 !important;
}

/* Date wrapper — positions the label overlay inside the input */
.date-wrapper {
  position: relative;
}
.date-placeholder {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #c6c6c6;
  font-size: 14px;
  font-weight: 400;
  pointer-events: none;
  z-index: 2;
  margin: 0;
  line-height: 1;
}
@media (min-width: 768px) {
  .date-placeholder {
    display: none !important;
  }
}

/* File input */
.request-quote .php-email-form input[type="file"] {
  box-shadow: none !important;
  font-size: 14px !important;
  background: #333333 !important;
  background-color: #333333 !important;
  border-color: #1d1d1f !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  padding: 0 !important;
  color: #c6c6c6 !important;
  -webkit-text-fill-color: #c6c6c6 !important;
  height: 44px !important;
  line-height: 44px !important;
}
.request-quote .php-email-form input[type="file"]::file-selector-button {
  height: 44px;
  padding: 0 20px;
  margin: 0;
  margin-right: 12px;
  background: #555555;
  color: #f0f0f0;
  border: none;
  border-right: 1px solid #444444;
  border-radius: 20px 0 0 20px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
  line-height: 44px;
}
.request-quote .php-email-form input[type="file"]:hover::file-selector-button {
  background: #ba622c !important;
  color: #ffffff !important;
}

/* Select sizing */
.request-quote .php-email-form select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23f0f0f0" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>') !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 14px !important;
  padding-right: 30px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  cursor: pointer !important;
}

/* Input height */
.request-quote .php-email-form input:not([type="file"]) {
  height: 44px !important;
}

/* Textarea */
.request-quote .php-email-form textarea {
  padding: 10px 12px !important;
}

/* Submit button */
.request-quote .php-email-form button[type=submit] {
  background: #ba622c;
  border: 0;
  padding: 10px 60px;
  color: #f0f0f0;
  transition: 0.4s;
  border-radius: 50px;
}
.request-quote .php-email-form button[type=submit]:hover {
  background: #b14500;
}
.request-quote .php-email-form button[type=submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  padding-bottom: 0;
}

.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #111111;
  border-bottom: 3px solid #111111;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs {
  background: url("../img/seasoned-palate-sa-team-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.chefs::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #111111;
  z-index: 9;
}

.chefs .container {
  position: relative;
  z-index: 10;
}

.chefs .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  background: #343a40;
}

.chefs .member .pic {
  overflow: hidden;
}

.chefs .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 20px;
  right: 20px;
  background: #f0f0f0;
  padding: 20px 0;
  color: #444444;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.chefs .member h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
  color: #6c665c;
  position: relative;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.chefs .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #ffcf88;
  bottom: 0;
  left: calc(50% - 25px);
}

.chefs .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.chefs .member .social {
  margin-top: 15px;
}

.chefs .member .social a {
  transition: color 0.3s;
  color: #444444;
}

.chefs .member .social a:hover {
  color: #ba622c;
}

.chefs .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .chefs .member {
    margin-bottom: 110px;
  }
}

@media (min-width: 1024px) {
  .chefs {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Testimonials Heading
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials/nakedi-k-creations-testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  margin-top: -55px !important;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(12, 11, 10, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #f0f0f0;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #f0f0f0;
  font-family: "Poppins", sans-serif;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 15px 0;
  font-family: "Comic Neue", sans-serif;
}

.testimonials .testimonial-item .stars {
  color: #ba622c;
  margin-bottom: 10px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #f0f0f0;
  background: transparent;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ba622c;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
}
.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}
.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer .address p {
  margin-bottom: 0px;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}
.footer .credits a {
  font-weight: bold;
  font-size: 14px;
}
.footer-contact-link {
  color: var(--default-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.3s;
  font-size: 15px !important;
}
.footer-contact-link:hover {
  color: var(--accent-color);
}
.footer-contact-icon {
  color: var(--accent-color);
  font-size: 13px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Inner Page
--------------------------------------------------------------*/
.inner-page {
  background: #222222;
  color: #f0f0f0;
  font-family: "Poppins", sans-serif;
}

