/* HEADER */
.header-container-custom {
  margin-left: 10px;
}

#mainNav > li > a {
  margin-top: 30px;
  position: relative; /* needed for underline effect */
  transition: color 0.2s ease;
  color: #000 !important;
  background: none !important;
}

#mainNav > li > a:hover,
#mainNav > li.active > a {
  color: #e60000 !important; /* Toyota red */
  background: none !important;
}

/* Underline slide effect */
#mainNav > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #e60000;
  transition: width 0.25s ease;
}

#mainNav > li > a:hover::after,
#mainNav > li.active > a::after {
  width: 100%;
}

.nav-logo img {
  width: 200px;
  height: 40px;
  margin-top: 30px;
  margin-right: 30px;
}

/* Smooth dropdown animation */
.header-nav-main .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  background: #fff !important;
  border: 1px solid #ddd;
}

.header-nav-main .dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-nav-main .dropdown-toggle {
  background: none !important;
  color: #000 !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.header-nav-main .dropdown-toggle::after {
  display: none !important;
}

.header-nav-main .dropdown-menu li a:hover {
  background-color: #f8f8f8;
  color: #e60000;
}

/*============================================================================*/
/* SOCIAL ICONS */
/*============================================================================*/
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  perspective: 800px;
  margin-top: 10px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(145deg, #666, #333);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 0 #222, 0 10px 15px rgba(0, 0, 0, 0.35);
  transform: translateZ(0);
  transition: all 0.25s ease;
}

.social-icons a:hover {
  transform: translateY(-6px) rotateX(15deg);
  box-shadow: 0 12px 0 #111, 0 18px 25px rgba(0, 0, 0, 0.45);
}

.social-icons a:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #111, 0 6px 10px rgba(0, 0, 0, 0.3);
}

.social-icons a i {
  transition: transform 0.2s ease;
}

.social-icons a:hover i {
  transform: scale(1.1);
}

/* Brand-specific colors */
.social-icons a:nth-child(1) {
  background: linear-gradient(145deg, #1877f2, #0f5cc0);
}

.social-icons a:nth-child(2) {
  background: linear-gradient(145deg, #f58529, #dd2a7b, #8134af);
}

/*============================================================================*/
/* PRIVACY LINK */
/*============================================================================*/
.privacy-link a {
  font-weight: bold;
  font-size: 15px;
  font-family: sans-serif;
  text-decoration: none;
  color: #000;
}

.privacy-link a:hover {
  text-decoration: underline;
}

/*============================================================================*/
/* Page Header*/
/*============================================================================*/
/* Page Header */
.page-header {
	background-color: #171717;
	border-bottom: 5px solid #CCC;
	border-top: 5px solid #384045;
	margin: 0 0 35px 0;
	min-height: 50px;
	padding: 20px 0;
	position: relative;
	text-align: left;
}

.page-header .breadcrumb {
	background: none;
	margin: 0 0 2px 2px;
	padding: 0;
	position: relative;
	z-index: 1;
}

.page-header .breadcrumb > li {
	display: inline-block;
	font-size: 0.85em;
	text-transform: uppercase;
	text-shadow: none;
}

.page-header .breadcrumb > li + li:before {
	color: inherit;
	opacity: 0.5;
	font-family: FontAwesome;
	content: "\f105";
	padding: 0 7px 0 5px;
}

.page-header .breadcrumb.breadcrumb-valign-mid {
	position: absolute;
	top: 36%;
	right: 20px;
}

/* Page Header Title */
.page-header h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #fff;
    
}

/* Page Header */
.page-header h1 span {
	color: #999da3;
	display: block;
	font-size: 0.6em;
	font-weight: 300;
	line-height: 1.3em;
	margin: 20px 0px;
}

.page-header-no-title-border h1 {
	border: 0;
}

/* Page Header - Color */
.page-header-color {
	background-color: #F7F7F7;
	border-bottom: 5px solid #F4F4F4;
	border-top: none;
}

.page-header-color h1 {
	border-bottom: none;
	color: #1d2127;
	font-size: 2.3em;
	padding: 0;
	margin: 0;
}

.page-header-color h1 span {
	opacity: 0.65;
}

.page-header-color .breadcrumb > .active {
	opacity: 0.65;
}

/* Page Header - More Padding */
.page-header-more-padding {
	padding: 35px 0;
}

/* Page Header - Light */
.page-header-light {
	background-color: #F7F7F7;
	border-bottom: 5px solid #F4F4F4;
	border-top: none;
}

.page-header-light h1 {
	border-bottom: none;
	color: #1d2127;
	font-size: 2.3em;
}

/* Page Header - Reverse */
.page-header-reverse {
	text-align: right;
}

.page-header-reverse .breadcrumb, .page-header-reverse .breadcrumb.breadcrumb-valign-mid {
	float: left;
	left: 20px;
	right: auto;
}

/* Page Header - Parallax */
.page-header.parallax {
	margin: 0 0 35px;
	padding: 180px 0 60px;
}

.page-header-center {
	text-align: center;
}

.page-header-center .breadcrumb {
	margin: 15px 0 0;
}

/* Page Header Custom Background */
.page-header-custom-background {
	padding: 45px 0;
	background-repeat: repeat;
	background-color: transparent;
	border-top: 0;
	border-bottom: 0;
}

.page-header-custom-background h1 {
	color: #FFF;
	border: 0;
}

.page-header-custom-background h1 span {
	color: #FFF;
	opacity: 0.7;
}

.page-header-custom-background .breadcrumb.breadcrumb-valign-mid {
	top: 36%;
}

.page-header-custom-background .breadcrumb.breadcrumb-valign-mid li.active {
	color: #FFF;
	opacity: 0.7;
}

.page-header-custom-background .breadcrumb.breadcrumb-valign-mid a {
	color: #FFF;
}

/* Page Header Custom - Create your Own */
.page-header.custom-product {
	background-image: url(../img/custom-header-bg.jpg);
	background-repeat: repeat;
	background-color: #999;
	border-top: 5px solid #888;
	overflow: hidden;
}

.page-header.custom-product .row {
	position: relative;
}

.page-header.custom-product p.lead {
	color: #E8E8E8;
}

.page-header.custom-product img {
	bottom: -47px;
	position: relative;
}

.page-header.custom-product h1 {
	color: #FFF;
	margin-bottom: 10px;
	margin-top: 30px;
	border: 0;
}