/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  /* Typography */
  --default-font: "Inter", system-ui, -apple-system, sans-serif;
  --heading-font: "Playfair Display", serif;
  --nav-font: "Inter", sans-serif;
  
  /* BLACK & GOLD THEME - Core Colors */
  --background-color: #0a0a0a;      /* Deep black background */
  --default-color: #e0e0e0;         /* Light gray text for readability */
  --heading-color: #FFD700;         /* Gold for headings */
  --accent-color: #FFD700;          /* Gold as primary accent */
  --accent-hover: #e6c200;          /* Darker gold on hover */
  --surface-color: #111111;         /* Dark surface for cards/modals */
  --contrast-color: #0a0a0a;        /* Dark contrast for text on gold */
  
  /* Inputs & Forms */
  --input-bg: #1a1a1a;
  --input-border: #333333;
  --input-focus-border: #FFD700;
  --input-focus-ring: rgba(255, 215, 0, 0.25);
  --input-radius: 8px;
  
  /* Shadows & Depth - Gold tinted shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.4), 0 1px 2px -1px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -2px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  --shadow-premium: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 10px 30px -8px rgba(255, 215, 0, 0.2);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Spacing */
  --card-padding: 2rem;
  
  /* BS Overrides */
  --bs-primary: #FFD700 !important;
  --bs-primary-rgb: 255, 215, 0 !important;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Navigation Variables */
  --nav-color: #d4d4d4;
  --nav-hover-color: var(--accent-color);
  --nav-dropdown-background-color: #111111;
  --nav-dropdown-color: #d4d4d4;
  --nav-dropdown-hover-color: var(--accent-color);
  --nav-mobile-background-color: #111111;
  
  /* GOLD Gradient */
  --gold-gradient: linear-gradient(135deg, #FFD700 0%, #e6c200 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(230, 194, 0, 0.1) 100%);
 

  --bg-black: #0a0a0a;
    --bg-dark: #111111;
    --bg-darker: #050505;
    --bg-input: #1a1a1a;
    --bg-hover: #222222;
    
    --gold-primary: #FFD700;
    --gold-dark: #e6c200;
    --gold-light: rgba(255, 215, 0, 0.15);
    --gold-glow: rgba(255, 215, 0, 0.3);
    
    --text-light: #e0e0e0;
    --text-muted: #b0b0b0;
    --text-dim: #888888;
    
    --border-color: rgba(255, 215, 0, 0.15);
    --border-dark: #333333;

/* BLACK & GOLD THEME - Refined Luxury Colors */
   
}



 :root {
  /* BLACK & GOLD THEME - Refined Luxury Colors */
  --background-color: #080808 !important;        /* Deeper, richer black */
  --default-color: #c8c8c8 !important;           /* Softer gray — easier on eyes */
  --heading-color: #f0e8d0 !important;           /* Warm cream — NOT gold for headings */
  --accent-color: #D4AF37 !important;            /* Antique gold — warm, not neon */
  --accent-hover: #e8c96a !important;            /* Lighter gold on hover */
  --surface-color: #131313 !important;           /* Cards — subtle depth above bg */
  --contrast-color: #080808 !important;          /* Dark text on gold buttons */

  --input-bg: #1a1a1a !important;
  --input-border: #2a2a2a !important;
  --input-focus-border: #D4AF37 !important;
  --input-focus-ring: rgba(212, 175, 55, 0.2) !important;

  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #a8892a 100%) !important;
  --primary-gradient: linear-gradient(135deg, #D4AF37 0%, #a8892a 100%) !important;
  --primary-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  --border-color: rgba(212, 175, 55, 0.15)!important;

  --bs-primary: #D4AF37 !important;
  --bs-primary-rgb: 212, 175, 55 !important;
} 

/* Dark Background Override for consistency */
.dark-background {
  --background-color: #050505;
  --default-color: #d4d4d4;
  --heading-color: #FFD700;
  --surface-color: #111111;
  --contrast-color: #0a0a0a;
  --input-bg: #1a1a1a;
  --input-border: #333333;
}

/* Light Background becomes dark theme */
.light-background {
  --background-color: #0a0a0a;
  --surface-color: #111111;
  --default-color: #d4d4d4;
  --heading-color: #FFD700;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #FFD700;
  text-decoration: none;
  opacity: 0.85;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button - Gold Version */
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#FFD700 50%, color-mix(in srgb, #FFD700, transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, #FFD700, transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #0a0a0a;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #0a0a0a;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid #FFD700;
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages */
.php-email-form .error-message {
  display: none;
  background: #dc3545;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #0a0a0a;
  background: #FFD700;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {
  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  color: var(--default-color);
}

.header .topbar .contact-info i a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.3);
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu - Gold Theme
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 12px;
    font-size: 13px;
    font-family: var(--nav-font);
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #FFD700;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer - Black & Gold
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #050505;
  font-size: 14px;
  position: relative;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.footer .footer-top {
  background-color: #0a0a0a;
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  margin-top: 20px;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  color: var(--accent-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  color: #0a0a0a;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader - Gold
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: #0a0a0a;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {
  0%,
  100% {
    transform: scaleY(0.3);
  }
  50% {
    transform: scaleY(1);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button - Gold
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #0a0a0a;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #e6c200;
  color: #0a0a0a;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: #0a0a0a;
  padding: 25px 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
}

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

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles - Gold Accents
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
  color: #b0b0b0;
}

/*--------------------------------------------------------------
# Hero Section - Black & Gold
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px),
(max-width: 580px) {
  .hero .carousel {
    min-height: 100vh;
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero .carousel-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.65);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  text-align: center;
  padding-top: 154px;
  padding-bottom: 20px;
  border-top: 4px solid var(--accent-color);
  z-index: 3;
}

.hero h2 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  color: #FFD700;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.5s;
  margin: 10px;
  border-radius: 4px;
  color: #0a0a0a;
  background-color: #FFD700;
  border: 2px solid #FFD700;
}

.hero .btn-get-started:hover {
  background: transparent;
  color: #FFD700;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  color: #FFD700;
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: #FFD700;
  color: #0a0a0a;
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section - Gold
--------------------------------------------------------------*/
.call-to-action {
  padding: 50px 0;
  position: relative;
  clip-path: inset(0);
  background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: #FFD700;
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  background-color: transparent;
  color: #FFD700;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #FFD700;
}

.call-to-action .cta-btn:hover {
  background: #FFD700;
  color: #0a0a0a;
}

/*--------------------------------------------------------------
# Services Section - Black & Gold
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.3);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: #0a0a0a;
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
  color: #FFD700;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }
  .services .service-item:hover h3 {
    color: #FFD700;
  }
}

/*--------------------------------------------------------------
# Portfolio Section - Gold Theme
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  margin: 0 5px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  background: #1a1a1a;
  color: var(--default-color);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: #0a0a0a;
  background: #FFD700;
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 12px;
    padding: 6px 12px;
    margin: 0 3px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.85);
  padding: 15px;
  border-radius: 8px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
  color: #FFD700;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #b0b0b0;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: #b0b0b0;
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #FFD700;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  border-left: 1px solid rgba(255, 215, 0, 0.15);
}

.clients .client-logo {
  background-color: var(--surface-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgba(255, 215, 0, 0.15);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  overflow: hidden;
}

.clients .client-logo img {
  padding: 50px;
  max-width: 80%;
  transition: 0.3s;
  filter: brightness(0.8) contrast(1.2);
}

.clients .client-logo img:hover {
  filter: brightness(1) contrast(1);
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 30px;
    max-width: 50%;
  }
}

.clients .client-logo:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  color: #FFD700;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

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

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: rgba(0, 0, 0, 0.7);
  color: #FFD700;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: #0a0a0a;
  background: #FFD700;
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #FFD700;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #888888;
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Skills Section - Gold
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: #FFD700;
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: rgba(255, 215, 0, 0.15);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

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

.features .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
}

.features .nav-link i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.features .nav-link p {
  font-size: 15px;
  margin: 0;
}

.features .nav-link:hover {
  background: rgba(255, 215, 0, 0.1);
}

.features .nav-link.active {
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700;
}

.features .tab-pane img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid rgba(255, 215, 0, 0.3);
  margin: 20px 0;
  color: #b0b0b0;
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: #FFD700;
  font-weight: 700;
  border-color: #FFD700;
}

.service-details .services-list a:hover {
  border-color: #FFD700;
  color: #FFD700;
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
  color: #FFD700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.3);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #1a1a1a;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #FFD700;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #888888;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #FFD700;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 215, 0, 0.5);
  font-size: 26px;
  line-height: 0;
}

.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;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Pricing Section - Black & Gold
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.3);
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #FFD700;
}

.pricing .pricing-item h4 {
  color: var(--accent-color);
  font-size: 42px;
  font-family: var(--default-font);
  font-weight: 500;
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: #888888;
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul .na {
  color: #555555;
  text-decoration: line-through;
}

.pricing .pricing-item .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .pricing-item .btn-buy {
  color: #FFD700;
  border: 2px solid #FFD700;
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  background: transparent;
}

.pricing .pricing-item .btn-buy:hover {
  background: #FFD700;
  color: #0a0a0a;
}

.pricing .recommended .btn-buy {
  background: #FFD700;
  color: #0a0a0a;
}

.pricing .recommended .btn-buy:hover {
  background: #e6c200;
  border-color: #e6c200;
}

.pricing .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700;
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: #FFD700;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: #FFD700;
  color: #0a0a0a;
}

@media (max-width: 575px) {
  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

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

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #555555;
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FFD700;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #FFD700;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #888888;
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: #FFD700;
  color: #0a0a0a;
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: #e6c200;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: rgba(255, 215, 0, 0.05);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #1a1a1a;
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
  color: #FFD700;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #888888;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: rgba(255, 215, 0, 0.5);
  font-size: 26px;
  line-height: 0;
}

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

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: #FFD700;
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: #e6c200;
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: #888888;
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: #666666;
}

.blog-posts .meta-top a {
  color: #888888;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: #FFD700;
  color: #0a0a0a;
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: #e6c200;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: #888888;
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: #888888;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: #FFD700;
  color: #0a0a0a;
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: #FFD700;
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
  color: #FFD700;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(255, 215, 0, 0.05);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #FFD700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: #888888;
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: #666666;
}

.blog-details .meta-top a {
  color: #888888;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.blog-details .meta-bottom i {
  color: #666666;
  display: inline;
}

.blog-details .meta-bottom a {
  color: #888888;
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: #FFD700;
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: #FFD700;
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: #666666;
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: #b0b0b0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
  color: #FFD700;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: #FFD700;
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: #e6c200;
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #888888;
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #666666;
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
  color: #FFD700;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: #1a1a1a;
  color: var(--default-color);
  border: 1px solid #333333;
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: #1a1a1a;
  box-shadow: none;
  border-color: #FFD700;
}

.comment-form form input::placeholder {
  color: #666666;
}

.comment-form form textarea {
  background-color: #1a1a1a;
  color: var(--default-color);
  border: 1px solid #333333;
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: #FFD700;
  background-color: #1a1a1a;
}

.comment-form form textarea::placeholder {
  color: #666666;
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #FFD700;
  color: #0a0a0a;
}

.comment-form form .btn-primary:hover {
  color: #0a0a0a;
  background-color: #e6c200;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
  color: #FFD700;
}

.contact .info p {
  color: #888888;
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #FFD700;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #888888;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: #1a1a1a;
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: #333333;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #FFD700;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #666666;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: #FFD700;
  color: #0a0a0a;
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #e6c200;
}

.form-submit-btn {
  background: #FFD700;
  color: #0a0a0a;
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.form-btn:hover {
  background: #e6c200;
}

/*--------------------------------------------------------------
# Widgets - Gold Theme
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.widget-title {
  color: #FFD700;
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.search-widget form {
  background: #1a1a1a;
  border: 1px solid #333333;
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: #1a1a1a;
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: #FFD700;
  color: #0a0a0a;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: #e6c200;
}

.search-widget form:is(:focus-within) {
  border-color: #FFD700;
}

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

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: #b0b0b0;
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: #FFD700;
}

.categories-widget ul a span {
  padding-left: 5px;
  color: #666666;
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: #FFD700;
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: #e6c200;
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: #666666;
}

.tags-widget {
  margin-bottom: -10px;
}

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

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: #b0b0b0;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #333333;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: #FFD700;
  color: #0a0a0a;
  border: 1px solid #FFD700;
}

.tags-widget ul a span {
  padding-left: 5px;
  color: #666666;
  font-size: 14px;
}

/* Base Vehicle Card Styles - Gold */
.vehicle-selection {
  --card-padding: 1.25rem;
  --image-height: 120px;
  --hover-elevation: 0 4px 12px rgba(0, 0, 0, 0.3);
  --transition-speed: 0.25s;
}

.vehicle-card {
  position: relative;
  height: 100%;
  padding: var(--card-padding);
  border: 1px solid #333333;
  border-radius: 8px;
  background: #111111;
  transition: all var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
}

.vehicle-card img {
  width: 100%;
  height: var(--image-height);
  object-fit: contain;
  object-position: center;
  margin-bottom: 0.75rem;
  background: #1a1a1a;
  border-radius: 4px;
  padding: 0.5rem;
}

.adjust-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto 0.75rem;
  background: #1a1a1a;
  border-radius: 4px;
  padding: 0.5rem;
  box-sizing: border-box;
}

.vehicle-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #FFD700;
}

.vehicle-card hr {
  margin: 0.5rem 0;
  opacity: 0.2;
  border-color: #FFD700;
}

.vehicle-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-top: auto;
}

.vehicle-info div {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.vehicle-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
  z-index: 2;
}

.vehicle-card.selected {
  border-color: #FFD700;
  background-color: rgba(255, 215, 0, 0.1);
  box-shadow: var(--hover-elevation);
  border-bottom: 5px solid #FFD700 !important;
  border-radius: 18px;
}

.vehicle-card:hover:not(.selected) {
  transform: translateY(-3px);
  box-shadow: var(--hover-elevation);
  border-color: #FFD700;
}

@media (max-width: 768px) {
  .vehicle-selection {
    --card-padding: 1rem;
    --image-height: 100px;
  }
  .vehicle-card h5 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .vehicle-selection {
    --card-padding: 0.75rem;
    --image-height: 80px;
  }
  .vehicle-info {
    flex-direction: column;
    gap: 0.25rem;
  }
}

.vehicle-card img:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--image-height);
  background: #1a1a1a url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFD700"><path d="M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-4.86 8.86l-3 3.87L9 13.14 6 17h12l-3.86-5.14z"/></svg>') no-repeat center;
  background-size: 30%;
  border-radius: 4px;
}

.vehicle-card img:after {
  content: attr(alt);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.25rem;
  background: rgba(0, 0, 0, 0.7);
  color: #FFD700;
  font-size: 0.7rem;
  text-align: center;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: #0a0a0a !important;
  background-color: #FFD700 !important;
  border-color: #FFD700 !important;
}

.btn-outline-warning {
  --bs-btn-color: #FFD700 !important;
  --bs-btn-border-color: #FFD700 !important;
  --bs-btn-hover-color: #0a0a0a;
  --bs-btn-hover-bg: #FFD700 !important;
  --bs-btn-hover-border-color: #FFD700 !important;
  --bs-btn-focus-shadow-rgb: 255, 215, 0;
  --bs-btn-active-color: #0a0a0a;
  --bs-btn-active-bg: #FFD700 !important;
  --bs-btn-active-border-color: #FFD700;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #FFD700 !important;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #FFD700 !important;
  --bs-gradient: none;
}

.text-warning {
  color: #FFD700 !important;
}

/* ==========================================================================
   Custom Premium Enhancements - Black & Gold Edition
   ========================================================================== */

/* Global Stability Fix */
html {
  overflow-y: scroll;
  overflow-x: hidden;
  width: 100vw;
}

body {
  overflow-x: hidden;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  background-color: #0a0a0a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #FFD700;
}

/* Glassmorphism Variables */
:root {
  --glass-bg: rgba(0, 0, 0, 0.7);
  --glass-border: rgba(255, 215, 0, 0.3);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --primary-gradient: linear-gradient(135deg, #FFD700 0%, #e6c200 100%);
  --primary-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content-container {
  padding-top: 100px;
}

/* Premium Glass Card - Black & Gold */
.glass-card {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 3rem !important;
}

/* Premium Glass Inputs */
.glass-input,
.glass-input:focus {
  background: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #e0e0e0;
  border-radius: 12px;
  padding: 1rem 1rem;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.glass-input:focus {
  background: #1a1a1a;
  border-color: #FFD700;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15);
  outline: none;
}

.form-floating>label {
  padding-left: 1rem;
  color: #b0b0b0;
  font-weight: 500;
}

/* Premium Buttons */
.btn-warning,
.btn-primary {
  background: var(--primary-gradient) !important;
  border: none;
  color: #0a0a0a !important;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--primary-shadow);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-warning:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  filter: brightness(1.1);
}

.btn-warning:active,
.btn-primary:active {
  transform: translateY(-1px);
}

/* Vehicle Cards Modern */
.vehicle-selection-grid .vehicle-card-modern {
  border: 1px solid #333333;
  background: #111111;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.vehicle-selection-grid .vehicle-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.5);
}

.vehicle-radio:checked+.vehicle-card-modern {
  border: 2px solid #FFD700;
  background: #111111;
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
  transform: translateY(-5px);
}

.vehicle-card-modern h6 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFD700;
}

/* Trip Type Toggles */
.btn-check:checked+.btn {
  background-color: #FFD700 !important;
  color: #0a0a0a !important;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.btn-check+.btn {
  color: #b0b0b0;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-check+.btn:hover {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
}

/* Section Headers */
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  color: #FFD700;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #b0b0b0;
}

/* Portfolio/Isotope Enhancements */
.portfolio-filters .nav-link {
  border: 2px solid #333333;
  color: #b0b0b0;
  padding: 0.5rem 1.5rem;
  margin: 0 0.25rem;
  font-weight: 600;
  transition: all 0.3s;
}

.portfolio-filters .nav-link:hover,
.portfolio-filters .filter-active .nav-link,
.portfolio-filters li.filter-active span {
  border-color: #FFD700;
  background-color: #FFD700;
  color: #0a0a0a;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.portfolio-filters li.filter-active .nav-link {
  background-color: #FFD700 !important;
  color: #0a0a0a !important;
}

.portfolio-item .card-body {
  background: #111111;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  height: 100%;
  transition: transform 0.3s;
}

.portfolio-item:hover .card-body {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.portfolio-item .card-title {
  color: #FFD700;
  font-size: 1.25rem;
}

.portfolio-item img {
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.portfolio-item img:hover {
  transform: scale(1.03);
}

/* Global Utilities */
.hover-scale {
  transition: transform 0.2s;
}

.hover-scale:hover {
  transform: scale(1.02);
}

.object-fit-cover {
  object-fit: cover;
}

.bg-gradient-primary {
  background: var(--primary-gradient);
}

/* Form Feedback */
.error-message,
.sent-message {
  border-radius: 12px;
  font-weight: 500;
}

/* Animation */
.spin-anim {
  animation: spin 0.5s ease-in-out;
}

@keyframes spin {
  100% {
    transform: rotate(180deg);
  }
}

.opacity-50 {
  opacity: 0.5;
}

.main .page-title {
  margin-top: 100px;
}

@media (min-width: 992px) {
  .main .page-title {
    margin-top: 116px !important;
  }
}

/* Premium Component Overrides - Gold */
.form-control,
.form-select {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: var(--input-radius);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--heading-color);
  box-shadow: var(--shadow-xs);
  transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
  border-color: #FFD700;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
  background-color: #1a1a1a;
}

.form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #b0b0b0;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Glass Inputs for Hero */
.glass-input .form-control,
.glass-input .form-select,
.glass-input.form-control,
.glass-input.form-select {
  background: rgba(26, 26, 26, 0.95) !important;
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(12px);
  color: #e0e0e0 !important;
}

.glass-input .form-control:focus,
.glass-input .form-select:focus,
.glass-input.form-control:focus,
.glass-input.form-select:focus {
  background: #1a1a1a !important;
  border-color: #FFD700;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

.glass-input option {
  background-color: #1a1a1a;
  color: #e0e0e0;
}

/* Buttons */
.btn {
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary,
.btn-accent {
  background: #FFD700;
  border: 1px solid #FFD700;
  box-shadow: var(--shadow-md);
  color: #0a0a0a;
}

.btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-light {
  background: #1a1a1a;
  border: 1px solid #333333;
  color: var(--heading-color);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  background: #222222;
  border-color: #FFD700;
  color: #FFD700;
  transform: translateY(-1px);
}

/* Cards & Glassmorphism */
.card-glass {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: var(--shadow-premium);
  border-radius: var(--radius-xl);
}

.card-hover {
  transition: var(--transition-normal);
  border: 1px solid transparent;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 215, 0, 0.2);
}

/* Modals */
.modal-content {
  border: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  background-color: #111111;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  background: #0a0a0a;
  padding: 1.5rem 2rem;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: none;
  padding: 1rem 2rem 2rem;
}

.modal-backdrop.show {
  opacity: 0.8;
  backdrop-filter: blur(4px);
}

/* Luxury / Premium Portfolio Section */
.section-header-luxury .sub-title {
  font-family: var(--default-font);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFD700;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-header-luxury h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: #FFD700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Luxury Navigation Pills */
.nav-pills-luxury {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #111111;
  padding: 0.5rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 215, 0, 0.15);
  gap: 0.5rem;
  margin-bottom: 3rem;
  list-style: none !important;
  margin: 0;
}

.nav-pills-luxury .nav-link {
  color: #b0b0b0;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer !important;
  user-select: none;
  white-space: nowrap;
  display: inline-block;
}

.nav-pills-luxury .nav-link:hover {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
}

.nav-pills-luxury .nav-link.filter-active,
.nav-pills-luxury .nav-link.active {
  background: #FFD700;
  color: #0a0a0a;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

/* Scrollable Pricing Area */
.pricing-scroll-container {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #FFD700 transparent;
}

.pricing-scroll-container::-webkit-scrollbar {
  width: 4px;
}

.pricing-scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.pricing-scroll-container::-webkit-scrollbar-thumb {
  background-color: rgba(255, 215, 0, 0.3);
  border-radius: 20px;
}

.pricing-scroll-container:hover::-webkit-scrollbar-thumb {
  background-color: #FFD700;
}

/* Luxury Card */
.card-luxury {
  border: none;
  background: #111111;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
}

.card-luxury:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.5);
}

.card-luxury .image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.card-luxury .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card-luxury:hover .image-wrapper img {
  transform: scale(1.06);
}

.card-luxury .overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.badge-luxury {
  background: rgba(0, 0, 0, 0.85);
  color: #FFD700;
  backdrop-filter: blur(4px);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.card-luxury-title {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD700;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Pricing List Premium */
.pricing-list-premium {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #1a1a1a;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.pricing-item:hover {
  background: #222222;
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pricing-route {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e0e0e0;
}

.pricing-route i {
  color: #FFD700;
  opacity: 0.8;
}

.pricing-cost {
  text-align: right;
  line-height: 1.2;
}

.pricing-amount {
  display: block;
  font-weight: 700;
  color: #FFD700;
  font-size: 1.1rem;
}

.pricing-currency {
  font-size: 0.7rem;
  color: #888888;
  text-transform: uppercase;
  font-weight: 500;
}

.specs-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  color: rgba(255, 215, 0, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
}

.specs-row i {
  margin-right: 0.4rem;
  color: #FFD700;
}

/* Booking Form Vehicle Selection */
.vehicle-card-label {
  cursor: pointer;
  display: block;
}

.vehicle-radio:checked+.card {
  border: 2px solid #FFD700 !important;
  background-color: rgba(255, 215, 0, 0.05);
  box-shadow: var(--shadow-md) !important;
}

.vehicle-radio:checked+.card .selected-check {
  opacity: 1 !important;
  transform: translateY(0) scale(1.1);
}

.selected-check {
  transition: all 0.3s ease;
}

.iti__dropdown-content {
  z-index: 3 !important;
}

/* Premium UI Utilities */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg) !important;
}

.card-premium {
  border: 0;
  border-radius: 16px;
  background: #111111;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.text-heading {
  color: #FFD700;
}

.hover-scale {
  transition: transform 0.2s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.focus-bg-white:focus {
  background-color: #1a1a1a !important;
}

.focus-shadow:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.2) !important;
}

.badge-soft-primary {
  background-color: rgba(255, 215, 0, 0.15);
  color: #FFD700;
  font-weight: 600;
}

/* Contact Page Specific */
.iti {
  width: 100%;
}

.iti__tel-input {
  background-color: #1a1a1a !important;
  border: 1px solid #333333 !important;
  border-radius: var(--bs-border-radius) !important;
  padding-top: 0.7rem !important;
  padding-bottom: 0.7rem !important;
}

.iti__tel-input:focus {
  background-color: #222222 !important;
  box-shadow: var(--shadow-sm);
}

.trix-content figcaption,
figcaption {
  display: none !important;
}

.whatsapp-wrapper {
  position: fixed;
  bottom: 85px;
  right: 20px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  border-radius: 40%;
}

/* Hero Background with Black & Gold Overlay */
.hero {
  /* background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url('/assets/img/header-img.jpg') center/cover no-repeat !important; */
  background: linear-gradient(rgba(0, 0, 0, 0.57), rgba(0, 0, 0, 0.25)), url('/assets/img/header-img.jpg') center/cover no-repeat !important;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.heroold {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85)), url('/assets/img/header-img.jpg') center/cover no-repeat !important;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}


/*--------------------------------------------------------------
# Package Details Page - Black & Gold Theme
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Package Details Page - Black & Gold Theme (with Variables)
--------------------------------------------------------------*/

/* Page Title */
.service-details-page .page-title {
    background: var(--bg-black);
    border-bottom: 1px solid var(--border-color);
}

.service-details-page .page-title h1 {
    color: var(--gold-primary);
}

.service-details-page .page-title .breadcrumbs ol li a {
    color: var(--text-muted);
}

.service-details-page .page-title .breadcrumbs ol li a:hover {
    color: var(--gold-primary);
}

.service-details-page .page-title .breadcrumbs ol .current {
    color: var(--gold-primary);
}

/* Main Content Background */
.service-details-page .about.section {
    background: var(--bg-black);
}

/* Luxury Card */
.service-details-page .card-luxury {
    background: var(--bg-dark) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 20px;
    overflow: hidden;
}

.service-details-page .card-luxury .bg-white {
    background: var(--bg-dark) !important;
}

.service-details-page .card-luxury h3 {
    color: var(--gold-primary) !important;
    font-family: var(--heading-font);
}

.service-details-page .card-luxury .sub-title {
    color: var(--text-light) !important;
}

/* Vehicle Specs */
.service-details-page .vehicle-specs {
    margin-top: 1.5rem;
}

.service-details-page .vehicle-specs .spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-details-page .vehicle-specs .spec-item i {
    color: var(--gold-primary);
    font-size: 1.1rem;
    width: 24px;
}

.service-details-page .vehicle-specs .spec-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-details-page .vehicle-specs .spec-item strong {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Vehicle Image */
.service-details-page .vehicle-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.service-details-page .vehicle-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-details-page .vehicle-image-wrapper:hover img {
    transform: scale(1.03);
}

.service-details-page .vehicle-image-wrapper .gold-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-light) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.service-details-page .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-details-page .section-header .sub-title {
    color: var(--gold-primary) !important;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.75rem;
    display: inline-block;
}

.service-details-page .section-header h2 {
    color: var(--gold-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.service-details-page .section-header .gold-underline {
    width: 60px;
    height: 3px;
    background: var(--gold-primary);
    margin: 0 auto;
}

/* Package Cards - Black & Gold */
.service-details-page .package-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.service-details-page .package-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-glow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--gold-light);
}

/* Gold Accent Border */
.service-details-page .package-card .gold-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-primary);
}

/* Popular Badge */
.service-details-page .package-card .popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-primary);
    color: var(--bg-black);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Card Icon */
.service-details-page .package-card .card-icon {
    margin-bottom: 1rem;
}

.service-details-page .package-card .card-icon i {
    color: var(--gold-primary);
    font-size: 2rem;
}

/* Card Title */
.service-details-page .package-card h4 {
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-details-page .package-card:hover h4 {
    color: var(--gold-primary);
}

/* Card Description */
.service-details-page .package-card .package-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Inclusions Section */
.service-details-page .package-card .inclusions {
    margin-bottom: 1rem;
}

.service-details-page .package-card .inclusions-title {
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.service-details-page .package-card .inclusions-list {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

.service-details-page .package-card .inclusions-list i {
    color: var(--gold-primary);
    font-size: 0.7rem;
    margin-right: 0.5rem;
}

/* Price Section */
.service-details-page .package-card .price-section {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.service-details-page .package-card .price-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-details-page .package-card .price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.service-details-page .package-card .price-currency {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: normal;
}

/* Book Now Button */
.service-details-page .btn-book-now {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-details-page .btn-book-now:hover {
    background: var(--gold-primary);
    color: var(--bg-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--gold-glow);
}

.service-details-page .btn-book-now i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-details-page .btn-book-now:hover i {
    transform: translateX(3px);
}

/* Primary Button */
.service-details-page .btn-primary {
    background: var(--gold-primary);
    border: none;
    color: var(--bg-black);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-details-page .btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--gold-glow);
}

/* Why Choose Us Section */
.service-details-page .why-choose-section {
    margin-top: 3rem;
    padding-top: 2rem;
}

.service-details-page .feature-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.service-details-page .feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold-glow);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-details-page .feature-card i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.service-details-page .feature-card h5 {
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-details-page .feature-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* No Packages Fallback */
.service-details-page .no-packages {
    text-align: center;
    padding: 3rem;
}

.service-details-page .no-packages i {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.service-details-page .no-packages h3 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.service-details-page .no-packages p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-details-page .vehicle-image-wrapper {
        height: 300px;
    }
    
    .service-details-page .vehicle-image-wrapper img {
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 768px) {
    .service-details-page .package-card {
        margin-bottom: 1rem;
    }
    
    .service-details-page .section-header h2 {
        font-size: 1.75rem;
    }
    
    .service-details-page .vehicle-specs .spec-item {
        padding: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .service-details-page .vehicle-image-wrapper {
        height: 250px;
    }
    
    .service-details-page .package-card .price-amount {
        font-size: 1.25rem;
    }
    
    .service-details-page .btn-book-now {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Animation Classes */
.service-details-page .fade-up {
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar for packages if needed */
.service-details-page .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .service-details-page .packages-grid {
        grid-template-columns: 1fr;
    }
}


/* ----------  New sStyle ------------- */


/* Cards and Containers */
.card,
.card-body,
.card-glass,
.card-luxury,
.card-premium,
.card-hover,
.card-header,
.modal-content,
.widgets-container,
.pricing-item,
.testimonial-item,
.service-item,
.team-member,
.portfolio-item .card-body {
    background-color: var(--bg-dark) !important;
    border-color: var(--border-color) !important;
}

/* Form Controls */
.form-control,
.form-select,
.form-floating,
.form-floating input,
.form-floating textarea,
.form-floating select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="datetime-local"],
textarea,
select {
    background-color: var(--bg-input) !important;
    border-color: var(--border-dark) !important;
    color: var(--text-light) !important;
}

.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
    background-color: var(--bg-input) !important;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 0 3px var(--gold-glow) !important;
    color: var(--text-light) !important;
}

.form-floating label {
    color: var(--text-dim) !important;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--gold-primary) !important;
}


.form-floating > textarea:focus ~ label::after,
.form-floating > textarea:not(:placeholder-shown) ~ label::after {
 background-color: var(--bg-input) !important;
}

/* Input Group */
.input-group-text,
.input-group .form-control {
    background-color: var(--bg-input) !important;
    border-color: var(--border-dark) !important;
    color: var(--text-light) !important;
}

/* Select Dropdown */
select option {
    background-color: var(--bg-input) !important;
    color: var(--text-light) !important;
}

/* Glass Input Override */
.glass-input,
.glass-input.form-control,
.glass-input.form-select {
    background: rgba(26, 26, 26, 0.95) !important;
    border: 1px solid var(--gold-glow) !important;
    color: var(--text-light) !important;
}

.glass-input:focus {
    background: var(--bg-input) !important;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 0 4px var(--gold-glow) !important;
}

/* Text Colors */
.text-white-50 {
    color: var(--text-muted) !important;
}

.text-white {
    color: var(--text-light) !important;
}

.text-dark,
.text-secondary {
    color: var(--text-muted) !important;
}

.text-muted,
.sub-title {
    color: var(--text-dim) !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.fw-bold,
.card-title,
.card h4,
.portfolio-item .card-title {
    color: var(--gold-primary) !important;
}

/* Section Headers */
.section-header h2,
.section-title h2,
.section-header-luxury h2 {
    color: var(--gold-primary) !important;
}

.section-header .sub-title,
.section-title p,
.section-header-luxury .sub-title {
    color: var(--text-muted) !important;
}

/* Buttons */
.btn-primary,
.btn-warning,
.btn-accent {
    background: var(--gold-primary) !important;
    border: 1px solid var(--gold-primary) !important;
    color: var(--bg-black) !important;
}

.btn-primary:hover,
.btn-warning:hover,
.btn-accent:hover {
    background: var(--gold-dark) !important;
    border-color: var(--gold-dark) !important;
    color: var(--bg-black) !important;
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: var(--gold-primary) !important;
    color: var(--gold-primary) !important;
}

.btn-outline-primary:hover {
    background: var(--gold-primary) !important;
    color: var(--bg-black) !important;
}

.btn-light {
    background: var(--bg-input) !important;
    border-color: var(--border-dark) !important;
    color: var(--gold-primary) !important;
}

.btn-light:hover {
    background: var(--bg-hover) !important;
    border-color: var(--gold-primary) !important;
}

.btn-dark {
    background: var(--bg-dark) !important;
    border-color: var(--gold-primary) !important;
    color: var(--gold-primary) !important;
}

.btn-dark:hover {
    background: var(--gold-primary) !important;
    color: var(--bg-black) !important;
}

/* Badges */
.badge,
.badge-primary,
.bg-primary {
    background-color: var(--gold-primary) !important;
    color: var(--bg-black) !important;
}

.badge-soft-primary {
    background-color: var(--gold-light) !important;
    color: var(--gold-primary) !important;
}

.bg-primary.bg-opacity-10 {
    background-color: var(--gold-light) !important;
}

/* Alerts */
.alert {
    background-color: var(--bg-input) !important;
    border-color: var(--border-dark) !important;
    color: var(--text-light) !important;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2) !important;
    border-color: #dc3545 !important;
    color: #ff6b6b !important;
}

.alert-success {
    background-color: var(--gold-light) !important;
    border-color: var(--gold-primary) !important;
    color: var(--gold-primary) !important;
}

/* Borders */
.border,
.border-top,
.border-bottom,
.border-start,
.border-end,
hr {
    border-color: var(--border-color) !important;
}

.border-primary {
    border-color: var(--gold-primary) !important;
}

.border-secondary {
    border-color: var(--border-dark) !important;
}

/* Shadows */
.shadow-sm,
.shadow,
.shadow-lg,
.shadow-xl {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Links */
a:not(.btn) {
    color: var(--gold-primary) !important;
}

a:not(.btn):hover {
    color: var(--gold-dark) !important;
}

/* Navbar/Menu */
.navmenu a,
.navmenu a:focus {
    color: var(--text-muted) !important;
}

.navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
    color: var(--gold-primary) !important;
}

/* Footer */
.footer,
.footer .footer-top {
    background-color: var(--bg-darker) !important;
    border-top-color: var(--border-color) !important;
}

.footer h4 {
    color: var(--gold-primary) !important;
}

.footer .footer-links ul a {
    color: var(--text-muted) !important;
}

.footer .footer-links ul a:hover {
    color: var(--gold-primary) !important;
}

/* Vehicle Cards */
.vehicle-card,
.vehicle-card-modern,
.card-hover {
    background-color: var(--bg-dark) !important;
    border-color: var(--border-dark) !important;
}

.vehicle-card h5,
.vehicle-card h6,
.vehicle-card-modern h6 {
    color: var(--gold-primary) !important;
}

.vehicle-card.selected,
.vehicle-radio:checked + .card {
    border-color: var(--gold-primary) !important;
    background-color: var(--gold-light) !important;
}

/* Portfolio/Isotope Filters */
.portfolio-filters li {
    background: var(--bg-input) !important;
    color: var(--text-muted) !important;
}

.portfolio-filters li:hover,
.portfolio-filters li.filter-active {
    background: var(--gold-primary) !important;
    color: var(--bg-black) !important;
}

/* Navigation Pills */
.nav-pills-luxury {
    background: var(--bg-dark) !important;
    border-color: var(--border-color) !important;
}

.nav-pills-luxury .nav-link {
    color: var(--text-muted) !important;
}

.nav-pills-luxury .nav-link:hover {
    color: var(--gold-primary) !important;
    background: var(--gold-light) !important;
}

.nav-pills-luxury .nav-link.active,
.nav-pills-luxury .nav-link.filter-active {
    background: var(--gold-primary) !important;
    color: var(--bg-black) !important;
}

/* Pricing Items */
.pricing-item,
.pricing .pricing-item {
    background-color: var(--bg-dark) !important;
    border-color: var(--border-color) !important;
}

.pricing .pricing-item h3,
.pricing .pricing-item h4 {
    color: var(--gold-primary) !important;
}

/* Testimonials */
.testimonial-item {
    background-color: var(--bg-dark) !important;
}

.testimonial-item h3 {
    color: var(--gold-primary) !important;
}

.testimonial-item .stars i {
    color: var(--gold-primary) !important;
}

/* Team Section */
.team .team-member {
    background-color: var(--bg-dark) !important;
}

.team .team-member .member-info h4 {
    color: var(--gold-primary) !important;
}

/* About Section */
.about h3 {
    color: var(--gold-primary) !important;
}

/* Features Section */
.features .nav-link {
    background-color: var(--bg-dark) !important;
}

.features .nav-link.active {
    background: var(--gold-light) !important;
    color: var(--gold-primary) !important;
}

.features .nav-link i {
    background-color: var(--bg-input) !important;
    color: var(--gold-primary) !important;
}

/* Blog Section */
.blog-posts article,
.blog-details .article,
.comment-form form,
.blog-author .author-container,
.widgets-container {
    background-color: var(--bg-dark) !important;
}

.blog-posts .title a,
.blog-details .title {
    color: var(--gold-primary) !important;
}

/* Contact Section */
.contact .info {
    background-color: var(--bg-dark) !important;
}

.contact .info h3,
.contact .info-item h4 {
    color: var(--gold-primary) !important;
}

/* Modal */
.modal-content {
    background-color: var(--bg-dark) !important;
}

.modal-header {
    background-color: var(--bg-black) !important;
    border-bottom-color: var(--border-color) !important;
}

.modal-header .btn-close {
    filter: invert(1) brightness(2);
}

/* Tabs */
.nav-tabs {
    border-bottom-color: var(--border-color) !important;
}

.nav-tabs .nav-link {
    color: var(--text-muted) !important;
}

.nav-tabs .nav-link.active {
    background-color: var(--bg-dark) !important;
    border-color: var(--gold-primary) !important;
    color: var(--gold-primary) !important;
}

/* Accordion */
.accordion-item,
.accordion-header,
.accordion-button {
    background-color: var(--bg-dark) !important;
    border-color: var(--border-color) !important;
}

.accordion-button {
    color: var(--gold-primary) !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-input) !important;
    color: var(--gold-primary) !important;
}

.accordion-body {
    background-color: var(--bg-black) !important;
}

/* List Groups */
.list-group-item {
    background-color: var(--bg-dark) !important;
    border-color: var(--border-color) !important;
    color: var(--text-light) !important;
}

/* Table */
.table {
    color: var(--text-light) !important;
}

.table th,
.table td {
    border-color: var(--border-color) !important;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: var(--bg-input) !important;
}

/* Progress Bars */
.progress {
    background-color: var(--bg-input) !important;
}

.progress-bar {
    background-color: var(--gold-primary) !important;
}

/* Tooltips */
.tooltip-inner {
    background-color: var(--gold-primary) !important;
    color: var(--bg-black) !important;
}

/* Popovers */
.popover {
    background-color: var(--bg-dark) !important;
    border-color: var(--gold-primary) !important;
}

.popover-header {
    background-color: var(--bg-input) !important;
    color: var(--gold-primary) !important;
    border-bottom-color: var(--gold-primary) !important;
}

.popover-body {
    color: var(--text-light) !important;
}

/* Dropdown Menus */
.dropdown-menu {
    background-color: var(--bg-dark) !important;
    border-color: var(--border-color) !important;
}

.dropdown-item {
    color: var(--text-light) !important;
}

.dropdown-item:hover {
    background-color: var(--gold-light) !important;
    color: var(--gold-primary) !important;
}

/* Pagination */
.pagination .page-link {
    background-color: var(--bg-dark) !important;
    border-color: var(--border-color) !important;
    color: var(--gold-primary) !important;
}

.pagination .page-link:hover {
    background-color: var(--gold-primary) !important;
    color: var(--bg-black) !important;
}

.pagination .page-item.active .page-link {
    background-color: var(--gold-primary) !important;
    border-color: var(--gold-primary) !important;
    color: var(--bg-black) !important;
}

/* Breadcrumbs */
.breadcrumb-item a {
    color: var(--text-muted) !important;
}

.breadcrumb-item a:hover {
    color: var(--gold-primary) !important;
}

.breadcrumb-item.active {
    color: var(--gold-primary) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-dim) !important;
}

/* Swiper/Pagination */
.swiper-pagination-bullet {
    background-color: var(--text-dim) !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--gold-primary) !important;
}

/* Loading Spinners */
.spinner-border,
.spinner-grow {
    color: var(--gold-primary) !important;
}

/* Range Sliders */
input[type="range"] {
    background-color: var(--bg-input) !important;
}

input[type="range"]::-webkit-slider-thumb {
    background-color: var(--gold-primary) !important;
}

/* Checkboxes and Radios */
.form-check-input {
    background-color: var(--bg-input) !important;
    border-color: var(--gold-primary) !important;
}

.form-check-input:checked {
    background-color: var(--gold-primary) !important;
    border-color: var(--gold-primary) !important;
}

.form-check-label {
    color: var(--text-light) !important;
}

/* intl-tel-input */
.iti__selected-flag {
    background-color: var(--bg-input) !important;
}

.iti__country-list {
    background-color: var(--bg-input) !important;
    border-color: var(--border-dark) !important;
}

.iti__country {
    color: var(--text-light) !important;
}

.iti__country:hover {
    background-color: var(--gold-light) !important;
}

/* Map/Leaflet overrides if used */
.leaflet-container {
    background-color: var(--bg-input) !important;
}

.leaflet-popup-content-wrapper {
    background-color: var(--bg-dark) !important;
    color: var(--text-light) !important;
}

.leaflet-popup-tip {
    background-color: var(--bg-dark) !important;
}

/* Video Section */
#videos {
    background-color: var(--bg-black) !important;
}

/* Gallery Section */
#gallery {
    background-color: var(--bg-black) !important;
}

.gallery-slider .swiper-slide {
    background-color: var(--bg-dark) !important;
}

/* WhatsApp Button */
.whatsapp-wrapper {
    /* background-color: var(--gold-primary) !important; */
    color: var(--bg-black) !important;
}

.whatsapp-wrapper:hover {
    background-color: var(--gold-dark) !important;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-input);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) var(--bg-input);
}

/* Selection Color */
::selection {
    background-color: var(--gold-primary);
    color: var(--bg-black);
}

::-moz-selection {
    background-color: var(--gold-primary);
    color: var(--bg-black);
}
