:root {
--color-black: #1A1A1A;
--color-dark: #0D0D0D;
--color-gold: #C9A962;
--color-gold-light: #D4BC7C;
--color-gold-dark: #A88B4A;
--color-cream: #F8F7F4;
--color-burgundy: #722F37;
--color-white: #FFFFFF;
--color-gray-100: #F5F5F5;
--color-gray-200: #E5E5E5;
--color-gray-400: #9A9A9A;
--color-gray-600: #4A4A4A;
--color-gray-700: #2A2A2A;
--font-heading: 'Playfair Display', serif;
--font-body: 'Inter', sans-serif;
--font-accent: 'Cormorant Garamond', serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font-body);
font-size: 16px;
line-height: 1.6;
color: var(--color-white);
background-color: var(--color-black);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
color: inherit;
text-decoration: none;
transition: all 0.3s ease;
}
ul, ol {
list-style: none;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 600;
line-height: 1.2;
margin: 0;
}
h1 {
font-size: 56px;
}
h2 {
font-size: 42px;
}
h3 {
font-size: 32px;
}
h4 {
font-size: 24px;
}
h5 {
font-size: 20px;
}
h6 {
font-size: 18px;
}
p {
margin: 0 0 1rem;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
}
.wrapper {
max-width: 1440px;
margin: 0 auto;
padding: 0 24px;
}
.section-title {
font-family: var(--font-heading);
font-size: 42px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 16px;
}
.section-subtitle {
font-family: var(--font-body);
font-size: 18px;
font-weight: 400;
color: var(--color-gray-400);
margin-bottom: 48px;
}
.btn-gold {
display: inline-block;
padding: 16px 32px;
background-color: var(--color-gold);
color: var(--color-dark);
font-family: var(--font-body);
font-size: 16px;
font-weight: 600;
border: 2px solid var(--color-gold);
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
}
.header-actions .btn-gold {
padding: 12px 24px;
font-size: 14px;
border-radius: 5px;
}
.btn-gold:hover {
background-color: var(--color-gold-light);
border-color: var(--color-gold-light);
transform: translateY(-2px);
}
.btn-gold:active {
background-color: var(--color-gold-dark);
border-color: var(--color-gold-dark);
transform: translateY(0);
}
.btn-outline {
display: inline-block;
padding: 16px 32px;
background-color: transparent;
color: var(--color-white);
font-family: var(--font-body);
font-size: 16px;
font-weight: 600;
border: 2px solid var(--color-white);
border-radius: 0;
cursor: pointer;
transition: all 0.3s ease;
text-align: center;
}
.btn-outline:hover {
background-color: var(--color-gold);
border-color: var(--color-gold);
color: var(--color-dark);
transform: translateY(-2px);
}
.form-input, .form-textarea {
width: 100%;
padding: 16px 20px;
background-color: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: var(--color-white);
font-family: var(--font-body);
font-size: 16px;
border-radius: 0;
transition: all 0.3s ease;
}
.form-input::placeholder, .form-textarea::placeholder {
color: var(--color-gray-400);
}
.form-input:focus, .form-textarea:focus {
outline: none;
border-color: var(--color-gold);
background-color: rgba(255, 255, 255, 0.08);
}
.form-textarea {
min-height: 120px;
resize: vertical;
}
.form-checkbox {
position: relative;
display: flex;
align-items: flex-start;
gap: 12px;
cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
position: absolute;
opacity: 0;
cursor: pointer;
}
.form-checkbox .checkbox-box {
width: 20px;
height: 20px;
border: 2px solid rgba(255, 255, 255, 0.3);
background-color: transparent;
flex-shrink: 0;
transition: all 0.3s ease;
position: relative;
margin-top: 2px;
}
.form-checkbox input[type="checkbox"]:checked + .checkbox-box {
background-color: var(--color-gold);
border-color: var(--color-gold);
}
.form-checkbox input[type="checkbox"]:checked + .checkbox-box::after {
content: '';
position: absolute;
top: 2px;
left: 6px;
width: 4px;
height: 10px;
border: solid var(--color-dark);
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
.form-checkbox label {
font-size: 14px;
color: var(--color-gray-400);
line-height: 1.5;
}
.form-checkbox a {
color: var(--color-gold);
text-decoration: underline;
}
.form-checkbox a:hover {
color: var(--color-gold-light);
}
.header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background-color: transparent;
transition: all 0.3s ease;
}
.header.scrolled {
background: linear-gradient(135deg,
  rgba(114, 47, 55, 0.98) 0%,
  rgba(13, 13, 13, 0.98) 50%,
  rgba(26, 26, 26, 0.98) 100%
);
backdrop-filter: blur(10px);
border-bottom: 2px solid rgba(114, 47, 55, 0.5);
box-shadow: 0 4px 30px rgba(114, 47, 55, 0.4);
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 24px;
max-width: 1400px;
margin: 0 auto;
}
.header-logo img {
height: 60px;
width: auto;
}
.header-logo .logo-svg {
display: inline-block;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.header-logo .logo-svg:hover {
opacity: 0.95;
transform: translateY(-1px);
}
.header-logo .logo-desktop {
height: 65px;
width: auto;
display: block;
}
.header-logo .logo-mobile {
display: none;
height: 45px;
width: auto;
}
.header-nav {
display: flex;
align-items: center;
gap: 40px;
}
.header-nav a {
font-family: var(--font-body);
font-size: 16px;
font-weight: 500;
color: var(--color-white);
position: relative;
}
.header-nav a:hover {
color: var(--color-gold);
}
.header-nav a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background-color: var(--color-gold);
transition: width 0.3s ease;
}
.header-nav a:hover::after {
width: 100%;
}
.header-actions {
display: flex;
align-items: center;
gap: 20px;
}
.lang-switcher {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
font-weight: 600;
color: var(--color-white);
}
.lang-switcher a {
color: var(--color-gray-400);
}
.lang-switcher a.active {
color: var(--color-gold);
}
.lang-switcher span {
color: var(--color-gray-600);
}
.mobile-menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 10px;
}
.mobile-menu-toggle span {
width: 25px;
height: 2px;
background-color: var(--color-white);
transition: all 0.3s ease;
}
.mega-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background-color: var(--color-dark);
opacity: 0;
visibility: hidden;
transform: translateY(-20px);
transition: all 0.3s ease;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.header-nav li:hover .mega-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.mega-menu-inner {
max-width: 1280px;
margin: 0 auto;
padding: 60px 24px;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
}
.mega-menu-col h4 {
font-family: var(--font-heading);
font-size: 20px;
font-weight: 600;
color: var(--color-gold);
margin-bottom: 20px;
}
.mega-menu-item {
display: flex;
flex-direction: column;
gap: 8px;
padding: 16px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
}
.mega-menu-item:hover {
padding-left: 10px;
}
.mega-menu-item h5 {
font-family: var(--font-body);
font-size: 16px;
font-weight: 600;
color: var(--color-white);
}
.mega-menu-item p {
font-size: 14px;
color: var(--color-gray-400);
margin: 0;
}
.mega-menu-item:hover h5 {
color: var(--color-gold);
}
.mega-menu-featured {
background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-dark) 100%);
padding: 30px;
border-radius: 4px;
}
.mega-menu-featured h4 {
color: var(--color-white);
margin-bottom: 12px;
}
.mega-menu-featured p {
color: var(--color-gray-400);
font-size: 14px;
margin-bottom: 20px;
}
.mega-menu-trust {
display: flex;
align-items: center;
gap: 20px;
padding-top: 40px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mega-menu-trust-item {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
color: var(--color-gray-400);
}
.footer {
background-color: var(--color-dark);
padding: 80px 0 30px;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-main {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 60px;
margin-bottom: 60px;
}
.footer-about h3 {
font-family: var(--font-heading);
font-size: 24px;
font-weight: 600;
color: var(--color-gold);
margin-bottom: 20px;
}
.footer-about p {
color: var(--color-gray-400);
font-size: 15px;
margin-bottom: 20px;
}
.footer-social {
display: flex;
gap: 15px;
}
.footer-social a {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(255, 255, 255, 0.05);
color: var(--color-white);
transition: all 0.3s ease;
}
.footer-social a:hover {
background-color: var(--color-gold);
color: var(--color-dark);
}
.footer-col h4 {
font-family: var(--font-body);
font-size: 18px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 20px;
}
.footer-col ul li {
margin-bottom: 12px;
}
.footer-col ul li a {
color: var(--color-gray-400);
font-size: 15px;
}
.footer-col ul li a:hover {
color: var(--color-gold);
}
.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-copyright {
color: var(--color-gray-400);
font-size: 14px;
}
.footer-legal {
display: flex;
gap: 20px;
}
.footer-legal a {
color: var(--color-gray-400);
font-size: 14px;
}
.footer-legal a:hover {
color: var(--color-gold);
}
.home-hero {
min-height: 80vh;
background-color: var(--color-dark);
background-size: cover;
background-position: center;
background-attachment: fixed;
position: relative;
display: flex;
align-items: center;
padding: 140px 0 100px;
}
.home-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(13, 13, 13, 0.96) 0%, rgba(26, 26, 26, 0.92) 50%, rgba(13, 13, 13, 0.96) 100%);
}
.home-hero::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
  radial-gradient(circle at 20% 30%, rgba(201, 169, 98, 0.03) 0%, transparent 50%),
  radial-gradient(circle at 80% 70%, rgba(114, 47, 55, 0.02) 0%, transparent 50%);
pointer-events: none;
}
.home-hero__inner {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 60px;
align-items: start;
}
.home-hero__content {
max-width: 100%;
overflow: hidden;
}
.home-hero__content > * {
max-width: 100%;
}
.home-hero__badge {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 10px 20px;
background: rgba(201, 169, 98, 0.08);
border: 1px solid rgba(201, 169, 98, 0.2);
border-radius: 30px;
margin-bottom: 32px;
animation: fadeInDown 0.8s ease;
}
.home-hero__badge svg {
color: #c9a962;
}
.home-hero__badge span {
font-family: var(--font-body);
font-size: 13px;
font-weight: 600;
color: white;
letter-spacing: 0.5px;
text-transform: uppercase;
}
.home-hero__content h1 {
font-family: var(--font-heading);
font-size: 72px;
font-weight: 700;
color: var(--color-white);
line-height: 1.1;
margin-bottom: 32px;
letter-spacing: -1px;
animation: fadeInUp 0.8s ease 0.2s both;
}
.home-hero__content .accent {
font-family: var(--font-accent);
font-style: italic;
color: var(--color-gold);
font-weight: 400;
}
.home-hero__subtitle {
margin-bottom: 48px;
animation: fadeInUp 0.8s ease 0.4s both;
}
.home-hero__subtitle > p:first-child {
font-size: 22px;
color: var(--color-gray-400);
line-height: 1.6;
margin-bottom: 16px;
font-weight: 500;
}
.home-hero__subtitle-extended {
font-size: 17px;
color: var(--color-gray-400);
line-height: 1.7;
margin-bottom: 0;
max-width: 600px;
opacity: 0.9;
}
.home-hero__features {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-bottom: 56px;
max-width: 100%;
animation: fadeInUp 0.8s ease 0.6s both;
}
.home-hero__feature {
display: flex;
align-items: center;
gap: 14px;
padding: 18px 24px;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(201, 169, 98, 0.15);
border-radius: 8px;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
flex: 1;
max-width: 100%;
}
.home-hero__feature:hover {
background: rgba(201, 169, 98, 0.08);
border-color: rgba(201, 169, 98, 0.35);
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(201, 169, 98, 0.12);
}
.home-hero__feature-icon {
width: 42px;
height: 42px;
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
display: flex;
align-items: center;
justify-content: center;
color: var(--color-dark);
border-radius: 8px;
flex-shrink: 0;
}
.home-hero__feature-icon svg {
width: 22px;
height: 22px;
}
.home-hero__feature-text h4 {
font-size: 15px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 0;
font-family: var(--font-body);
line-height: 1.4;
}
.home-hero__partners {
animation: fadeInUp 0.8s ease 0.8s both;
padding: 32px 0 0 0;
border-top: 1px solid rgba(201, 169, 98, 0.1);
margin-top: 24px;
}
.home-hero__partners-label {
font-family: var(--font-body);
font-size: 12px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: white;
margin-bottom: 24px;
opacity: 0.7;
}
.home-hero__partners-track {
width: 100%;
overflow: hidden;
position: relative;
}
.home-hero__partners-marquee {
display: flex;
gap: 20px;
animation: marqueeScroll 40s linear infinite;
will-change: transform;
}
.home-hero__partners-marquee:hover {
animation-play-state: paused;
}
.home-hero__partners-logo {
height: 50px;
min-width: 160px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
background: #722f37;
border: 1px solid rgba(201, 169, 98, 0.1);
border-radius: 8px;
padding: 12px 24px;
transition: all 0.4s ease;
}
.home-hero__partners-logo:hover {
transform: translateY(-4px);
box-shadow: 0 8px 20px rgba(201, 169, 98, 0.15);
}
.home-hero__partners-logo img {
height: 100%;
width: auto;
max-width: 140px;
max-height: 38px;
object-fit: contain;
display: block;
filter: brightness(0.) invert(3);
transition: filter 0.4s ease;
}
.home-hero__partners-logo:hover img {
filter: grayscale(0%) opacity(0.85) brightness(1.1);
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.home-hero__form {
background: linear-gradient(145deg, rgba(18, 18, 18, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
backdrop-filter: blur(30px);
padding: 0;
border: 1px solid rgba(201, 169, 98, 0.3);
border-radius: 16px;
box-shadow:
  0 25px 70px rgba(0, 0, 0, 0.6),
  0 0 2px rgba(201, 169, 98, 0.4),
  inset 0 1px 0 rgba(255, 255, 255, 0.05);
animation: fadeIn 1s ease 0.4s both;
position: sticky;
top: 120px;
overflow: hidden;
max-width: 100%;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.home-hero__form::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
opacity: 0.6;
}
.home-hero__form h3 {
font-family: var(--font-heading);
font-size: 26px;
font-weight: 600;
color: var(--color-white);
margin: 0;
padding: 36px 40px 24px;
text-align: center;
position: relative;
background: linear-gradient(180deg, rgba(201, 169, 98, 0.04) 0%, transparent 100%);
border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}
.home-hero__form h3::after {
content: '';
position: absolute;
bottom: -1px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 2px;
background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
}
.home-hero__form .vl-form-wrapper--hero {
padding: 54px;
}
.home-hero__form .vl-booking-form {
padding: 0;
}

/* Partners Section - Infinite Scrolling Marquee */
.home-partners {
background: linear-gradient(180deg, var(--color-dark) 0%, rgba(18, 18, 18, 1) 100%);
padding: 60px 0;
overflow: hidden;
position: relative;
border-top: 1px solid rgba(201, 169, 98, 0.1);
border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}
.home-partners::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 200px;
background: linear-gradient(90deg, rgba(13, 13, 13, 1) 0%, transparent 100%);
z-index: 2;
pointer-events: none;
}
.home-partners::after {
content: '';
position: absolute;
right: 0;
top: 0;
bottom: 0;
width: 200px;
background: linear-gradient(90deg, transparent 0%, rgba(13, 13, 13, 1) 100%);
z-index: 2;
pointer-events: none;
}
.home-partners__wrapper {
max-width: 100%;
margin: 0 auto;
}
.home-partners__label {
font-family: var(--font-body);
font-size: 13px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--color-gold);
text-align: center;
margin-bottom: 30px;
opacity: 0.7;
}
.home-partners__track {
width: 100%;
overflow: hidden;
position: relative;
}
.home-partners__marquee {
display: flex;
gap: 40px;
animation: marqueeScroll 40s linear infinite;
will-change: transform;
}
.home-partners__marquee:hover {
animation-play-state: paused;
}
.home-partners__logo {
height: 50px;
min-width: 160px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(201, 169, 98, 0.1);
border-radius: 8px;
padding: 12px 24px;
transition: all 0.4s ease;
}
.home-partners__logo:hover {
background: rgba(255, 255, 255, 0.04);
border-color: rgba(201, 169, 98, 0.25);
transform: translateY(-4px);
box-shadow: 0 8px 20px rgba(201, 169, 98, 0.15);
}
.home-partners__logo img {
height: 100%;
width: auto;
max-width: 140px;
max-height: 38px;
object-fit: contain;
display: block;
filter: grayscale(100%) opacity(0.5) brightness(2);
transition: filter 0.4s ease;
}
.home-partners__logo:hover img {
filter: grayscale(0%) opacity(0.85) brightness(1.1);
}
@keyframes marqueeScroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-66.666%);
}
}

/* ==========================================================================
   SERVICES SECTION - Premium Dark Design
   ========================================================================== */

.home-services {
  background: linear-gradient(180deg,
    var(--color-black) 0%,
    rgba(114, 47, 55, 0.08) 50%,
    var(--color-black) 100%
  );
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.home-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 169, 98, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.home-services__header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.home-services__header::after {
  content: '';
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--color-gold) 50%,
    transparent 100%
  );
  display: block;
  margin: 24px auto 0;
}

.home-services__header h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.home-services__header h2 .accent {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-gold);
  font-weight: 400;
}

.home-services__header p {
  font-size: 18px;
  color: var(--color-gray-400);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.home-services__card {
  background: linear-gradient(145deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(10px);
  padding: 48px 36px;
  text-align: center;
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.home-services__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--color-gold) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.home-services__card:hover {
  transform: translateY(-12px);
  border-color: rgba(114, 47, 55, 0.5);
  background: linear-gradient(145deg,
    rgba(114, 47, 55, 0.15) 0%,
    rgba(114, 47, 55, 0.05) 100%
  );
  box-shadow:
    0 25px 60px rgba(114, 47, 55, 0.25),
    0 0 30px rgba(201, 169, 98, 0.1);
}

.home-services__card:hover::before {
  opacity: 1;
}

.home-services__card-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.25) 0%,
    rgba(139, 58, 69, 0.15) 100%
  );
  border: 2px solid rgba(201, 169, 98, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 36px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.home-services__card-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.4s ease;
}

.home-services__card:hover .home-services__card-icon {
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.45) 0%,
    rgba(139, 58, 69, 0.25) 100%
  );
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.3);
}

.home-services__card:hover .home-services__card-icon::after {
  opacity: 0.4;
  transform: scale(1);
}

.home-services__card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.home-services__card:hover h3 {
  color: var(--color-gold-light);
}

.home-services__card p {
  font-size: 15px;
  color: var(--color-gray-400);
  line-height: 1.8;
  margin-bottom: 28px;
}

.home-services__card a {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.home-services__card a svg {
  transition: transform 0.3s ease;
}

.home-services__card a:hover {
  color: var(--color-gold-light);
  border-bottom-color: var(--color-gold-light);
}

.home-services__card a:hover svg {
  transform: translateX(4px);
}
.home-fleet {
background-color: var(--color-black);
padding: 120px 0;
}
.home-fleet__header {
text-align: center;
margin-bottom: 60px;
}
.home-fleet__header h2 {
font-family: var(--font-heading);
font-size: 42px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 16px;
}
.home-fleet__header p {
font-size: 18px;
color: var(--color-gray-400);
}
.home-fleet__carousel {
position: relative;
overflow: hidden;
}
.home-fleet__track {
display: flex;
gap: 30px;
transition: transform 0.5s ease;
}
.home-fleet__card {
flex: 0 0 calc(33.333% - 20px);
background-color: var(--color-dark);
border: 1px solid rgba(255, 255, 255, 0.05);
overflow: hidden;
transition: all 0.3s ease;
}
.home-fleet__card:hover {
border-color: var(--color-gold);
transform: translateY(-10px);
}
.home-fleet__card-image {
width: 100%;
height: 300px;
overflow: hidden;
position: relative;
}
.home-fleet__card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.home-fleet__card:hover .home-fleet__card-image img {
transform: scale(1.1);
}
.home-fleet__card-content {
padding: 30px;
}
.home-fleet__card-title {
font-family: var(--font-heading);
font-size: 24px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 12px;
}
.home-fleet__card-meta {
display: flex;
gap: 24px;
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.home-fleet__card-meta-item {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
color: var(--color-gray-400);
}
.home-fleet__card-features {
margin-bottom: 24px;
}
.home-fleet__card-features li {
font-size: 14px;
color: var(--color-gray-400);
padding: 8px 0;
padding-left: 20px;
position: relative;
}
.home-fleet__card-features li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--color-gold);
font-weight: 600;
}
.home-fleet__controls {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 40px;
}
.home-fleet__arrow {
width: 50px;
height: 50px;
background-color: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: var(--color-white);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
}
.home-fleet__arrow:hover {
background-color: var(--color-gold);
border-color: var(--color-gold);
color: var(--color-dark);
}
.home-why {
background-color: var(--color-dark);
padding: 120px 0;
}
.home-why__header {
text-align: center;
margin-bottom: 60px;
}
.home-why__header h2 {
font-family: var(--font-heading);
font-size: 42px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 16px;
}
.home-why__header p {
font-size: 18px;
color: var(--color-gray-400);
}
.home-why__grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}
.home-why__item {
text-align: center;
padding: 40px 20px;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
}
.home-why__item:hover {
background: rgba(255, 255, 255, 0.05);
border-color: var(--color-gold);
transform: translateY(-10px);
}
.home-why__item-icon {
width: 70px;
height: 70px;
margin: 0 auto 24px;
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
display: flex;
align-items: center;
justify-content: center;
color: var(--color-white);
font-size: 32px;
border-radius: 50%;
}
.home-why__item h3 {
font-family: var(--font-heading);
font-size: 20px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 12px;
}
.home-why__item p {
font-size: 14px;
color: var(--color-gray-400);
line-height: 1.6;
margin: 0;
}
.home-testimonials {
background-color: var(--color-black);
padding: 120px 0;
}
.home-testimonials__inner {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 80px;
align-items: center;
}
.home-testimonials__left h2 {
font-family: var(--font-heading);
font-size: 42px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 20px;
}
.home-testimonials__left p {
font-size: 18px;
color: var(--color-gray-400);
margin-bottom: 32px;
}
.home-testimonials__trust {
gap: 20px;
}
.home-testimonials__avatars {
display: flex;
margin-left: -10px;
}
.home-testimonials__avatar {
width: 40px;
height: 40px;
border-radius: 50%;
border: 2px solid var(--color-black);
margin-left: -10px;
}
.home-testimonials__rating {
display: flex;
flex-direction: column;
gap: 4px;
}
.home-testimonials__stars {
color: var(--color-gold);
font-size: 18px;
}
.home-testimonials__text {
font-size: 14px;
color: var(--color-gray-400);
}
.home-testimonials__card {
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05);
padding: 50px;
position: relative;
}
.home-testimonials__quote {
font-size: 60px;
color: var(--color-gold);
line-height: 1;
margin-bottom: 20px;
font-family: var(--font-heading);
}
.home-testimonials__author {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 20px;
}
.home-testimonials__author h4 {
font-family: var(--font-body);
font-size: 18px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 4px;
}
.home-testimonials__author p {
font-size: 14px;
color: var(--color-gray-400);
margin: 0;
}
.home-testimonials__stars-review {
color: var(--color-gold);
font-size: 16px;
margin-bottom: 20px;
}
.home-testimonials__content {
font-size: 16px;
color: var(--color-gray-400);
line-height: 1.8;
font-style: italic;
margin-bottom: 30px;
}
.home-testimonials__nav {
display: flex;
align-items: center;
justify-content: space-between;
}
.home-testimonials__progress {
display: flex;
align-items: center;
gap: 12px;
}
.home-testimonials__dot {
width: 8px;
height: 8px;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
}
.home-testimonials__dot.active {
width: 40px;
border-radius: 4px;
background-color: var(--color-gold);
}
.home-testimonials__arrows {
display: flex;
gap: 12px;
}
.home-testimonials__arrow {
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: var(--color-white);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
}
.home-testimonials__arrow:hover {
background-color: var(--color-gold);
border-color: var(--color-gold);
color: var(--color-dark);
}
.home-gallery {
background-color: var(--color-dark);
padding: 120px 0;
}
.home-gallery__header {
text-align: center;
margin-bottom: 60px;
}
.home-gallery__header h2 {
font-family: var(--font-heading);
font-size: 42px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 16px;
}
.home-gallery__header p {
font-size: 18px;
color: var(--color-gray-400);
}
.home-gallery__masonry {
column-count: 4;
column-gap: 20px;
}
.home-gallery__item {
break-inside: avoid;
margin-bottom: 20px;
position: relative;
overflow: hidden;
cursor: pointer;
}
.home-gallery__item img {
width: 100%;
height: auto;
display: block;
transition: transform 0.5s ease;
}
.home-gallery__item:hover img {
transform: scale(1.1);
}
.home-gallery__overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(0deg, rgba(13, 13, 13, 0.8) 0%, transparent 50%);
opacity: 0;
transition: all 0.3s ease;
display: flex;
align-items: flex-end;
padding: 20px;
}
.home-gallery__item:hover .home-gallery__overlay {
opacity: 1;
}
.home-gallery__caption {
color: var(--color-white);
font-size: 14px;
font-weight: 600;
}
.home-cta {
background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-dark) 100%);
padding: 100px 0;
text-align: center;
position: relative;
overflow: hidden;
}
.home-cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wMiI+PHBhdGggZD0iTTM2IDM0djItaDJ2LTJoLTJ6bTAgNHYyaDJ2LTJoLTJ6bTAtOHYyaDJ2LTJoLTJ6Ii8+PC9nPjwvZz48L3N2Zz4=');
opacity: 0.3;
}
.home-cta__inner {
position: relative;
z-index: 1;
}
.home-cta h2 {
font-family: var(--font-heading);
font-size: 48px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 20px;
}
.home-cta p {
font-size: 20px;
color: var(--color-gray-400);
margin-bottom: 40px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.home-blog {
background-color: var(--color-black);
padding: 120px 0;
}
.home-blog__header {
text-align: center;
margin-bottom: 60px;
}
.home-blog__header h2 {
font-family: var(--font-heading);
font-size: 42px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 16px;
}
.home-blog__header p {
font-size: 18px;
color: var(--color-gray-400);
}
.home-blog__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.home-blog__card {
background-color: var(--color-dark);
border: 1px solid rgba(255, 255, 255, 0.05);
overflow: hidden;
transition: all 0.3s ease;
}
.home-blog__card:hover {
border-color: var(--color-gold);
transform: translateY(-10px);
}
.home-blog__card-image {
width: 100%;
height: 250px;
overflow: hidden;
}
.home-blog__card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.home-blog__card:hover .home-blog__card-image img {
transform: scale(1.1);
}
.home-blog__card-content {
padding: 30px;
}
.home-blog__card-meta {
display: flex;
gap: 20px;
margin-bottom: 16px;
font-size: 13px;
color: var(--color-gray-400);
}
.home-blog__card-title {
font-family: var(--font-heading);
font-size: 22px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 12px;
line-height: 1.4;
}
.home-blog__card-excerpt {
font-size: 15px;
color: var(--color-gray-400);
line-height: 1.7;
margin-bottom: 20px;
}
.home-blog__card-link {
color: var(--color-gold);
font-weight: 600;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 8px;
}
.home-blog__card-link:hover {
color: var(--color-gold-light);
}
.lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.95);
z-index: 9999;
align-items: center;
justify-content: center;
}
.lightbox.active {
display: flex;
}
.lightbox__close {
position: absolute;
top: 30px;
right: 30px;
width: 50px;
height: 50px;
background-color: rgba(255, 255, 255, 0.1);
border: none;
color: var(--color-white);
font-size: 30px;
cursor: pointer;
transition: all 0.3s ease;
z-index: 10001;
}
.lightbox__close:hover {
background-color: var(--color-gold);
color: var(--color-dark);
}
.lightbox__image {
max-width: 90%;
max-height: 90%;
object-fit: contain;
}
.lightbox__arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 60px;
height: 60px;
background-color: rgba(255, 255, 255, 0.1);
border: none;
color: var(--color-white);
font-size: 30px;
cursor: pointer;
transition: all 0.3s ease;
z-index: 10001;
}
.lightbox__arrow:hover {
background-color: var(--color-gold);
color: var(--color-dark);
}
.lightbox__arrow-prev {
left: 30px;
}
.lightbox__arrow-next {
right: 30px;
}
.lightbox__counter {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
color: var(--color-white);
font-size: 16px;
font-weight: 600;
background-color: rgba(13, 13, 13, 0.8);
padding: 10px 20px;
}
.lightbox__dots {
position: absolute;
bottom: 80px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
}
.lightbox__dot {
width: 10px;
height: 10px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
}
.lightbox__dot.active {
background-color: var(--color-gold);
transform: scale(1.3);
}
.services-hero {
min-height: 60vh;
background-color: var(--color-dark);
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding-top: 120px;
position: relative;
}
.services-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(13, 13, 13, 0.85) 0%, rgba(13, 13, 13, 0.7) 100%);
}
.services-hero__content {
position: relative;
z-index: 1;
}
.services-hero h1 {
font-family: var(--font-heading);
font-size: 56px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 20px;
}
.services-hero p {
font-size: 20px;
color: var(--color-gray-400);
max-width: 700px;
margin: 0 auto;
}
.services-grid {
background-color: var(--color-cream);
padding: 120px 0;
}
.services-grid__inner {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
}
.services-card {
background-color: var(--color-white);
padding: 50px 40px;
border: 1px solid rgba(26, 26, 26, 0.05);
transition: all 0.3s ease;
}
.services-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
border-color: var(--color-gold);
}
.services-card__icon {
width: 80px;
height: 80px;
margin-bottom: 24px;
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
display: flex;
align-items: center;
justify-content: center;
color: var(--color-white);
font-size: 36px;
}
.services-card h3 {
font-family: var(--font-heading);
font-size: 28px;
font-weight: 600;
color: var(--color-dark);
margin-bottom: 16px;
}
.services-card p {
font-size: 16px;
color: var(--color-gray-600);
line-height: 1.8;
margin-bottom: 24px;
}
.services-card ul {
margin-bottom: 24px;
}
.services-card li {
font-size: 15px;
color: var(--color-gray-600);
padding: 8px 0;
padding-left: 24px;
position: relative;
}
.services-card li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--color-gold);
font-weight: 600;
}
.service-hero {
min-height: 30vh;
background-color: var(--color-dark);
background-size: cover;
background-position: center;
display: flex;
align-items: center;
position: relative;
}
.service-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0.7) 100%);
}
.service-hero__content {
position: relative;
z-index: 1;
max-width: 800px;
}
.service-hero h1 {
font-family: var(--font-heading);
font-size: 56px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 24px;
}
.service-hero p {
font-size: 20px;
color: var(--color-gray-400);
line-height: 1.8;
}
.service-content {
background-color: var(--color-cream);
padding: 120px 0;
}
.service-content__inner {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 60px;
}
.service-content__main h2 {
font-family: var(--font-heading);
font-size: 36px;
font-weight: 600;
color: var(--color-dark);
margin-bottom: 20px;
}
.service-content__main p {
font-size: 16px;
color: var(--color-gray-600);
line-height: 1.8;
margin-bottom: 24px;
}
.service-features {
background-color: var(--color-white);
padding: 40px;
border: 1px solid rgba(26, 26, 26, 0.05);
}
.service-features h3 {
font-family: var(--font-heading);
font-size: 24px;
font-weight: 600;
color: var(--color-dark);
margin-bottom: 24px;
}
.service-features ul li {
font-size: 15px;
color: var(--color-gray-600);
padding: 12px 0;
padding-left: 28px;
border-bottom: 1px solid rgba(26, 26, 26, 0.05);
position: relative;
}
.service-features ul li:last-child {
border-bottom: none;
}
.service-features ul li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--color-gold);
font-weight: 600;
font-size: 18px;
}
.service-form {
background-color: var(--color-dark);
padding: 120px 0;
}
.service-form__inner {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.service-form h2 {
font-family: var(--font-heading);
font-size: 42px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 20px;
}
.service-form p {
font-size: 18px;
color: var(--color-gray-400);
margin-bottom: 48px;
}

/* ==========================================================================
   SERVICE SINGLE PAGE - Premium Dark Design
   ========================================================================== */

.service-main {
  background-color: var(--color-black);
}

/* Service Hero */
.service-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.4) 0%,
    rgba(13, 13, 13, 0.95) 100%
  );
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(201, 169, 98, 0.08) 0%,
    transparent 60%
  );
}

.service-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.service-hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.service-hero-subtitle {
  font-size: 20px;
  color: var(--color-gray-400);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Service Content */
.service-content {
  background: linear-gradient(180deg,
    var(--color-black) 0%,
    rgba(114, 47, 55, 0.05) 50%,
    var(--color-black) 100%
  );
  padding: 100px 0;
}

.service-content-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-main-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-content-block {
  background: linear-gradient(145deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 12px;
  padding: 48px;
}

.service-content-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 16px;
}

.service-content-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold) 0%, transparent 100%);
}

/* Service Features */
.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-feature-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(114, 47, 55, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 98, 0.1);
  transition: all 0.3s ease;
}

.service-feature-item:hover {
  background: rgba(114, 47, 55, 0.15);
  border-color: rgba(201, 169, 98, 0.25);
  transform: translateX(8px);
}

.service-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--color-burgundy) 0%, rgba(139, 58, 69, 0.5) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.service-feature-icon svg {
  stroke: var(--color-white);
}

.service-feature-content {
  flex: 1;
}

.service-feature-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.service-feature-description {
  font-size: 15px;
  color: var(--color-gray-400);
  line-height: 1.7;
  margin: 0;
}

/* Service Steps */
.service-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.service-step-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, var(--color-burgundy) 0%, rgba(139, 58, 69, 0.5) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
}

.service-step-content {
  flex: 1;
  padding-top: 8px;
}

.service-step-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.service-step-description {
  font-size: 15px;
  color: var(--color-gray-400);
  line-height: 1.7;
  margin: 0;
}

/* Service Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 120px;
}

.service-highlights {
  background: linear-gradient(145deg,
    rgba(114, 47, 55, 0.2) 0%,
    rgba(114, 47, 55, 0.1) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 12px;
  padding: 32px;
}

.service-sidebar-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.service-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--color-white);
}

.service-highlight-item svg {
  color: var(--color-gold);
  min-width: 16px;
}

/* Service Booking Form in Sidebar */
.service-booking-form {
  background: linear-gradient(145deg,
    rgba(18, 18, 18, 0.98) 0%,
    rgba(10, 10, 10, 0.98) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 12px;
  padding: 32px;
}

.service-booking-description {
  font-size: 14px;
  color: var(--color-gray-400);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Service FAQ */
.service-faq {
  background: var(--color-dark);
  padding: 100px 0;
}

.service-faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 48px;
}

.service-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-faq-item:hover,
.service-faq-item.is-open {
  border-color: rgba(201, 169, 98, 0.3);
  background: rgba(114, 47, 55, 0.1);
}

.service-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-white);
  text-align: left;
}

.service-faq-icon {
  color: var(--color-gold);
  transition: transform 0.3s ease;
}

.service-faq-item.is-open .service-faq-icon {
  transform: rotate(180deg);
}

.service-faq-answer {
  padding: 0 24px 24px;
}

.service-faq-answer p {
  font-size: 15px;
  color: var(--color-gray-400);
  line-height: 1.8;
  margin: 0;
}

/* Service Related */
.service-related {
  background: linear-gradient(180deg,
    var(--color-black) 0%,
    rgba(114, 47, 55, 0.08) 100%
  );
  padding: 100px 0;
}

.service-related-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-related-card {
  background: linear-gradient(145deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
}

.service-related-card:hover {
  transform: translateY(-8px);
  border-color: rgba(114, 47, 55, 0.5);
  box-shadow: 0 20px 50px rgba(114, 47, 55, 0.2);
}

.service-related-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(114, 47, 55, 0.25) 0%, rgba(139, 58, 69, 0.15) 100%);
  border: 2px solid rgba(201, 169, 98, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.service-related-icon svg {
  stroke: var(--color-white);
}

.service-related-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 12px;
}

.service-related-description {
  font-size: 15px;
  color: var(--color-gray-400);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-related-link:hover {
  color: var(--color-gold-light);
}

.service-related-link svg {
  transition: transform 0.3s ease;
}

.service-related-link:hover svg {
  transform: translateX(4px);
}

/* Service CTA */
.service-cta {
  background: linear-gradient(135deg,
    var(--color-burgundy) 0%,
    var(--color-dark) 100%
  );
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.service-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 169, 98, 0.1) 0%,
    transparent 70%
  );
}

.service-cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.service-cta-content {
  text-align: center;
}

.service-cta-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
}

.service-cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.service-cta-btn {
  display: inline-block;
  padding: 18px 48px;
  background: var(--color-burgundy);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 169, 98, 0.3);
}

.service-cta-btn:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
  border-color: var(--color-gold);
}

/* ==========================================================================
   SERVICES LIST PAGE - Premium Dark Design
   ========================================================================== */

.services-main {
  background-color: var(--color-black);
}

/* Services Hero */
.services-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.4) 0%,
    rgba(13, 13, 13, 0.95) 100%
  );
}

.services-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(201, 169, 98, 0.08) 0%,
    transparent 60%
  );
}

.services-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.services-hero-subtitle {
  font-size: 20px;
  color: var(--color-gray-400);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Services Content */
.services-content {
  background: linear-gradient(180deg,
    var(--color-black) 0%,
    rgba(114, 47, 55, 0.05) 50%,
    var(--color-black) 100%
  );
  padding: 100px 0;
}

.services-content-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.services-card {
  background: linear-gradient(145deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 12px;
  padding: 48px 36px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.services-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.services-card:hover {
  transform: translateY(-12px);
  border-color: rgba(114, 47, 55, 0.5);
  background: linear-gradient(145deg, rgba(114, 47, 55, 0.15) 0%, rgba(114, 47, 55, 0.05) 100%);
  box-shadow: 0 25px 60px rgba(114, 47, 55, 0.25);
}

.services-card:hover::before {
  opacity: 1;
}

.services-card-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, rgba(114, 47, 55, 0.25) 0%, rgba(139, 58, 69, 0.15) 100%);
  border: 2px solid rgba(201, 169, 98, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: all 0.4s ease;
}

.services-card:hover .services-card-icon {
  background: linear-gradient(135deg, rgba(114, 47, 55, 0.45) 0%, rgba(139, 58, 69, 0.25) 100%);
  border-color: var(--color-gold);
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.3);
}

.services-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  text-align: center;
  transition: color 0.3s ease;
}

.services-card:hover .services-card-title {
  color: var(--color-gold-light);
}

.services-card-description {
  font-size: 15px;
  color: var(--color-gray-400);
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: center;
}

.services-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-gray-400);
}

.services-feature-item svg {
  color: var(--color-gold);
  min-width: 16px;
}

.services-card-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
  transition: all 0.3s ease;
}

.services-card-link:hover {
  color: var(--color-gold-light);
}

.services-card-link svg {
  transition: transform 0.3s ease;
}

.services-card-link:hover svg {
  transform: translateX(4px);
}

/* Services CTA */
.services-cta {
  background: linear-gradient(135deg,
    var(--color-burgundy) 0%,
    var(--color-dark) 100%
  );
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 169, 98, 0.1) 0%,
    transparent 70%
  );
}

.services-cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.services-cta-content {
  text-align: center;
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
}

.services-cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.services-cta-btn {
  display: inline-block;
  padding: 18px 48px;
  background: var(--color-gold);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.services-cta-btn:hover {
  background: var(--color-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

/* Responsive for Service Pages */
@media (max-width: 1024px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

  .service-related-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-hero-title,
  .services-hero-title {
    font-size: 40px;
  }

  .service-hero-subtitle,
  .services-hero-subtitle {
    font-size: 17px;
  }

  .service-content-block {
    padding: 32px 24px;
  }

  .service-content-title,
  .service-section-title {
    font-size: 28px;
  }

  .service-related-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-cta-title,
  .services-cta-title {
    font-size: 32px;
  }
}

.fleet-hero {
min-height: 60vh;
background-color: var(--color-dark);
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding-top: 90px;
position: relative;
}
.fleet-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(13, 13, 13, 0.85) 0%, rgba(13, 13, 13, 0.7) 100%);
}
.fleet-hero__content {
position: relative;
z-index: 1;
}
.fleet-hero h1 {
font-family: var(--font-heading);
font-size: 56px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 20px;
}
.fleet-hero p {
font-size: 20px;
color: var(--color-gray-400);
max-width: 700px;
margin: 0 auto;
}
.fleet-filters {
background-color: var(--color-black);
padding: 40px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.fleet-filters__inner {
display: flex;
justify-content: center;
gap: 20px;
}
.fleet-filters__btn {
padding: 12px 24px;
background-color: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: var(--color-white);
font-size: 15px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}
.fleet-filters__btn:hover, .fleet-filters__btn.active {
background-color: var(--color-gold);
border-color: var(--color-gold);
color: var(--color-dark);
}
.fleet-grid {
background-color: var(--color-black);
padding: 80px 0 120px;
}
.fleet-grid__inner {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.fleet-card {
background-color: var(--color-dark);
border: 1px solid rgba(255, 255, 255, 0.05);
overflow: hidden;
transition: all 0.3s ease;
}
.fleet-card:hover {
border-color: var(--color-gold);
transform: translateY(-10px);
}
.fleet-card__image {
width: 100%;
height: 280px;
overflow: hidden;
position: relative;
}
.fleet-card__image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-card__image img {
transform: scale(1.1);
}
.fleet-card__content {
padding: 30px;
}
.fleet-card__title {
font-family: var(--font-heading);
font-size: 24px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 16px;
}
.fleet-card__meta {
display: flex;
gap: 24px;
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.fleet-card__meta-item {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
color: var(--color-gray-400);
}
.fleet-card__features {
margin-bottom: 24px;
}
.fleet-card__features li {
font-size: 14px;
color: var(--color-gray-400);
padding: 6px 0;
padding-left: 20px;
position: relative;
}
.fleet-card__features li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--color-gold);
font-weight: 600;
}
.blog-hero {
min-height: 50vh;
background-color: var(--color-dark);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding-top: 90px;
}
.blog-hero h1 {
font-family: var(--font-heading);
font-size: 56px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 20px;
}
.blog-hero p {
font-size: 20px;
color: var(--color-gray-400);
max-width: 700px;
margin: 0 auto;
}
.blog-grid {
background-color: var(--color-black);
padding: 80px 0 120px;
}
.blog-grid__inner {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 60px;
}
.blog-grid__posts {
display: grid;
gap: 40px;
}
.blog-card {
background-color: var(--color-dark);
border: 1px solid rgba(255, 255, 255, 0.05);
overflow: hidden;
transition: all 0.3s ease;
display: grid;
grid-template-columns: 300px 1fr;
}
.blog-card:hover {
border-color: var(--color-gold);
}
.blog-card__image {
width: 100%;
height: 100%;
overflow: hidden;
}
.blog-card__image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__image img {
transform: scale(1.1);
}
.blog-card__content {
padding: 30px;
}
.blog-card__meta {
display: flex;
gap: 20px;
margin-bottom: 12px;
font-size: 13px;
color: var(--color-gray-400);
}
.blog-card__title {
font-family: var(--font-heading);
font-size: 26px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 12px;
line-height: 1.3;
}
.blog-card__excerpt {
font-size: 15px;
color: var(--color-gray-400);
line-height: 1.7;
margin-bottom: 20px;
}
.blog-card__link {
color: var(--color-gold);
font-weight: 600;
font-size: 14px;
display: inline-flex;
align-items: center;
gap: 8px;
}
.blog-card__link:hover {
color: var(--color-gold-light);
}
.blog-sidebar {
background-color: var(--color-dark);
padding: 40px;
border: 1px solid rgba(255, 255, 255, 0.05);
height: fit-content;
}
.blog-sidebar h3 {
font-family: var(--font-heading);
font-size: 24px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 24px;
}
.blog-sidebar ul li {
margin-bottom: 12px;
}
.blog-sidebar ul li a {
color: var(--color-gray-400);
font-size: 15px;
display: flex;
justify-content: space-between;
padding: 8px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.blog-sidebar ul li a:hover {
color: var(--color-gold);
}
.post-hero {
min-height: 60vh;
background-color: var(--color-dark);
background-size: cover;
background-position: center;
display: flex;
align-items: center;
padding-top: 90px;
position: relative;
}
.post-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0.6) 100%);
}
.post-hero__content {
position: relative;
z-index: 1;
max-width: 900px;
}
.post-hero__meta {
display: flex;
gap: 20px;
margin-bottom: 20px;
font-size: 14px;
color: var(--color-gray-400);
}
.post-hero h1 {
font-family: var(--font-heading);
font-size: 56px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 20px;
line-height: 1.2;
}
.post-hero__excerpt {
font-size: 20px;
color: var(--color-gray-400);
line-height: 1.7;
}
.post-content {
background-color: var(--color-black);
padding: 80px 0 120px;
}
.post-content__inner {
max-width: 900px;
margin: 0 auto;
}
.post-content__main {
background-color: var(--color-dark);
padding: 60px;
border: 1px solid rgba(255, 255, 255, 0.05);
}
.post-content__main h2 {
font-family: var(--font-heading);
font-size: 36px;
font-weight: 600;
color: var(--color-white);
margin: 40px 0 20px;
}
.post-content__main h3 {
font-family: var(--font-heading);
font-size: 28px;
font-weight: 600;
color: var(--color-white);
margin: 32px 0 16px;
}
.post-content__main p {
font-size: 17px;
color: var(--color-gray-400);
line-height: 1.8;
margin-bottom: 24px;
}
.post-content__main ul, .post-content__main ol {
margin-bottom: 24px;
padding-left: 24px;
}
.post-content__main li {
font-size: 17px;
color: var(--color-gray-400);
line-height: 1.8;
margin-bottom: 12px;
}
.post-content__main img {
width: 100%;
height: auto;
margin: 32px 0;
}
.post-author {
background-color: var(--color-dark);
padding: 40px;
border: 1px solid rgba(255, 255, 255, 0.05);
margin-top: 40px;
display: flex;
gap: 30px;
}
.post-author__avatar {
width: 100px;
height: 100px;
border-radius: 50%;
flex-shrink: 0;
}
.post-author__info h4 {
font-family: var(--font-heading);
font-size: 22px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 8px;
}
.post-author__info p {
font-size: 15px;
color: var(--color-gray-400);
line-height: 1.7;
}
.about-hero {
min-height: 70vh;
background-color: var(--color-dark);
background-size: cover;
background-position: center;
display: flex;
align-items: center;
padding-top: 90px;
position: relative;
}
.about-hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0.7) 100%);
}
.about-hero__content {
position: relative;
z-index: 1;
max-width: 800px;
text-align: center;
margin: 0 auto;
}
.about-hero h1 {
font-family: var(--font-heading);
font-size: 56px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 24px;
}
.about-hero p {
font-size: 20px;
color: var(--color-gray-400);
line-height: 1.8;
}
.about-story {
background-color: var(--color-cream);
padding: 120px 0;
}
.about-story__inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.about-story__content h2 {
font-family: var(--font-heading);
font-size: 42px;
font-weight: 600;
color: var(--color-dark);
margin-bottom: 24px;
}
.about-story__content p {
font-size: 17px;
color: var(--color-gray-600);
line-height: 1.8;
margin-bottom: 20px;
}
.about-story__image img {
width: 100%;
height: auto;
}
.about-mission {
background-color: var(--color-dark);
padding: 120px 0;
}
.about-mission__inner {
max-width: 900px;
margin: 0 auto;
text-align: center;
}
.about-mission h2 {
font-family: var(--font-heading);
font-size: 42px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 24px;
}
.about-mission p {
font-size: 18px;
color: var(--color-gray-400);
line-height: 1.8;
margin-bottom: 60px;
}
.about-mission__values {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
}
.about-mission__value {
text-align: center;
}
.about-mission__value-icon {
width: 70px;
height: 70px;
margin: 0 auto 20px;
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
display: flex;
align-items: center;
justify-content: center;
color: var(--color-white);
font-size: 32px;
border-radius: 50%;
}
.about-mission__value h3 {
font-family: var(--font-heading);
font-size: 22px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 12px;
}
.about-mission__value p {
font-size: 15px;
color: var(--color-gray-400);
line-height: 1.7;
margin: 0;
}
.about-stats {
background-color: var(--color-black);
padding: 100px 0;
}
.about-stats__grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
}
.about-stats__item {
text-align: center;
padding: 40px 20px;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.about-stats__number {
font-family: var(--font-heading);
font-size: 56px;
font-weight: 600;
color: var(--color-gold);
margin-bottom: 12px;
}
.about-stats__label {
font-size: 16px;
color: var(--color-gray-400);
}
.contact-hero {
min-height: 50vh;
background-color: var(--color-dark);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding-top: 90px;
}
.contact-hero h1 {
font-family: var(--font-heading);
font-size: 56px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 20px;
}
.contact-hero p {
font-size: 20px;
color: var(--color-gray-400);
max-width: 700px;
margin: 0 auto;
}
.contact-content {
background-color: var(--color-black);
padding: 80px 0 120px;
}
.contact-content__inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}
.contact-form {
background-color: var(--color-dark);
padding: 50px;
border: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-form h2 {
font-family: var(--font-heading);
font-size: 32px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 32px;
}
.contact-info {
display: flex;
flex-direction: column;
gap: 40px;
}
.contact-info__item {
padding: 40px;
background-color: var(--color-dark);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-info__item h3 {
font-family: var(--font-heading);
font-size: 22px;
font-weight: 600;
color: var(--color-gold);
margin-bottom: 16px;
}
.contact-info__item p {
font-size: 16px;
color: var(--color-gray-400);
line-height: 1.7;
margin: 0;
}
.contact-info__item a {
color: var(--color-white);
font-weight: 500;
}
.contact-info__item a:hover {
color: var(--color-gold);
}
.contact-map {
background-color: var(--color-dark);
padding: 0;
}
.contact-map iframe {
width: 100%;
height: 500px;
border: none;
filter: grayscale(100%) invert(90%);
}
.thankyou-hero {
min-height: 70vh;
background-color: var(--color-dark);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding-top: 90px;
}
.thankyou-hero__icon {
width: 100px;
height: 100px;
margin: 0 auto 30px;
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
display: flex;
align-items: center;
justify-content: center;
color: var(--color-white);
font-size: 50px;
border-radius: 50%;
}
.thankyou-hero h1 {
font-family: var(--font-heading);
font-size: 56px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 20px;
}
.thankyou-hero p {
font-size: 20px;
color: var(--color-gray-400);
max-width: 700px;
margin: 0 auto 40px;
}
.thankyou-content {
background-color: var(--color-black);
padding: 80px 0 120px;
}
.thankyou-content__inner {
max-width: 1000px;
margin: 0 auto;
}
.thankyou-steps {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}
.thankyou-step {
text-align: center;
padding: 40px 20px;
background-color: var(--color-dark);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.thankyou-step__number {
width: 60px;
height: 60px;
margin: 0 auto 20px;
background-color: var(--color-gold);
display: flex;
align-items: center;
justify-content: center;
color: var(--color-dark);
font-size: 28px;
font-weight: 700;
border-radius: 50%;
}
.thankyou-step h3 {
font-family: var(--font-heading);
font-size: 20px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 12px;
}
.thankyou-step p {
font-size: 14px;
color: var(--color-gray-400);
line-height: 1.6;
margin: 0;
}
.error-hero {
min-height: 70vh;
background-color: var(--color-dark);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding-top: 90px;
}
.error-hero__number {
font-family: var(--font-heading);
font-size: 180px;
font-weight: 700;
color: var(--color-gold);
line-height: 1;
margin-bottom: 20px;
}
.error-hero h1 {
font-family: var(--font-heading);
font-size: 42px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 20px;
}
.error-hero p {
font-size: 18px;
color: var(--color-gray-400);
max-width: 600px;
margin: 0 auto 40px;
}
.error-content {
background-color: var(--color-black);
padding: 80px 0 120px;
}
.error-content__inner {
max-width: 900px;
margin: 0 auto;
text-align: center;
}
.error-content h2 {
font-family: var(--font-heading);
font-size: 32px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 40px;
}
.error-links {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.error-link {
padding: 30px;
background-color: var(--color-dark);
border: 1px solid rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
}
.error-link:hover {
border-color: var(--color-gold);
transform: translateY(-5px);
}
.error-link h3 {
font-family: var(--font-heading);
font-size: 20px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 8px;
}
.error-link p {
font-size: 14px;
color: var(--color-gray-400);
margin: 0;
}

/* ==========================================================================
   BURGUNDY THEME OVERRIDES - Austrian Color Scheme
   Full theme integration with #722F37 burgundy as primary accent
   ========================================================================== */

/* Burgundy Color Variables Override */
:root {
  --color-gold: #722F37 !important;
  --color-gold-light: #8B3A45 !important;
  --color-gold-dark: #5A2529 !important;
  --color-accent-gold: #C9A962;
  --color-accent-gold-light: #D4BC7C;
}

/* ==========================================================================
   BUTTONS - Burgundy Theme
   ========================================================================== */

/* Primary Gold Button → Burgundy */
.btn-gold {
  background: linear-gradient(135deg, #722F37 0%, #8B3A45 100%) !important;
  color: var(--color-white) !important;
  border-color: #722F37 !important;
  box-shadow: 0 4px 15px rgba(114, 47, 55, 0.3) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #8B3A45 0%, #722F37 100%);
  border-color: #8B3A45;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(114, 47, 55, 0.5);
}

.btn-gold:active {
  background: linear-gradient(135deg, #5A2529 0%, #722F37 100%) !important;
  border-color: #5A2529 !important;
  transform: translateY(0);
}

/* Outline Button - White with burgundy hover */
.btn-outline {
  border-color: var(--color-white) !important;
  color: var(--color-white) !important;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #722F37 0%, #8B3A45 100%) !important;
  border-color: #722F37 !important;
  color: var(--color-white) !important;
  box-shadow: 0 4px 15px rgba(114, 47, 55, 0.4);
}

/* Burgundy Button Variant */
.btn-burgundy {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, #722F37 0%, #8B3A45 100%);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #722F37;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 15px rgba(114, 47, 55, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-burgundy:hover {
  background: linear-gradient(135deg, #8B3A45 0%, #722F37 100%);
  border-color: #8B3A45;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(114, 47, 55, 0.5);
}

.btn-outline-burgundy {
  display: inline-block;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--color-burgundy);
  border: 2px solid var(--color-burgundy);
  transition: all 0.3s ease;
}

.btn-outline-burgundy:hover {
  background: linear-gradient(135deg, #722F37 0%, #8B3A45 100%);
  color: var(--color-white);
  border-color: #8B3A45;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(114, 47, 55, 0.3);
}

/* ==========================================================================
   HERO SECTION - Burgundy Gradient
   ========================================================================== */

.home-hero::before {
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.85) 0%,
    rgba(13, 13, 13, 0.75) 50%,
    rgba(26, 26, 26, 0.85) 100%
  ) !important;
}

.home-hero__content h1 {
  text-shadow: 0 2px 20px rgba(114, 47, 55, 0.3);
}

.home-hero__feature-icon {
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.25) 0%,
    rgba(139, 58, 69, 0.15) 100%
  ) !important;
  border: 1px solid rgba(114, 47, 55, 0.4) !important;
  color: #D4BC7C !important;
}

.home-hero__content .accent {
  color: #C9A962 !important;
  text-shadow: 0 2px 10px rgba(114, 47, 55, 0.5);
}

.home-hero__form {
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.15) 0%,
    rgba(13, 13, 13, 0.9) 100%
  ) !important;
  border: 1px solid rgba(114, 47, 55, 0.4) !important;
  box-shadow: 0 8px 32px rgba(114, 47, 55, 0.2);
}

.home-hero__form h3 {
  color: #C9A962 !important;
  text-shadow: 0 2px 10px rgba(114, 47, 55, 0.6);
}

/* ==========================================================================
   HEADER - Burgundy Scrolled State
   ========================================================================== */

.header.scrolled {
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.98) 0%,
    rgba(13, 13, 13, 0.98) 50%,
    rgba(26, 26, 26, 0.98) 100%
  ) !important;
  backdrop-filter: blur(10px) !important;
  border-bottom: 2px solid rgba(114, 47, 55, 0.5) !important;
  box-shadow: 0 4px 30px rgba(114, 47, 55, 0.4) !important;
}

.lang-switcher a.active {
  color: #722F37 !important;
  font-weight: 600;
}

.mobile-menu-footer .btn-gold {
  width: 100%;
}

.mobile-menu-toggle:hover span {
  background-color: #C9A962;
}

.mobile-nav-list li a:hover {
  color: #722F37 !important;
}

/* ==========================================================================
   SERVICES SECTION - Burgundy Accents
   ========================================================================== */

.home-services {
  background: linear-gradient(180deg,
    var(--color-black) 0%,
    rgba(114, 47, 55, 0.05) 50%,
    var(--color-black) 100%
  );
}

.home-services__card {
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.home-services__card:hover {
  border-color: rgba(114, 47, 55, 0.5);
  box-shadow: 0 8px 30px rgba(114, 47, 55, 0.2);
  transform: translateY(-8px);
}

.home-services__card-icon {
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.15) 0%,
    rgba(139, 58, 69, 0.1) 100%
  ) !important;
  color: #C9A962 !important;
  border: 1px solid rgba(114, 47, 55, 0.2);
  transition: all 0.4s ease;
}

.home-services__card:hover .home-services__card-icon {
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.35) 0%,
    rgba(139, 58, 69, 0.25) 100%
  ) !important;
  color: var(--color-white) !important;
  border-color: rgba(114, 47, 55, 0.5);
  box-shadow: 0 4px 20px rgba(114, 47, 55, 0.4);
}

.home-services__card a {
  color: #722F37 !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.home-services__card a:hover {
  color: #8B3A45 !important;
}

.home-services__card a svg {
  stroke: #ffffff !important;
}

/* ==========================================================================
   FLEET SECTION - Burgundy Background
   ========================================================================== */

.home-fleet {
  background: linear-gradient(180deg,
    rgba(114, 47, 55, 0.08) 0%,
    rgba(13, 13, 13, 0.95) 100%
  );
  position: relative;
}

.home-fleet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(114, 47, 55, 0.6) 50%,
    transparent 100%
  );
}

.home-fleet__card {
  border: 1px solid rgba(114, 47, 55, 0.2);
  transition: all 0.4s ease;
}

.home-fleet__card:hover {
  border-color: rgba(114, 47, 55, 0.6);
  box-shadow: 0 10px 40px rgba(114, 47, 55, 0.25);
}

.home-fleet__card-title {
  color: #C9A962 !important;
  transition: color 0.3s ease;
}

.home-fleet__card:hover .home-fleet__card-title {
  color: #722F37 !important;
}

.home-fleet__card-meta-item svg {
  color: #722F37 !important;
}

.home-fleet__arrow {
  border-color: rgba(114, 47, 55, 0.3) !important;
  color: #C9A962;
  transition: all 0.3s ease;
}

.home-fleet__arrow:hover {
  background: linear-gradient(135deg, #722F37 0%, #8B3A45 100%) !important;
  border-color: #722F37 !important;
  color: var(--color-white) !important;
  box-shadow: 0 4px 15px rgba(114, 47, 55, 0.4);
}

/* ==========================================================================
   WHY CHOOSE SECTION - Burgundy Icons
   ========================================================================== */

.home-why {
  background: linear-gradient(180deg,
    var(--color-dark) 0%,
    rgba(114, 47, 55, 0.05) 100%
  );
}

.home-why__item-icon {
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.2) 0%,
    rgba(139, 58, 69, 0.1) 100%
  ) !important;
  border: 2px solid rgba(114, 47, 55, 0.3) !important;
  color: #C9A962 !important;
  transition: all 0.4s ease;
}

.home-why__item:hover .home-why__item-icon {
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.5) 0%,
    rgba(139, 58, 69, 0.4) 100%
  ) !important;
  border-color: #722F37 !important;
  color: var(--color-white) !important;
  box-shadow: 0 8px 30px rgba(114, 47, 55, 0.5);
  transform: scale(1.15) rotate(5deg);
}

/* ==========================================================================
   TESTIMONIALS SECTION - Burgundy Cards
   ========================================================================== */

.home-testimonials {
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.12) 0%,
    rgba(13, 13, 13, 0.95) 100%
  );
}

.home-testimonials__card {
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.15) 0%,
    rgba(13, 13, 13, 0.8) 100%
  );
  border: 1px solid rgba(114, 47, 55, 0.3);
  box-shadow: 0 8px 32px rgba(114, 47, 55, 0.2);
}

.home-testimonials__stars svg {
  color: #722F37 !important;
  filter: drop-shadow(0 2px 6px rgba(114, 47, 55, 0.4));
}

.home-testimonials__quote svg {
  color: #722F37 !important;
  opacity: 0.3;
}

/* ==========================================================================
   CTA SECTION - Burgundy Background
   ========================================================================== */

.home-cta {
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.95) 0%,
    rgba(13, 13, 13, 0.98) 50%,
    rgba(114, 47, 55, 0.95) 100%
  );
  position: relative;
}

.home-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" x="50" y="50" fill="rgba(255,255,255,0.02)"/></svg>');
  background-size: 50px 50px;
}

.home-cta__content h2 {
  color: var(--color-white);
  text-shadow: 0 4px 20px rgba(114, 47, 55, 0.8);
}

.home-cta__btn--primary {
  background: linear-gradient(135deg, #722F37 0%, #8B3A45 100%) !important;
  color: var(--color-white) !important;
  border: 2px solid #722F37 !important;
  box-shadow: 0 4px 20px rgba(114, 47, 55, 0.4);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.home-cta__btn--primary:hover {
  background: linear-gradient(135deg, #8B3A45 0%, #722F37 100%) !important;
  border-color: #8B3A45 !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(114, 47, 55, 0.6);
}

.home-cta__btn--secondary {
  background-color: transparent !important;
  color: var(--color-white) !important;
  border: 2px solid var(--color-white) !important;
}

.home-cta__btn--secondary:hover {
  background: rgba(201, 169, 98, 0.15) !important;
  border-color: #C9A962 !important;
  color: #C9A962 !important;
  box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

/* ==========================================================================
   BLOG SECTION - Burgundy Cards
   ========================================================================== */

.home-blog__card {
  border: 1px solid rgba(114, 47, 55, 0.2);
  transition: all 0.4s ease;
}

.home-blog__card:hover {
  border-color: rgba(114, 47, 55, 0.6);
  box-shadow: 0 10px 40px rgba(114, 47, 55, 0.2);
  transform: translateY(-5px);
}

.home-blog__card-link {
  color: #722F37 !important;
  font-weight: 600;
}

.home-blog__card-link:hover {
  color: #8B3A45 !important;
}

.home-blog__card-link svg {
  stroke: #722F37 !important;
}

.home-blog__card-title a:hover {
  color: #722F37 !important;
}

/* ==========================================================================
   GALLERY SECTION - Burgundy Overlay
   ========================================================================== */

.home-gallery__overlay {
  background: linear-gradient(135deg,
    rgba(114, 47, 55, 0.85) 0%,
    rgba(13, 13, 13, 0.9) 100%
  ) !important;
}

.home-gallery__zoom {
  border: 2px solid rgba(114, 47, 55, 0.5);
  background: rgba(114, 47, 55, 0.2);
  color: #C9A962;
  backdrop-filter: blur(10px);
}

.home-gallery__zoom:hover {
  background: linear-gradient(135deg, #722F37 0%, #8B3A45 100%) !important;
  border-color: #722F37 !important;
  color: var(--color-white) !important;
  box-shadow: 0 4px 15px rgba(114, 47, 55, 0.5);
}

/* ==========================================================================
   FOOTER - Burgundy Background
   ========================================================================== */

.footer {
  background: linear-gradient(180deg,
    rgba(114, 47, 55, 0.15) 0%,
    var(--color-dark) 50%,
    #0A0A0A 100%
  ) !important;
  border-top: 2px solid rgba(114, 47, 55, 0.4) !important;
}

.footer-about h3,
.footer-col h4 {
  color: #C9A962 !important;
  text-shadow: 0 2px 10px rgba(114, 47, 55, 0.4);
}

.footer-social a {
  border: 1px solid rgba(114, 47, 55, 0.3);
  background: rgba(114, 47, 55, 0.1);
}

.footer-social a:hover {
  background: linear-gradient(135deg, #722F37 0%, #8B3A45 100%) !important;
  border-color: #722F37 !important;
  color: var(--color-white) !important;
  box-shadow: 0 4px 15px rgba(114, 47, 55, 0.5);
}

.footer-col ul li a:hover {
  color: #722F37 !important;
}

.footer-legal a:hover {
  color: #722F37 !important;
}

/* ==========================================================================
   FORMS - Burgundy Focus States
   ========================================================================== */

.vl-form-input:focus,
.vl-form-textarea:focus,
.vl-form-select:focus {
  border-color: #722F37 !important;
  box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.2) !important;
  background-color: rgba(114, 47, 55, 0.05) !important;
}

.vl-form-label {
  color: var(--color-cream) !important;
}

.vl-required {
  color: #8B3A45 !important;
  font-weight: 700;
}

.vl-form-checkbox {
  border-color: #722F37 !important;
}

.vl-form-checkbox:checked {
  background: linear-gradient(135deg, #722F37 0%, #8B3A45 100%) !important;
  border-color: #722F37 !important;
}

.vl-form-checkbox:focus {
  box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.3) !important;
}

.vl-form-checkbox-label a {
  color: #C9A962 !important;
}

.vl-form-checkbox-label a:hover {
  color: #722F37 !important;
}

.vl-btn-primary {
  background: linear-gradient(135deg, #722F37 0%, #8B3A45 100%) !important;
  border-color: #722F37 !important;
  color: var(--color-white) !important;
  box-shadow: 0 4px 15px rgba(114, 47, 55, 0.4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.vl-btn-primary:hover {
  background: linear-gradient(135deg, #8B3A45 0%, #722F37 100%);
  border-color: #8B3A45;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(114, 47, 55, 0.5);
}

.vl-btn-primary:active {
  background: linear-gradient(135deg, #5A2529 0%, #722F37 100%) !important;
}

.vl-btn-primary:disabled {
  background: rgba(114, 47, 55, 0.3) !important;
  border-color: rgba(114, 47, 55, 0.3) !important;
  cursor: not-allowed;
}

.vl-form-message--success {
  background-color: rgba(114, 47, 55, 0.15) !important;
  border-color: rgba(114, 47, 55, 0.4) !important;
  color: #C9A962 !important;
}

/* ==========================================================================
   PARTNERS SECTION - Burgundy Borders
   ========================================================================== */

.home-partners__logo {
  border-color: rgba(114, 47, 55, 0.2);
}

.home-partners__logo:hover {
  border-color: rgba(114, 47, 55, 0.5);
  box-shadow: 0 4px 15px rgba(114, 47, 55, 0.2);
}

/* ==========================================================================
   GLOBAL ELEMENTS - Burgundy Accents
   ========================================================================== */

a.text-gold,
.text-gold {
  color: #722F37 !important;
}

.accent-line {
  background: linear-gradient(90deg,
    transparent 0%,
    #722F37 50%,
    transparent 100%
  );
  height: 2px;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(114, 47, 55, 0.5) 25%,
    rgba(201, 169, 98, 0.5) 50%,
    rgba(114, 47, 55, 0.5) 75%,
    transparent 100%
  );
}

.burgundy-glow {
  box-shadow: 0 0 40px rgba(114, 47, 55, 0.3),
              0 0 80px rgba(114, 47, 55, 0.15);
}

/* ==========================================================================
   SCROLLBAR & SELECTION - Burgundy Theme
   ========================================================================== */

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #722F37 0%, #8B3A45 100%);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #8B3A45 0%, #722F37 100%);
}

::selection {
  background-color: rgba(114, 47, 55, 0.3);
  color: var(--color-white);
}

::-moz-selection {
  background-color: rgba(114, 47, 55, 0.3);
  color: var(--color-white);
}

/* ==========================================================================
   ANIMATIONS - Burgundy Theme
   ========================================================================== */

.vl-btn-loader {
  border-color: var(--color-white) !important;
  border-top-color: transparent !important;
}

@keyframes burgundy-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(114, 47, 55, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(114, 47, 55, 0);
  }
}

.btn-gold:focus,
.vl-btn-primary:focus {
  animation: burgundy-pulse 2s infinite;
}

/* ==========================================================================
   RESPONSIVE - Burgundy Theme
   ========================================================================== */

@media (max-width: 768px) {
  .home-hero::before {
    background: linear-gradient(135deg,
      rgba(114, 47, 55, 0.92) 0%,
      rgba(13, 13, 13, 0.85) 100%
    ) !important;
  }

  .btn-gold,
  .vl-btn-primary,
  .btn-burgundy,
  .btn-outline-burgundy {
    padding: 14px 24px;
    font-size: 15px;
  }

  .home-hero__feature-icon {
    width: 40px;
    height: 40px;
  }

  .home-why__item-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .btn-gold,
  .vl-btn-primary,
  .btn-burgundy {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Fleet CTA Section */
.fleet-cta {
position: relative;
padding: 120px 0;
background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-black) 100%);
text-align: center;
}
.fleet-cta__overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('../images/cta-bg.jpg') center/cover no-repeat;
opacity: 0.1;
}
.fleet-cta__content {
position: relative;
z-index: 1;
max-width: 700px;
margin: 0 auto;
}
.fleet-cta__content h2 {
font-family: var(--font-heading);
font-size: 42px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 20px;
}
.fleet-cta__content p {
font-size: 18px;
color: var(--color-gray-400);
margin-bottom: 40px;
}
.fleet-card__actions {
display: flex;
gap: 12px;
margin-top: 24px;
}
.fleet-card__actions .btn-outline {
flex: 1;
padding: 12px 20px;
background: transparent;
border: 1px solid var(--color-gold);
color: var(--color-gold);
text-align: center;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
}
.fleet-card__actions .btn-outline:hover {
background: var(--color-gold);
color: var(--color-dark);
}
.fleet-card__actions .btn-gold {
flex: 1;
text-align: center;
font-size: 14px;
}
.fleet-empty {
grid-column: 1 / -1;
text-align: center;
padding: 80px 20px;
color: var(--color-gray-400);
}

/* About Team Section */
.about-team {
background-color: var(--color-black);
padding: 100px 0;
}
.about-team__header {
text-align: center;
margin-bottom: 60px;
}
.about-team__header h2 {
font-family: var(--font-heading);
font-size: 42px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 16px;
}
.about-team__header p {
font-size: 18px;
color: var(--color-gray-400);
}
.about-team__content {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.about-team__content p {
font-size: 17px;
color: var(--color-gray-400);
line-height: 1.8;
}

/* About Certifications Section */
.about-certifications {
background-color: var(--color-dark);
padding: 80px 0;
}
.about-certifications h2 {
font-family: var(--font-heading);
font-size: 32px;
font-weight: 600;
color: var(--color-white);
text-align: center;
margin-bottom: 40px;
}
.about-certifications__list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
list-style: none;
}
.about-certifications__list li {
display: flex;
align-items: center;
gap: 12px;
color: var(--color-gray-400);
font-size: 16px;
}
.about-certifications__list li svg {
color: var(--color-gold);
flex-shrink: 0;
}

/* About CTA Section */
.about-cta {
position: relative;
padding: 120px 0;
background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-black) 100%);
text-align: center;
}
.about-cta__overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('../images/cta-bg.jpg') center/cover no-repeat;
opacity: 0.1;
}
.about-cta__content {
position: relative;
z-index: 1;
max-width: 700px;
margin: 0 auto;
}
.about-cta__content h2 {
font-family: var(--font-heading);
font-size: 42px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 20px;
}
.about-cta__content p {
font-size: 18px;
color: var(--color-gray-400);
margin-bottom: 40px;
}

/* Contact Info Details */
.contact-info__details {
display: flex;
flex-direction: column;
gap: 16px;
margin-top: 20px;
}
.contact-info__details p {
display: flex;
align-items: center;
gap: 12px;
font-size: 15px;
color: var(--color-gray-400);
margin: 0;
}
.contact-info__details p svg {
color: var(--color-gold);
flex-shrink: 0;
}
.contact-info__details a {
color: var(--color-white);
}
.contact-info__details a:hover {
color: var(--color-gold);
}
.contact-info__item--emergency {
background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
}
.contact-info__item--emergency h3 {
color: var(--color-dark);
}
.contact-info__item--emergency p {
color: var(--color-dark);
opacity: 0.8;
margin-bottom: 20px;
}
.contact-info__item--emergency .btn-gold {
background: var(--color-dark);
color: var(--color-white);
}

/* Contact FAQ Section */
.contact-faq {
background-color: var(--color-black);
padding: 100px 0;
}
.contact-faq .section-header {
text-align: center;
margin-bottom: 60px;
}
.contact-faq .section-header h2 {
font-family: var(--font-heading);
font-size: 42px;
font-weight: 600;
color: var(--color-white);
margin-bottom: 16px;
}
.contact-faq .section-header p {
font-size: 18px;
color: var(--color-gray-400);
}

/* FAQ List */
.faq-list {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
background-color: var(--color-dark);
border: 1px solid rgba(255, 255, 255, 0.05);
margin-bottom: 16px;
overflow: hidden;
transition: border-color 0.3s ease;
}
.faq-item:hover,
.faq-item.is-open {
border-color: var(--color-gold);
}
.faq-item__question {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 24px 30px;
background: none;
border: none;
color: var(--color-white);
font-family: var(--font-heading);
font-size: 18px;
font-weight: 500;
cursor: pointer;
text-align: left;
}
.faq-item__question:hover {
color: var(--color-gold);
}
.faq-item__icon {
transition: transform 0.3s ease;
color: var(--color-gold);
flex-shrink: 0;
}
.faq-item.is-open .faq-item__icon {
transform: rotate(180deg);
}
.faq-item__answer {
padding: 0 30px 24px;
}
.faq-item__answer p {
font-size: 16px;
color: var(--color-gray-400);
line-height: 1.7;
margin: 0;
}

/* Responsive for new sections */
@media (max-width: 768px) {
.about-certifications__list {
flex-direction: column;
align-items: center;
}
.contact-content__inner {
grid-template-columns: 1fr;
}
.fleet-card__actions {
flex-direction: column;
}
.faq-item__question {
padding: 20px;
font-size: 16px;
}
.faq-item__answer {
padding: 0 20px 20px;
}
}
