
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");

@font-face {
  font-family: "icomoon";
  src: url("../../fonts/icomoon.eot?cazssa");
  src: url("../../fonts/icomoon.eot?cazssa#iefix") format("embedded-opentype"),
    url("../../fonts/icomoon.ttf?cazssa") format("truetype"),
    url("../../fonts/icomoon.woff?cazssa") format("woff"),
    url("../../fonts/icomoon.svg?cazssa#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
/* =============================================
   PREMIUM LUXURY CHAUFFEUR STYLES
   ============================================= */

/* CSS Variables */
:root {
    --primary-dark: #0A0A0A;
    --primary-red: #7E211A;
    --primary-gold: #C19A53;
    --primary-gold-light: #D4AF37;
    --primary-gray: #1A1A1A;
    --secondary-gray: #2D2D2D;
    --text-light: #FFFFFF;
    --text-gray: #B0B0B0;
    --bg-dark: #0A0A0A;
    --bg-gray: #1A1A1A;
    --bg-light: #FFFFFF;
    --border-color: #333333;
    --shadow-color: rgba(0, 0, 0, 0.3);
    
    --gradient-gold: linear-gradient(135deg, #C19A53 0%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    --gradient-red: linear-gradient(135deg, #7E211A 0%, #9A2B2B 100%);
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 15px 40px rgba(0, 0, 0, 0.25);
    
    --font-primary: "Plus Jakarta Sans", sans-serif;
    --font-secondary: "Playfair Display", Georgia, serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.premium-home-template {
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Premium Preloader */
#premium-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

body.loaded #premium-preloader {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 40px;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: var(--secondary-gray);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gradient-gold);
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0%; left: 100%; }
}

/* Luxury Icons */
.luxury-icon {
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.luxury-icon-calendar:before { content: "📅"; }
.luxury-icon-phone:before { content: "📱"; }
.luxury-icon-check:before { content: "✓"; }
.luxury-icon-shield:before { content: "🛡️"; }
.luxury-icon-star:before { content: "★"; }
.luxury-icon-users:before { content: "👥"; }
.luxury-icon-car:before { content: "🚗"; }
.luxury-icon-trip:before { content: "📍"; }
.luxury-icon-award:before { content: "🏆"; }
.luxury-icon-user:before { content: "👤"; }
.luxury-icon-charger:before { content: "🔋"; }
.luxury-icon-bottle:before { content: "💧"; }
.luxury-icon-sanitizer:before { content: "🧴"; }
.luxury-icon-arrow-right:before { content: "→"; }
.luxury-icon-service:before { content: "⭐"; }
.luxury-icon-check-circle:before { content: "✔"; }
.luxury-icon-clock:before { content: "⏱️"; }

/* Luxury Hero Banner */
.luxury-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.luxury-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.luxury-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}

.luxury-slide.active {
    opacity: 1;
}

.luxury-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.3) 100%);
}

.luxury-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
}

.luxury-content-wrapper {
    max-width: 800px;
}

.luxury-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.luxury-title {
    font-family: var(--font-secondary);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.luxury-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
}

.luxury-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Luxury Buttons */
.luxury-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.luxury-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.luxury-btn:hover:before {
    left: 100%;
}

.luxury-btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

.luxury-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.luxury-btn-outline {
    background: transparent;
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.luxury-btn-outline:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.luxury-btn-light {
    background: var(--text-light);
    color: var(--primary-dark);
}

.luxury-btn-light:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.luxury-btn.btn-sm {
    padding: 12px 24px;
    font-size: 0.875rem;
}

.luxury-btn.btn-lg {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.luxury-features-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.luxury-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.luxury-feature i {
    color: var(--primary-gold);
    font-size: 1.125rem;
}

/* Luxury Booking Card */
.luxury-booking-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.luxury-booking-card:hover {
    transform: translateY(-5px);
}

.booking-card-header {
    margin-bottom: 30px;
}

.booking-card-header h4 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-card-header p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Scroll Indicator */
.luxury-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--primary-gold);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { height: 60px; opacity: 1; }
    50% { height: 80px; opacity: 0.5; }
}

/* Slide Navigation */
.luxury-slide-nav {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.slide-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--secondary-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.slide-nav-dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

.slide-nav-dot:hover {
    background: var(--primary-gold-light);
}

/* Luxury Statistics */
.luxury-statistics {
    padding: 80px 0;
    background: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

.luxury-statistics:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(193, 154, 83, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.luxury-statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--primary-gray);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-lg);
}

.stat-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.stat-icon {
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.stat-bg {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    opacity: 0.3;
    filter: blur(10px);
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Header */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 500;
    display: block;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Luxury Fleet */
.luxury-fleet {
    padding: 100px 0;
    background: var(--bg-dark);
}

.luxury-fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.fleet-card-luxury {
    perspective: 1000px;
    height: 400px;
}

.fleet-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-card-luxury:hover .fleet-card-inner {
    transform: rotateY(180deg);
}

.fleet-card-front, .fleet-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.fleet-card-front {
    background: var(--primary-gray);
    border: 1px solid var(--border-color);
}

.fleet-card-back {
    background: var(--secondary-gray);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.fleet-image-wrapper {
    height: 60%;
    position: relative;
    overflow: hidden;
}

.fleet-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.fleet-card-luxury:hover .fleet-image {
    transform: scale(1.1);
}

.fleet-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fleet-content {
    padding: 25px;
}

.fleet-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.fleet-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 15px;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.price-amount {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.fleet-features-mini {
    display: flex;
    gap: 10px;
}

.feature-mini {
    width: 36px;
    height: 36px;
    background: var(--secondary-gray);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.125rem;
}

.fleet-details {
    text-align: center;
    width: 100%;
}

.fleet-details h4 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 600;
}

.feature-list-detailed {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list-detailed li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.feature-list-detailed li i {
    color: var(--primary-gold);
    font-size: 1.125rem;
}

/* Luxury Services */
.luxury-services {
    padding: 100px 0;
    background: var(--bg-gray);
}

.luxury-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card-luxury {
    background: var(--primary-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    height: 100%;
}

.service-card-luxury:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.service-link:hover i {
    transform: translateX(5px);
}

/* Luxury About */
.luxury-about {
    padding: 100px 0;
    background: var(--bg-dark);
}

.luxury-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-main-image img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 100px;
    box-shadow: var(--shadow-lg);
}

.badge-years {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-content-inner {
    max-width: 600px;
}

.about-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 1rem;
}

.about-feature i {
    color: var(--primary-gold);
    font-size: 1.125rem;
}

/* Luxury CTA */
.luxury-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-gray) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.luxury-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,50 Q25,25 50,50 T100,50" stroke="%23C19A53" stroke-width="0.5" fill="none"/></svg>');
    opacity: 0.1;
}

.luxury-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Luxury Testimonials */
.luxury-testimonials {
    padding: 100px 0;
    background: var(--bg-gray);
}

/* Luxury FAQ */
.luxury-faq {
    padding: 100px 0;
    background: var(--bg-dark);
}

.luxury-faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-luxury {
    background: var(--primary-gray);
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.faq-item-luxury:hover {
    border-color: var(--primary-gold);
}

.faq-question-wrapper {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question-wrapper:hover {
    background: rgba(193, 154, 83, 0.05);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.toggle-line {
    position: absolute;
    background: var(--primary-gold);
    transition: all 0.3s ease;
}

.toggle-line:first-child {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.toggle-line:last-child {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item-luxury.active .toggle-line:last-child {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-luxury.active .faq-answer-wrapper {
    max-height: 500px;
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .luxury-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .luxury-hero-slider {
        height: auto;
        min-height: 100vh;
    }
    
    .luxury-slide-content {
        padding: 120px 0 60px;
    }
    
    .luxury-title {
        font-size: 2.8rem;
    }
    
    .luxury-about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .luxury-services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .luxury-title {
        font-size: 2.2rem;
    }
    
    .luxury-actions {
        flex-direction: column;
    }
    
    .luxury-btn {
        width: 100%;
        justify-content: center;
    }
    
    .luxury-booking-card {
        margin-top: 40px;
        padding: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .luxury-statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .luxury-fleet-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 576px) {
    .luxury-title {
        font-size: 1.8rem;
    }
    
    .luxury-subtitle,
    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .luxury-statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .luxury-slide-nav {
        right: 20px;
    }
    
    .fleet-card-luxury {
        height: 350px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}



[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-shopping-bag:before {
  content: "\e900";
}

.icon-user:before {
  content: "\e910";
}

.icon-phone:before {
  content: "\e90a";
}

.icon-google-plus:before {
  content: "\ea8b";
}

.icon-facebook:before {
  content: "\ea90";
}

.icon-instagram:before {
  content: "\ea92";
}

.icon-whatsapp:before {
  content: "\ea93";
}

.icon-twitter:before {
  content: "\ea96";
}

.icon-youtube:before {
  content: "\ea9d";
}

.icon-linkedin2:before {
  content: "\eaca";
}

.icon-chat:before {
  content: "\e901";
}

.icon-search:before {
  content: "\e903";
}

.icon-heart:before {
  content: "\e902";
}

.icon-location:before {
  content: "\e904";
}

.icon-mail:before {
  content: "\e905";
}

.icon-cc-visa:before {
  content: "\e906";
}

.icon-cc-mastercard:before {
  content: "\e909";
}

.icon-chevron-thin-right:before {
  content: "\e908";
}

.icon-chevron-thin-left:before {
  content: "\e907";
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  min-height: 100vh;
}

:root {
  --primary-color: #253439;
  --primary-dark: #222529;
  --font-color: #1c1c1e;
  --font-color-light: #1c212099;
  --light-dark: #4d4c4c;
  --bg-grey-light: #f7f8fa;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: 0px;
}

a {
  transition: ease-in 0.5s;
}

input:focus {
  outline: 0px;
}

ul,
ul li {
  list-style: none;
}

img,
img a {
  max-width: 100%;
  height: auto;
}

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

p {
  font-size: 1rem;
  line-height: 1.65rem;
  font-weight: 400;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.55rem;
  color: var(--primary-dark);
}

.color-white {
  color: #fff;
}

.color-dark {
  color: #1c1c1e;
}

/* .container {
  max-width: 1300px;
} */

.block_spacer {
  padding: 60px 0px;
}

.btn_more {
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  border: 0px;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-around;
  background: #b5914e;
  background: linear-gradient(179deg,
      rgba(181, 145, 78, 1) 0%,
      rgba(120, 88, 30, 1) 100%);
  display: inline-block;
}

.btn_more:hover {
  color: #fff;
}

.vehicle_button_cls {
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  border: 0px;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-around;
  background: #b5914e;
  background: linear-gradient(179deg,
      rgba(181, 145, 78, 1) 0%,
      rgba(120, 88, 30, 1) 100%);
  display: inline-block;
}

.bg__primary-grey {
  background-color: var(--bg-grey-light);
}

ul.top__page-contact {
  margin: 0px;
  display: flex;
}

ul.top__page-contact li {
  margin-left: 10px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}

ul.top__page-contact li i {
  padding-right: 4px;
}

.site__search {
  max-width: 900px;
  padding: 0px 10px;
  height: 45px;
  border: 1px solid #e3e6e9;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  background: #fff;
  margin-bottom: 10px;
}

.site__search .search__field {
  flex: 0 0 85%;
  max-width: 85%;
  outline: 0;
  border: 0px;
}

.site__search .search__btn {
  flex: 0 0 40px;
  max-width: 40px;
  position: relative;
  line-height: 45px;
  outline: 0;
  border: 0px;
  background: transparent;
}

.site__search .search__btn::after {
  content: "\e903";
  font-family: "icomoon";
  font-size: 1.65rem;
}

.site_header {
  width: 100%;
  background: #7e211a;
  background: linear-gradient(179deg,
      rgba(126, 33, 26, 1) 0%,
      rgba(90, 21, 15, 1) 100%);
  padding: 8px 0px;
  display: block;
  z-index: 5;
}

.site_header .header_top {
  background-color: #e7e5e4;
  padding: 10px 0px;
  position: relative;
}

.site_header .menu_header {
  position: relative;
  padding: 0px 0;
  display: flex;
  align-items: center;
  z-index: 9;
}

.menu_header.fixed__header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  background: linear-gradient(179deg,
      rgba(126, 33, 26, 1) 0%,
      rgba(90, 21, 15, 1) 100%);
}

.menu_header .navbar-brand {
  width: 130px;
  z-index: 6;
  transition: ease-in 0.5s;
}

.fixed__header .navbar-brand {
  width: 70px;
}

.menu_header .navbar-nav .nav-link {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  transition: all ease-in 0.5s;
}

.dropdown-item {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  padding: 0.65rem 1rem;
}

.navigation .cart_item {
  color: #fff;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  position: relative;
}

.navigation .cart_item:before {
  content: "\e905";
  font-family: "icomoon" !important;
  font-size: 1.5rem;
  font-weight: 300;
  color: #222;
  vertical-align: middle;
}

.main-menu {
  position: relative;
  width: 100%;
  display: flex;
}

.main-menu .navigation {
  position: relative;
  margin: 0px;
}

.main-menu .navigation>li {
  position: relative;
  float: left;
  margin-right: 0px;
}

.main-menu .navigation>li .login_author {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.main-menu .navigation>li:last-child {
  margin-right: 0px;
}

.main-menu .navigation>li>a {
  font-family: "Bricolage Grotesque", sans-serif;
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.65rem .65rem;
  opacity: 1;
  color: #fff;
}

.main-menu .navigation>li:hover>a,
.main-menu .navigation>li.current>a {
  color: #fff;
}

.main-menu .navigation>li>ul>li,
.main-menu .navigation>li>ul>li>a {
  position: relative;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #fff;
  display: block;
  padding: 10px 10px;
  line-height: 20px;
  font-weight: 500;
  font-size: 1rem;
  text-align: left;

  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li:last-child>a {
  border-bottom: 0;
}

.main-menu .navigation>li>ul>li:hover>a {
  background: #c09c58;
  color: #fff;
}

.header__page-link ul {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0px;
}

.header__page-link ul li {
  margin-left: 25px;
  font-size: 1.154rem;
  position: relative;
}

.header__page-link ul li .count {
  position: absolute;
  background-color: #fff;
  color: #111;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.85rem;
  text-align: center;
  line-height: 20px;
  right: -10px;
  top: -10px;
}

.header__page-link ul li a {
  color: #d7b058;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0px 5px;
}

.header__page-link ul li a .icon-search {
  font-size: 1.55rem;
  font-weight: 400;
}

ul.top__page-link {
  display: flex;
  margin: 0px;
  justify-content: flex-end;
}

.top__page-link li {
  margin-left: 10px;
}

.top__page-link li a {
  text-transform: uppercase;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.breadcrumb__banner {
  width: 100%;
  display: flex;
  align-items: flex-end;
  text-align: left;
  padding: 20px 0px 10px;
  background-size: cover;
}

.breadcrumb__banner .title {
  font-weight: 600;
}

.breadcrumb {
  background: transparent;
  padding: 0px;
  margin: 0px;
}

.breadcrumb .breadcrumb-item {
  font-size: 0.85rem;
}

.breadcrumb .breadcrumb-item.active {
  font-weight: 700;
}

.breadcrumb a {
  color: #253439;
}

.product_category-container {
  width: 100%;
  padding: 0.85rem 0;
}

.body_hero-container {
  width: 100%;
  padding: 3.5rem 0;
  min-height: 250px;
}

.left-panel-cate {
  width: 100%;
  border: 1px solid #f7f7f7;
  box-shadow: 0px 0px 25px 0 rgb(0 0 0 / 4%);
  margin-bottom: 15px;
  min-height: 150px;
}

.cate_row-block {
  width: 100%;
}

.cate_row-block .title_head {
  width: 100%;
  padding: 15px 18px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.cate_row-block .title_head:before {
  content: "";
  width: 12px;
  height: 12px;
  background: transparent;
  border-right: 1px solid var(--font-color);
  border-bottom: 1px solid var(--font-color);
  position: absolute;
  display: block;
  margin: 0px;
  transform: rotate(45deg);
  top: 15px;
  right: 30px;
  transition: ease-in 500ms;
}

.cate_row-block.active .title_head:before {
  transform: rotate(225deg);
  top: 20px;
}

.title_head .title {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  margin: 0px;
}

.cate_body-block {
  display: none;
}

.cate_row-block.active .cate_body-block {
  display: block;
}

.cate_body-block.active {
  display: block;
}

.search-box-banner {
  width: 100%;
  padding: 20px;
  margin: 0px auto auto;
  position: relative;
  z-index: 1;
  background: #7e211a;
  background: linear-gradient(179deg,
      rgba(126, 33, 26, 1) 0%,
      rgba(90, 21, 15, 1) 100%);
  box-shadow: 0 0 20px rgba(12, 12, 12, 6%);
  border-radius: 10px;
}

.flex-gap {
  gap: 10px;
}

.tabs {
  width: 100%;
}

ul#tabs-nav {
  list-style: none;
  display: flex;
  margin: 0px;
  justify-content: center;
}

ul#tabs-nav li {
  font-weight: 600;
  margin-right: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
}

ul#tabs-nav li .icon {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background-color: #363738;
  border-radius: 50%;
  margin-right: 5px;
}

#tabs-nav li a {
  padding: 1rem 1.25rem;
  background-color: #7e211a;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  border-radius: 10px 10px 0px 0px;
}

ul#tabs-nav li a:hover,
ul#tabs-nav li.active a {
  background: #b5914e;
  background: linear-gradient(179deg,
      rgba(181, 145, 78, 1) 0%,
      rgba(120, 88, 30, 1) 100%);
  color: #fff;
}

.form_group .row {
  margin: 0px -10px;
}

.form_group [class*="col-"] {
  padding: 0px 10px;
}

.form_group label {
  color: #fff;
}

.form_block .form_field {
  width: 100%;
  height: 40px;
  padding: 5px 14px;
  margin: 5px 0px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
}

.form_block .text_field {
  width: 100%;
  padding: 10px;
  height: 130px;
  margin: 5px 0px;
  background: #fff;
  border: 1px solid #c2c6cf;
  border-radius: 3px;
  resize: none;
}

.form_block .field_title {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.1rem;
}

.flex_select {
  display: flex;

}

.book_time-row {
  width: 100%;
  gap: 10px;

}

.book_time-row .time-hour1,
.book_time-row .time-min1 {
  width: 100%;
  height: 40px;
  padding: 5px 14px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
}

ul.category_menu {
  width: 100%;
  margin-top: 15px;
  padding: 0px 20px;
}

ul.category_menu li {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 0px;
}

ul.category_menu li a {
  color: #161c18;
}

ul.subcate__submenu {
  padding-top: 15px;
  display: none;
}

ul.subcate__submenu li {
  font-size: 0.8rem;
  position: relative;
  padding: 5px 0px 5px 20px;
  border-bottom: 1px solid transparent;
}

ul.subcate__submenu li::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #1c1c1e;
  border-right: 1px solid #1c1c1e;
  left: 0px;
  top: 13px;
  transform: rotate(-45deg);
}

ul.subcate__submenu li a {
  color: #161c18;
  display: block;
}

.category_menu li.subdrop .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  background: transparent;
  color: rgba(61, 60, 60, 0.5);
  cursor: pointer;
  z-index: 5;
  transition: all 300ms ease;
}

.category_menu li.subdrop .dropdown-btn.open {
  transform: rotate(90deg);
}

.product_details_outer .price-tag {
  font-weight: 600;
  color: #f1422d;
}

.quantity_selector {
  width: 100%;
  margin: 15px 0px;
}

#quantityCount {
  display: flex;
  width: 130px;
  height: 45px;
  border: 1px solid #c7c7c7;
}

.btn-quantity {
  width: 40px;
  height: 43px;
  border: 0px;
  font-size: 1.158rem;
  font-weight: 600;
  text-align: center;
  background-color: transparent;
}

.quantity__input {
  text-align: center;
  border: 0px;
  width: 50px;
  height: 43px;
  font-size: 1.458rem;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
}

.pro_button-sub {
  margin-top: 15px;
  width: 250px;
  height: 50px;
  font-weight: 700;
  text-transform: uppercase;
  background: #161c18;
  border: 1px solid #161c18;
  color: #fff;
  border-radius: 5px;
}

#big.owl-theme {
  position: relative;
}

#big .owl-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

#thumbs .item {
  height: 80px;
  line-height: 100px;
  margin: 5px 0px;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

#thumbs .item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

#big.owl-theme .owl-next,
#big.owl-theme .owl-prev {
  width: 30px;
  line-height: 40px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  text-align: center;
  top: 50%;
  color: #333;
  font-size: 1.654rem;
}

#big.owl-theme .owl-prev {
  left: 10px;
}

#big.owl-theme .owl-next {
  right: 10px;
}

#thumbs.owl-theme .owl-next,
#thumbs.owl-theme .owl-prev {
  background: #333;
}

.contact_hero-row .block-title {
  font-weight: 700;
  color: var(--title-color);
}

.colmumn_block {
  width: 100%;
}

.colmumn_block .icon {
  width: 60px;
  margin-bottom: 25px;
}

ul.contact_details-list {
  width: 100%;
  margin: 0px;
}

ul.contact_details-list li {
  position: relative;
  width: 100%;
  padding: 15px 15px 15px 75px;
  margin-bottom: 15px;
  border: 1px solid #f7f7f7;
  border-radius: 5px;
  box-shadow: 0px 0px 25px 0 rgb(0 0 0 / 4%);
}

.contact_details-list .sub_title {
  color: var(--title-color);
}

.contact_details-list p {
  font-size: 1rem;
  font-weight: 600;
  margin: 0px;
}

.contact_details-list .icon {
  position: absolute;
  font-size: 2rem;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--subtitle-color);
}

.contact_form-block {
  width: 100%;
  padding: 2rem;
  background: #eeeff1;
  border-radius: 5px;
}

.contact_form-block .input_field {
  width: 100%;
  background: #fff;
  padding: 0.75rem;
  border: transparent;
  margin-bottom: 25px;
  border-radius: 3px;
}

.contact_form-block .message_field {
  width: 100%;
  height: 120px;
  background: #fff;
  padding: 0.75rem;
  border: transparent;
  margin-bottom: 25px;
  border-radius: 3px;
}

.btn_primary {
  display: inline-block;
  font-size: 0.95rem;
  background: #b5914e;
  background: linear-gradient(179deg,
      rgba(181, 145, 78, 1) 0%,
      rgba(120, 88, 30, 1) 100%);
  border: 0px;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.85rem;
  border-radius: 3px;
  text-transform: uppercase;
  margin-top: 15px;
}

.slider__home .item {
  height: 70vh;
  position: relative;
}

.slider__home .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__home .item .cover {
  padding: 50px 0px;
  position: absolute;
  /* width: 80%; */
  height: 100%;
  top: 0;
  left: 0;
  right: 0px;
  margin: 0px auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 5;
}

.slider__home .item .cover .header-content {
  width: 60%;
  position: relative;
  padding: 56px 0px;
  overflow: hidden;
  text-align: left;
  z-index: 9;
}

.slider__home .item .cover .header-content h1 {
  font-size: 3.65rem;
  font-weight: 800;
  margin: 5px 0px 10px;
  color: #fff;
  text-transform: uppercase;
}

.slider__home .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.5s;
}

.slider__home .owl-item.active h4,
.slider__home .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.8s;
}

.slider__home .owl-item.active button {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.8s;
}

.slider__home .owl-item.active .cover::after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeIn;
  animation-delay: 0.5s;
}

.slider__home .btn__link {
  font-size: 1rem;
  background: #b5914e;
  background: linear-gradient(179deg,
      rgba(181, 145, 78, 1) 0%,
      rgba(120, 88, 30, 1) 100%);
  border: 0px;
  font-weight: 700;
  padding: 0.65rem 1.85rem;
  margin-top: 15px;
  color: #fff;
  border-radius: 5px;
}

.slider__home .owl-nav .owl-prev {
  position: absolute;
  left: 45px;
  top: 43%;
  opacity: 1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;

  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

.slider__home .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}

.slider__home .owl-nav .owl-prev:focus {
  outline: 0;
}

.slider__home .owl-nav .owl-prev:hover {}

.slider__home .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0.8;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  color: #fff;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}

.slider__home .owl-nav .owl-next:before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
}

.slider__home .owl-nav .owl-next:after {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 20px;
  left: -12px;
}

.slider__home .owl-nav .owl-prev:before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(-45deg);
}

.slider__home .owl-nav .owl-prev:after {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 20px;
  left: 0px;
}

.slider__home .owl-nav .owl-next span,
.slider__home .owl-nav .owl-prev span {
  display: none;
}

.slider__home .owl-nav .owl-next:afetr {
  content: "";
  display: block;
}

.slider__home .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}

.slider__home .owl-nav .owl-next:focus {
  outline: 0;
}

.slider__home .owl-nav .owl-next:hover {}

.slider__home:hover .owl-prev {
  left: 20px;
  opacity: 1;
}

.slider__home:hover .owl-next {
  right: 0px;
  opacity: 1;
}

.block_banner .banner_grid {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.block_banner .banner_grid.single-grid {
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.single-grid h5,
.single-grid h3,
.single-grid h1 {
  color: #fff;
}

.single-grid h5 {
  font-size: 1.45rem;
  font-weight: 300;
  margin-bottom: 25px;
}

.single-grid h3 {
  text-transform: uppercase;
  font-size: 1.95rem;
  font-weight: 600;
}

.single-grid h1 {
  text-transform: uppercase;
  font-size: 2.95rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.block_banner .banner_grid.colmn_grid {
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.colmn_grid h5 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 25px;
}

.colmn_grid h3 {
  text-transform: uppercase;
  font-size: 1.35rem;
  font-weight: 700;
}

.colmn_grid h1 {
  text-transform: uppercase;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.block_banner .banner_grid .button_shop {
  width: 150px;
  font-size: 0.95rem;
  background-color: #ffffff;
  border: 0px;
  color: var(--primary-dark);
  font-weight: 700;
  padding: 0.65rem 1.85rem;
  text-transform: uppercase;
  margin-top: 15px;
}

.popular_cate-post {
  width: 100%;
  height: 450px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-bottom: 25px;
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.popular_cate-post:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: rgba(61, 60, 60, 0.5);
  z-index: 1;
}

.popular_cate-post .container_inner {
  position: relative;
  z-index: 1;
}

.popular_cate-post h5 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #fff;
}

.popular_cate-post h3 {
  text-transform: uppercase;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.popular_cate-post h1 {
  text-transform: uppercase;
  font-size: 1.95rem;
  font-weight: 800;
  margin-bottom: 25px;
  background-color: #bb1111;
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
}

.popular_cate-post .button_shop {
  width: 150px;
  font-size: 0.95rem;
  background-color: #ffffff;
  border: 0px;
  color: var(--primary-dark);
  font-weight: 700;
  padding: 0.65rem 1.85rem;
  text-transform: uppercase;
  margin-top: 15px;
}

.inner_banner {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.inner_banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: rgba(0, 0, 0, 0.6);
}

.inner_banner .banner_title {
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.booking_slogan {
  width: 100%;
  padding: 50px 0px;
  background: #0c0c0c;
}

.slogan_inner .title {
  font-size: 40px;
  color: #fff;
}

.slogan_inner .sub_title {
  font-size: 20px;
  color: #fff;
}

.banner__wraper {
  position: relative;
  border: 1px solid #e6ddf5;
}

.banner__wraper .banner_info {
  position: absolute;
  padding: 20px 15px;
  bottom: 0px;
}

.banner__wraper .banner_info .offer_info {
  color: var(--light-dark);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  background-color: var(--primary-color);
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
}

.banner__wraper .banner_info .title {
  font-size: 1.72rem;
}

.slider__offer .item__content {
  position: relative;
}

.slider__offer .item__content .itemt__info {
  padding: 0px 25px;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.itemt__info h2 {
  text-align: center;
  font-size: 3.85rem;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 1rem;
}

.btn__shop-small {
  padding: 4px 10px;
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  display: inline-block;
  font-size: 0.75rem;
  margin-top: 15px;
}

.btn__shop-small:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.btn__shop-large {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  display: inline-block;
  font-size: 0.85rem;
  margin-top: 15px;
}

.btn__shop-large:hover {
  background-color: var(--font-color);
  color: #fff;
}

.categories__items {
  border: 1px solid var(--bg-grey-light);
  box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
  overflow: hidden;
  border-radius: 4px;
}

.categories__items .item__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.categories__items .item__info {
  background-color: #fff;

  padding: 10px 15px;
}

.categories__items .item__info .title {
  font-size: 1.25rem;
  color: var(--font-color);
  text-align: center;
  margin: 0;
}

.ligher_bg-holder {
  background-color: #faf6f2;
}

.product__block-title {
  font-weight: 600;
  font-size: 2.45rem;
  line-height: 2.55rem;
  color: #7e221b;
}

.fleet_block-cars {
  width: 100%;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  min-height: 400px;
}

.page-template-vehicle-template .fleet_block-cars {
  min-height: 440px;

}

.fleet_block-cars .fleet_title {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
}

.fleet_block-cars .fleet_title a {
  color: var(--font-color);
}

.fleet_block-cars .fllet-thumb img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

ul.faclities {
  display: flex;
  flex-wrap: wrap;
}

ul.faclities li {
  flex: 0 0 50%;
  max-width: 50%;
  font-size: 14px;
  flex-wrap: nowrap;
  flex-direction: column;
  display: flex;
  flex-direction: row;
  padding: 4px 0px;
}

ul.faclities li span img {
  width: 20px !important;
  height: 20px;
  object-fit: contain;
  margin-right: 5px;
}

.land_service_block {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 10px 0px;
}

.land_service_block::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0px;
  background: #ffffff;
  background: linear-gradient(179deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgb(14, 1, 1) 100%);
}

.land_service_block .content_block {
  position: relative;
  z-index: 3;
}

.land_service_block .content_block .title {
  font-size: 22px;
  color: #fff;
}

.land_service_block .content_block p {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.land_service_block .content_block .more-btn {
  color: #fff;
  font-size: 14px;
}

.land_service_block .content_block .more-btn i {
  margin-left: 4px;
}

.item__holder {
  padding: 8px;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f7f8fa;
}

.item__holder .item__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.item__holder .item__info {
  padding: 15px 10px;
  background: #fff;
  width: 100%;
  text-align: center;
}

.item__holder .item__info .title {
  font-family: "Open Sans";
  font-size: 0.9rem;
  color: var(--font-color);
  margin: 0;
  font-weight: 500;
  line-height: 1.35rem;
}

.item__holder .item__info .price_tag {
  font-family: "Open Sans";
  font-size: 1.15rem;
  color: var(--font-color);
  margin: 10px 0px;
  font-weight: 700;
}

.item__holder .item__info .btn-cart {
  font-size: 0.8rem;
  background-color: var(--primary-color);
  border: 0px;
  color: #fff;
  font-weight: 500;
  padding: 0.45rem 1.85rem;
  text-transform: uppercase;
  margin-top: 15px;
}

.owl-nav button span {
  background-color: #fff;
  margin: 5px;
  font-size: 3rem;
  width: 30px;
  height: 41px;
  display: block;
  line-height: 32px;
}

.owl-nav .owl-prev {
  left: 0px;
  position: absolute;
  top: 35%;
}

.owl-nav .owl-next {
  right: 0px;
  position: absolute;
  top: 35%;
}

.fleet_dtls-block {
  width: 100%;
  padding: 15px;
  border: 1px solid #b4b4b4;
  border-radius: 15px;
  margin-bottom: 20px;
}

.fleet_dtls-block .fleet_thumb {
  margin-bottom: 15px;
}

.fleet_dtls-block .fleet_thumb img {
  border-radius: 15px;
}

.fleet-details-block .title {
  font-weight: 700;
}

.fleet-details-block .price span {
  font-weight: 600;
  color: #4d120d;
}

.fleet-details-block p {
  margin: 4px 0px;
}

.fleet-details-block .field_block {
  width: 100%;
  margin: 12px 0px;
}

.fleet-details-block .field_block .field-elem {
  padding: 2px 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.fleet-details-block .field_block label {
  display: block;
}

.location_block {
  width: 100%;
  padding: 15px;
  background: #f8f8f8;
  border: 1px solid #cecece;
  border-radius: 10px;
  text-align: center;
  margin: 15px 0px;
}

.location_block .title {
  font-size: 20px;
  margin-bottom: 20px;
}

.location_block .map_block {
  width: 100%;
}

.location_block .map_block iframe {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.glr_thumb {
  width: 100%;
  margin: 10px 0px;
}

.glr_thumb img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

.blog_colmn-post {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 4px 24px rgba(225, 225, 225, .25);
  position: relative;
  z-index: 1;
  margin: 15px 0px;

}

.blog_colmn-post .item__image {
  margin: 0px auto;
}

.blog_colmn-post .item__image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog_colmn-post .item__info {
  background-color: #fff;
  padding: 30px 15px;
  width: 100%;
  text-align: left;
  color: var(--font-color);
  transition: ease-in .3s;
}

/* .item__category .item__image {
    overflow: hidden;
    height: 200px;
    border-radius: 50%;
    border: 10px solid #ebebeb;
    transition: border .5s ease-in;
   
   
}

.item__category .item__image img{
    transform: scale(1);
    transition: transform ease-in .5s;
}
.item__category .item__image:hover img{
    transform: scale(1.1);
}
.item__category .item__image:hover{
    border: 10px solid var(--primary-color);
}

.item__category .item__info .title{
    font-size: 1.25rem;
     color: var(--font-color);
     text-align: center;
     margin-top: 5px;
}
.item__category .owl-nav button span{
    background-color: #fff;
    margin: 5px;
    font-size: 3rem;
    width: 30px;
    height: 41px;
    display: block;
    line-height: 32px;
}
.item__category .owl-nav .owl-prev {
    left: 0px;
    position: absolute;
    top:35%;
}
.item__category .owl-nav .owl-next {
    right: 0px;
    position: absolute;
    top:35%;
} */

@media (max-width: 767px) {
  .slider__home .item {
    height: 50vh;
  }

  .slider__home .item .cover .header-content h1 {
    font-size: 25px;
  }

  .slider__home .item .cover .header-content {
    width: 100%;
  }

  .custom-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    transition: ease 0.5s;
  }

  .custom-order-1 {
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 35px;
  }

  .fleet_dtls-block {
    width: 100%;
  }

  .custom-order-2 {
    -ms-flex-order: 2;
    order: 2;
  }

  .inner_banner {
    height: 280px;
  }

  .slogan_inner .sub_title {
    margin-bottom: 30px;
  }

  .about_thumb-block {
    margin-bottom: 20px;
  }
}

.faq-row {
  margin-bottom: 15px;
}

.faq-row .faq-header {
  padding: 20px;
  position: relative;
  border: 1px solid #ececec;
  cursor: pointer;
  transition: ease-in 0.5s;
}

.faq-row .faq-header:before {
  content: "";
  width: 12px;
  height: 12px;
  background: transparent;
  border-right: 1px solid var(--font-color);
  border-bottom: 1px solid var(--font-color);
  position: absolute;
  display: block;
  margin: 0px;
  transform: rotate(45deg);
  top: 15px;
  right: 30px;
  transition: ease-in 500ms;
}

.faq-row .faq-header:hover {
  background-color: #fcfcfc;
}

.faq-row .faq-header h6 {
  margin: 0px;
  font-size: 20px;
}

.faq-row .faq-body {
  padding: 15px;
  border: 1px solid #ececec;
  border-top: none;
  display: none;
}

footer {
  width: 100%;
  padding: 4.5rem 0 0;
  background: #7e211a;
  background: linear-gradient(179deg,
      rgba(126, 33, 26, 1) 0%,
      rgba(90, 21, 15, 1) 100%);
  position: relative;
}

.footer_top .contact_dtls .title {
  font-weight: 600;
  color: #c09c58;
  font-size: 1.25rem;
}

.footer_top .contact_dtls p {
  color: #a8a8a8;
  font-size: 0.85rem;
  line-height: 1.65rem;
}

ul.adrs_dtls li {
  position: relative;
  padding: 0px 0px 10px 25px;
}

ul.adrs_dtls li .icon {
  position: absolute;
  left: 0px;
  top: 5px;
  color: #c09c58;
  font-size: 1.15rem;
}

ul.adrs_dtls li p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 0px;
}

ul.adrs_dtls li .sub_title {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 3px;
}

ul.menu_foot_list {
  width: 100%;
}

.menu_foot_list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}

.menu_foot_list li::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  left: 0px;
  top: 9px;
  transform: rotate(-45deg);
}

.menu_foot_list li a {
  color: #fff;
  font-size: 0.85rem;
}

ul.call_list_app {
  width: 100%;
  margin: 0px;
  text-align: center;
}

ul.call_list_app li {
  display: inline-block;
  background-color: #c09c58;
  display: inline-block;
  font-size: 0.95rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-left: 5px;
  text-align: center;
  line-height: 35px;
}

ul.call_list_app li a {
  color: #7e221b;
}

.footer_logo img {
  width: 200px;
  margin-bottom: 25px;
}

.footer_top .contact_dtls p {
  color: #fff;
}

.abn_no {
  color: #fff;
}

.qr_img img {
  width: 150px;
  border-radius: 5px;
}



.check-vehicle-block .check-content {

  text-align: center;
}




.footer_bottom {
  border-top: 1px solid #732e27;
  padding: 1.15rem 0;
  margin-top: 2.5rem;
}

.footer_bottom p {
  color: #fff;
  margin: 0px;
  font-size: 0.8rem;
}

ul.footer_nav {
  text-align: right;
  margin: 0;
}

ul.footer_nav li {
  display: inline-block;
  margin-left: 5px;
}

ul.footer_nav li a {
  color: #ebebeb;
  font-size: 1.55rem;
}

ul.type_ul li input[type="radio"] {
  display: none;
}

ul.type_ul {
  display: flex;
  gap: 5px;
}

ul.type_ul li {
  display: flex;
}

ul.type_ul li label {
  padding: 0.5em 1em;
  display: inline-block;
  border: 1px solid #0c0c0c;
  cursor: pointer;
  font-size: 13px;
  border-radius: 4px;
}

.blank-label {
  display: none;
}

ul.type_ul li input[type="radio"]:checked+label {
  background: #0c0c0c;
  color: #fff;
}

.woocommerce-MyAccount-navigation ul {
  width: 80%;
  border: 1px solid #a8a8a8;
  border-radius: 10px;
}

.woocommerce-MyAccount-navigation ul li {
  padding: 10px 10px;
  border-bottom: 1px solid #a8a8a8;
}

.woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: 0px !important;

}

.woocommerce-MyAccount-navigation ul li a {
  color: var(--font-color);
}

.woocommerce-MyAccount-content a {
  color: var(--font-color);

  font-weight: 700;
}

.woocommerce-button {
  color: #fff !important;
  padding: 7px 10px !important;
  border-radius: 5px !important;
  border: 0px;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-around;
  background: #b5914e !important;
  background: linear-gradient(179deg, rgba(181, 145, 78, 1) 0%, rgba(120, 88, 30, 1) 100%) !important;
  display: inline-block;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  max-width: 48% !important;
  padding: 0px;

}

.woocommerce-account .addresses .title .edit {
  float: left;
  font-size: 16px;
}


address {
  margin-top: 20px;
}

fieldset {
  margin-top: 20px;
}

.woocommerce-address-fields__field-wrapper .form-row,
.woocommerce-form-row {
  display: block !important;
}

.woocommerce-address-fields__field-wrapper label {
  display: block;

}

.woocommerce-MyAccount-content .button {

  color: #fff !important;
  padding: 15px 30px !important;
  border-radius: 5px !important;
  border: 0px;
  margin-top: 10px !important;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-around;
  background: #b5914e !important;
  background: linear-gradient(179deg, rgba(181, 145, 78, 1) 0%, rgba(120, 88, 30, 1) 100%) !important;
  display: inline-block;
}

.woocommerce-address-fields .button {
  color: #fff !important;
  padding: 15px 30px !important;
  border-radius: 5px !important;
  border: 0px;
  margin-top: 20px !important;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-around;
  background: #b5914e !important;
  background: linear-gradient(179deg, rgba(181, 145, 78, 1) 0%, rgba(120, 88, 30, 1) 100%) !important;
  display: inline-block;
}

.woocommerce-table {
  border: 1px solid rgba(0, 0, 0, .1);
  border-collapse: collapse;
  width: 100%;
}

.woocommerce-table th,
.woocommerce-table td {
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, .1);
}

.woocommerce-billing-fields__field-wrapper .form-row label .woocommerce-additional-fields label {
  display: block;
  width: 100%;
}

.woocommerce-additional-fields {
  margin-top: 20px;
}

.woocommerce-billing-fields__field-wrapper .woocommerce-input-wrapper {
  width: 100% !important;
}

.woocommerce-form-coupon-toggle a {
  color: var(--font-color);
}

.woocommerce-input-wrapper {
  width: 100%;
}

.wc-block-cart-item__wrap a {
  color: #0c0c0c;
}

/* responsive version */

@media (max-width: 767px) {
  .search-box-banner {
    padding: 20px;
  }

  .site_header .header_top {
    display: none;
    padding: 0;
  }

  .site_header .menu_header {
    padding: 0px;
  }

  .menu_header .navbar-brand {
    margin-left: 0px;
    width: 100px;
  }

  .banner {
    height: 30vh;
  }

  .carousel-item {
    height: 30vh;
  }

  .carousel-caption .banner_title {
    font-size: 1.75rem;
  }

  .carousel-caption {
    width: 60%;
  }

  .navbar-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .header__page-link {
    width: 100%;
    bottom: 0px;
    z-index: 5;
    left: 0px;
    padding: 10px 10px 10px;
    position: fixed;
    background: #7e211a;
    background: linear-gradient(179deg, rgba(126, 33, 26, 1) 0%, rgba(90, 21, 15, 1) 100%);
  }

  .header__page-link ul {
    align-items: center;
    justify-content: center;
  }

  .header__page-link ul li {
    margin: 0px 7px;
  }

  .categories__items .item__image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }

  .categories__items .item__info {
    padding-left: 3px;
    padding-right: 3px;
  }

  .categories__items .item__info .title {
    font-size: 0.7rem;
  }

  .item__category .item__image {
    height: 100px;
  }

  .item__category .item__info .title {
    font-size: 0.9rem;
  }

  ul.top__page-link {
    justify-content: center;
  }

  .coomin__block-title {
    font-size: 1.25rem;
  }

  .itemt__info h2 {
    font-size: 2.25rem;
  }

  .contact_dtls {
    margin-bottom: 15px;
  }
}

@media (max-width: 1024px) {

  html.active,
  body.active {
    overflow: hidden;
  }

  .navbar-toggler-icon {
    display: block;
    width: 1.5em;
    height: 1px;
    vertical-align: middle;
    content: "";
    background: #fff;
    background-size: 100% 100%;
    margin: 7px 0px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
  }

  .navbar-toggler {
    position: absolute;
    right: 0px;
    top: 26px;
    z-index: 5;
    padding: 0.25rem 0;
  }

  .navbar-collapse {
    background: #7e221b;
    z-index: 100;
    position: fixed;
    top: 0px;
    left: 0;
    width: 75%;
    height: 100%;
    opacity: 0;
    box-shadow: 0px 10px 14px rgb(30, 30, 31);
  }

  .main-menu .navigation {
    overflow-y: auto;
    margin-top: 60px !important;
    height: calc(100vh - 60px);
  }

  .navbar-collapse.collapsing {
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    left: -100%;
  }

  .navbar-collapse.show {
    opacity: 1;
    left: 0;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }

  .navbar-collapse.show .navbar-toggler {
    right: 0px;
    top: 10px;
    left: auto;
  }

  .navbar-collapse.show .navbar-toggler .navbar-toggler-icon:nth-child(1) {
    transform: rotate(-45deg);
  }

  .navbar-collapse.show .navbar-toggler .navbar-toggler-icon:nth-child(2) {
    display: none;
  }

  .navbar-collapse.show .navbar-toggler .navbar-toggler-icon:nth-child(3) {
    transform: rotate(45deg);
    margin-left: 0px;
    margin-top: -7px;
  }

  .main-menu .navigation>li {
    float: none;
    display: block;
    border-bottom: 1px solid #4d120d;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 30px;
    height: 30px;
    border: 1px solid #ffffff80;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    background: transparent;
    color: #ffffff80;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

  .main-menu .navbar-collapse>ul li.dropdown .dropdown-btn.open {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .main-menu .navigation>li>ul>li:hover>a {
    color: #fff;
  }

  .main-menu .navigation>li>ul>li,
  .main-menu .navigation>li>ul>li>a {
    border-bottom: 0px !important;
    padding: 5px 0px;
  }

  .main-menu .navigation>li>ul,
  .main-menu .navigation>li>ul>li>ul {
    padding: 0px 1rem;
    display: none;
  }

  .header__page-link ul li a .icon-search {
    display: none;
  }

  .categories__outer-wrap .row {
    margin: 0px -3px;
  }

  .categories__outer-wrap div[class*="col-"] {
    padding: 0px 3px;
  }
}

@media (min-width: 1100px) {
  .search__outer {
    width: 100%;
  }

  .search__outer {
    max-width: 900px;
    height: 45px;
    position: absolute;
    top: 77px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    padding: 3px 0px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.5s, opacity 0.5s linear;
  }

  .search__outer.open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .banner__wraper .banner__image img,
  .item__content .content__image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
  }

  .main-menu .navigation>li.dropdown>a:after {
    content: "";
    width: 8px;
    height: 8px;
    background: transparent;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    position: absolute;
    display: block;
    margin: 0px;
    vertical-align: middle;
    border-top: 0px;
    transform: rotate(45deg);
    top: 15px;
    right: 0px;
    border-left: 0px;
  }

  .nav-outer {
    width: 100%;
  }

  .main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {
    display: none;
  }

  .main-menu .navigation>li>ul {
    position: absolute;
    overflow: hidden;
    left: 0px;
    top: 10px;
    top: 100%;
    width: 220px;
    z-index: 100;
    opacity: 1;
    background: #7e211a;
    border-radius: 4px;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    box-shadow: 0px 40px 80px 0px rgb(2 2 26 / 14%);
  }

  .main-menu .navigation>li:last-child>ul {
    right: 0px;
    left: auto;
  }

  .main-menu .navigation>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 100%;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }

  .main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%;
    padding: 0 0px;
  }

  .main-menu .navigation>li>ul>li>a {
    color: #fff;
  }
}
#video-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #002400;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}
#video-preloader video {
    width: 100%;
    height: 100%;
	 object-fit: contain;  /* Show full video without cutting */
    background: #002400;     /* Fill empty space with black */
   
}
body.loaded #video-preloader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}


#snow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  background: none;
  opacity: 1;
  -webkit-mask-image: linear-gradient(to bottom, #FFF 0, #FFF 10%, transparent 50%);
          mask-image: linear-gradient(to bottom, #FFF 0, #FFF 10%, transparent 50%);
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: opacity 350ms ease-in-out 350ms, -webkit-mask-position 5000ms ease-in-out;
  transition: opacity 350ms ease-in-out 350ms, mask-position 5000ms ease-in-out;
  transition: opacity 350ms ease-in-out 350ms, mask-position 5000ms ease-in-out, -webkit-mask-position 5000ms ease-in-out;
}
@media screen and (min-width: 768px) {
  #snow {
    -webkit-mask-image: linear-gradient(to bottom, #FFF 0, #FFF 80%, transparent 100%);
            mask-image: linear-gradient(to bottom, #FFF 0, #FFF 80%, transparent 100%);
  }
}
#snow.invisible {
  -webkit-mask-image: linear-gradient(to bottom, #FFF 0, #FFF 0, transparent 0);
          mask-image: linear-gradient(to bottom, #FFF 0, #FFF 0, transparent 0);
  -webkit-mask-position: 0 -100vh;
          mask-position: 0 -100vh;
  opacity: 0;
}
.testimonial-slider-wrapper {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}


/* =============================================
   LUXURY FORM FIELDS CSS - FIXED
   ============================================= */

/* Form Container */
.search-box-banner {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(193, 154, 83, 0.3);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 20px 0;
}

.search-box-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-gold) 0%,
        var(--primary-red) 50%,
        var(--primary-gold) 100%);
}

/* Form Row - Bootstrap grid override */
.form_group .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -15px !important;
    margin-left: -15px !important;
}

.form_group [class*="col-"] {
    position: relative !important;
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-bottom: 0 !important;
}

.col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

.col-md-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

.col-md-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
}

/* Form Field Wrapper */
.mb-4 {
    margin-bottom: 30px !important;
    position: relative;
}

/* Field Labels */
.field_title {
    display: block !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: var(--text-gray) !important;
    margin-bottom: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: color 0.3s ease;
}

/* Input Fields - Base */
.form_field {
    width: 100% !important;
    height: 55px !important;
    padding: 0 20px !important;
    background: rgba(45, 45, 45, 0.7) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    color: var(--text-light) !important;
    font-size: 1rem !important;
    font-family: var(--font-primary) !important;
    font-weight: 500 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.form_field:hover {
    border-color: rgba(193, 154, 83, 0.4) !important;
    background: rgba(45, 45, 45, 0.9) !important;
}

.form_field:focus {
    outline: none !important;
    border-color: var(--primary-gold) !important;
    background: rgba(45, 45, 45, 1) !important;
    box-shadow: 0 0 0 4px rgba(193, 154, 83, 0.1) !important;
    transform: translateY(-2px);
}

.form_field::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
    font-weight: 400 !important;
}

/* Date Input */
input[type="date"].form_field {
    padding-right: 50px !important;
    position: relative;
    min-height: 55px !important;
}

input[type="date"].form_field::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C19A53' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat center !important;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Time Selection */
.flex_select {
    display: flex !important;
    gap: 15px !important;
    width: 100% !important;
}

.time-hour1, .time-min1 {
    flex: 1 !important;
    min-width: 0 !important;
}

/* Custom Select Wrapper */
.select-wrapper {
    position: relative !important;
    width: 100% !important;
}

.select-wrapper select.form_field {
    padding-right: 60px !important;
    cursor: pointer;
    background: rgba(45, 45, 45, 0.7) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C19A53' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 20px center !important;
    background-size: 20px !important;
}

.select-arrow {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) rotate(90deg) !important;
    pointer-events: none;
    color: var(--primary-gold);
    font-size: 1.2rem;
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.select-wrapper:hover .select-arrow {
    opacity: 1;
    transform: translateY(-50%) rotate(90deg) scale(1.1);
}

/* Radio Buttons */
.depsd2 {
    display: flex !important;
    gap: 30px !important;
    padding: 25px !important;
    background: rgba(45, 45, 45, 0.3) !important;
    border-radius: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 30px !important;
    width: 100% !important;
}

.custom-control {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    cursor: pointer !important;
    margin: 0 !important;
}

.custom-control-input {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.custom-control-label {
    position: relative !important;
    padding-left: 40px !important;
    color: var(--text-gray) !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    line-height: 1.5 !important;
}

.custom-control-label::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 24px !important;
    height: 24px !important;
    border: 2px solid rgba(193, 154, 83, 0.3) !important;
    border-radius: 50% !important;
    background: rgba(45, 45, 45, 0.5) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.custom-control-label::after {
    content: '' !important;
    position: absolute !important;
    left: 6px !important;
    top: 50% !important;
    transform: translateY(-50%) scale(0) !important;
    width: 12px !important;
    height: 12px !important;
    background: var(--primary-gold) !important;
    border-radius: 50% !important;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

.custom-control-input:checked ~ .custom-control-label {
    color: var(--text-light) !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
    border-color: var(--primary-gold) !important;
    background: rgba(193, 154, 83, 0.1) !important;
    box-shadow: 0 0 0 4px rgba(193, 154, 83, 0.1) !important;
}

.custom-control-input:checked ~ .custom-control-label::after {
    transform: translateY(-50%) scale(1) !important;
}

.custom-control:hover .custom-control-label::before {
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 0 4px rgba(193, 154, 83, 0.1) !important;
}

/* Passenger Input */
input[name="no_of_passengers"].form_field {
    background: rgba(45, 45, 45, 0.7) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C19A53' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='9' cy='7' r='4'%3E%3C/circle%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'%3E%3C/path%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'%3E%3C/path%3E%3C/svg%3E") no-repeat right 20px center !important;
    background-size: 20px !important;
}

/* Flight Details Input */
input[name="flight_details"].form_field,
input[name="return_flight_details"].form_field {
    background: rgba(45, 45, 45, 0.7) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C19A53' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E") no-repeat right 20px center !important;
    background-size: 20px !important;
}

/* Google Places Autocomplete */
.pac-target-input {
    background: rgba(45, 45, 45, 0.7) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C19A53' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E") no-repeat right 20px center !important;
    background-size: 20px !important;
}

/* Submit Button */
.btn_primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 60px !important;
    padding: 0 40px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 15px !important;
    border: none !important;
    background: linear-gradient(135deg, 
        var(--primary-gold) 0%,
        var(--primary-gold-light) 50%,
        var(--primary-gold) 100%) !important;
    color: var(--primary-dark) !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    position: relative !important;
    overflow: hidden !important;
    margin-top: 10px !important;
    box-shadow: 0 8px 32px rgba(193, 154, 83, 0.3) !important;
}

.btn_primary::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent) !important;
    transition: left 0.6s ease !important;
}

.btn_primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 48px rgba(193, 154, 83, 0.4) !important;
    background: linear-gradient(135deg, 
        var(--primary-gold-light) 0%,
        var(--primary-gold) 50%,
        var(--primary-gold-light) 100%) !important;
}

.btn_primary:hover::before {
    left: 100% !important;
}

.btn_primary:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 24px rgba(193, 154, 83, 0.3) !important;
}

.btn_primary::after {
    content: '→' !important;
    font-size: 1.4rem !important;
    font-weight: 300 !important;
    margin-left: 10px !important;
    transition: transform 0.3s ease !important;
}

.btn_primary:hover::after {
    transform: translateX(5px) !important;
}

/* Form Validation States */
.form_field:invalid:not(:placeholder-shown) {
    border-color: #ff4757 !important;
    background: rgba(255, 71, 87, 0.05) !important;
}

.form_field:valid:not(:placeholder-shown) {
    border-color: #2ed573 !important;
    background: rgba(46, 213, 115, 0.05) !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .search-box-banner {
        padding: 40px !important;
    }
    
    .col-md-6,
    .col-md-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .flex_select {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .depsd2 {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 20px !important;
    }
}

@media (max-width: 768px) {
    .search-box-banner {
        padding: 30px !important;
        border-radius: 15px !important;
    }
    
    .form_field {
        height: 50px !important;
        padding: 0 16px !important;
        font-size: 0.95rem !important;
    }
    
    .field_title {
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
    }
    
    .btn_primary {
        height: 55px !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
    }
    
    .custom-control-label {
        font-size: 0.95rem !important;
        padding-left: 35px !important;
    }
    
    .custom-control-label::before {
        width: 22px !important;
        height: 22px !important;
    }
    
    .custom-control-label::after {
        left: 5px !important;
        width: 10px !important;
        height: 10px !important;
    }
}

@media (max-width: 576px) {
    .search-box-banner {
        padding: 25px 20px !important;
        border-radius: 12px !important;
    }
    
    .form_group .row {
        margin-right: -10px !important;
        margin-left: -10px !important;
    }
    
    .form_group [class*="col-"] {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }
    
    .form_field {
        height: 48px !important;
        padding: 0 14px !important;
        font-size: 0.9rem !important;
    }
    
    .btn_primary {
        height: 52px !important;
        font-size: 0.95rem !important;
        letter-spacing: 1px !important;
        padding: 0 25px !important;
    }
    
    .mb-4 {
        margin-bottom: 25px !important;
    }
}

/* Animation for form fields */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form_group .row > div {
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
}

.form_group .row > div:nth-child(1) { animation-delay: 0.1s; }
.form_group .row > div:nth-child(2) { animation-delay: 0.2s; }
.form_group .row > div:nth-child(3) { animation-delay: 0.3s; }
.form_group .row > div:nth-child(4) { animation-delay: 0.4s; }
.form_group .row > div:nth-child(5) { animation-delay: 0.5s; }
.form_group .row > div:nth-child(6) { animation-delay: 0.6s; }
.form_group .row > div:nth-child(7) { animation-delay: 0.7s; }
.form_group .row > div:nth-child(8) { animation-delay: 0.8s; }
.form_group .row > div:nth-child(9) { animation-delay: 0.9s; }

/* Fix for Bootstrap conflicts */
.form-control {
    display: none !important;
}

.form-group {
    margin-bottom: 0 !important;
}

/* Ensure form fields are visible */
input, select {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Fix for hidden elements */
#airport_return_date,
#airport_return_time,
#return_flight {
    display: none !important;
    animation: fadeIn 0.3s ease !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Fix for time row */
.book_time-row {
    display: flex !important;
    gap: 10px !important;
    width: 100% !important;
}

.booking-form-hour,
.booking-form-min {
    flex: 1 !important;
}

.booking-form-time {
    margin-bottom: 10px !important;
    font-size: 0.85rem !important;
    color: var(--text-gray) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Clear float fix */
.cl {
    clear: both !important;
}

/* Fix for Google Places dropdown */
.pac-container {
    background: var(--primary-gray) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
    margin-top: 5px !important;
    overflow: hidden;
}

.pac-item {
    padding: 12px 16px !important;
    color: var(--text-light) !important;
    border-bottom: 1px solid var(--border-color) !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
}

.pac-item:hover {
    background: rgba(193, 154, 83, 0.1) !important;
}

.pac-item-selected {
    background: rgba(193, 154, 83, 0.2) !important;
}

.pac-icon {
    margin-right: 10px !important;
    filter: invert(70%) sepia(15%) saturate(1500%) hue-rotate(360deg) !important;
}

.pac-item-query {
    color: var(--primary-gold) !important;
    font-weight: 500 !important;
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .form_field {
        font-size: 16px !important; /* Prevents zoom on focus */
    }
}

/* Print styles */
@media print {
    .search-box-banner {
        border: 1px solid #000 !important;
        box-shadow: none !important;
        background: #fff !important;
    }
    
    .form_field {
        border: 1px solid #000 !important;
        background: #fff !important;
        color: #000 !important;
    }
}

.col-md-12.depsd2 {
    margin-bottom: 30px !important;
}
.fleet-badge span {
    color: #fff;
}

/* About Template Styles */
.inner_banner {
    background-color: var(--font-color-light);
    background-blend-mode: overlay;
}

.body_hero-container {
    background: var(--bg-light);
}

.about_thumb-block {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about_thumb-block img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.booking_slogan {
    background: linear-gradient(135deg, var(--primary-color), #9A2B2B);
    color: white;
}

.slogan_inner .title {
    color: white;
    font-size: 32px;
}

.slogan_inner .sub_title {
    color: rgba(255, 255, 255, 0.9);
}

section.block_spacer {
    background: var(--bg-light);
}

/* =============================================
   BLOG TEMPLATE ENHANCED STYLES
   ============================================= */

/* Blog Template Container */
.page-template-blog-template .body_hero-container {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Blog Post Card */
.page-template-blog-template .blog_colmn-post {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
    position: relative;
    margin-bottom: 0px !important;
}

.page-template-blog-template .blog_colmn-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(126, 33, 26, 0.2);
}

/* Blog Image */
.page-template-blog-template .item__image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.page-template-blog-template .item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.page-template-blog-template .blog_colmn-post:hover .item__image img {
    transform: scale(1.05);
}

/* Blog Content */
.page-template-blog-template .item__info {
    padding: 25px;
    background: #fff;
}

.page-template-blog-template .item__info h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222529;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 56px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-template-blog-template .post_date {
    color: #7E211A;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-template-blog-template .post_date:before {
    content: "📅";
    font-size: 0.875rem;
}

.page-template-blog-template .item__info p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 72px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More Button */
.page-template-blog-template .btn_more {
    background: linear-gradient(135deg, #7E211A 0%, #9A2B2B 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.page-template-blog-template .btn_more:hover {
    background: linear-gradient(135deg, #9A2B2B 0%, #7E211A 100%);
    transform: translateX(5px);
    color: white;
}

/* Pagination */
.page-template-blog-template .pagination-area {
    margin-top: 60px;
}

.page-template-blog-template .pagination {
    justify-content: center;
    gap: 8px;
}

.page-template-blog-template .page-item .page-link {
    border: 1px solid #e9ecef;
    color: #7E211A;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.page-template-blog-template .page-item.active .page-link {
    background: linear-gradient(135deg, #7E211A 0%, #9A2B2B 100%);
    border-color: #7E211A;
    color: white;
}

.page-template-blog-template .page-item:hover .page-link {
    background: #f8f9fa;
    border-color: #7E211A;
    color: #7E211A;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .page-template-blog-template .blog_colmn-post {
        margin-bottom: 20px;
    }
    
    .page-template-blog-template .item__image {
        height: 200px;
    }
    
    .page-template-blog-template .item__info h5 {
        font-size: 1.1rem;
        min-height: auto;
    }
}

/* =============================================
   BOOKING TEMPLATE ENHANCED STYLES
   ============================================= */

.page-template-booking-template .ligher_bg-holder {
    background: linear-gradient(135deg, #faf6f2 0%, #fff8f0 100%);
    padding: 80px 0;
}

/* Check Vehicle Block */
.page-template-booking-template .check-vehicle-block {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(126, 33, 26, 0.08);
    border: 1px solid rgba(126, 33, 26, 0.1);
    position: relative;
    overflow: hidden;
}

.page-template-booking-template .check-vehicle-block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7E211A, #B5914E, #7E211A);
}

/* Check Content */
.page-template-booking-template .check-content {
    text-align: center;
    margin-bottom: 40px;
}

.page-template-booking-template .check-content .top-subtitle {
    color: #B5914E;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-template-booking-template .check-content .title {
    color: #7E211A;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-template-booking-template .check-content .subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Booking Form Container */
.page-template-booking-template .col-md-8 {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}

/* Vehicle Multi Border */
.page-template-booking-template .vehicle-multi-border {
    height: 4px;
    background: linear-gradient(90deg, #B5914E 0%, #7E211A 50%, #B5914E 100%);
    margin-top: 60px;
    border-radius: 2px;
    position: relative;
}

.page-template-booking-template .vehicle-multi-border:before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #B5914E;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #B5914E;
}

/* Responsive Booking */
@media (max-width: 992px) {
    .page-template-booking-template .check-content .title {
        font-size: 2rem;
    }
    
    .page-template-booking-template .check-vehicle-block {
        padding: 40px 30px;
    }
    
    .page-template-booking-template .col-md-8 {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .page-template-booking-template .check-content .title {
        font-size: 1.75rem;
    }
    
    .page-template-booking-template .check-content .subtitle {
        font-size: 1rem;
    }
}

/* =============================================
   CONTACT US TEMPLATE ENHANCED STYLES
   ============================================= */

.page-template-contactus-template .contact_hero-row {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

/* Contact Column */
.page-template-contactus-template .contact_colmn {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.page-template-contactus-template .contact_colmn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7E211A, #B5914E);
}

/* Block Title */
.page-template-contactus-template .block-title {
    color: #7E211A;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.page-template-contactus-template .block-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #B5914E;
    border-radius: 2px;
}

/* Contact Details List */
.page-template-contactus-template .contact_details-list {
    margin: 30px 0;
}

.page-template-contactus-template .contact_details-list li {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px 20px 20px 70px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.page-template-contactus-template .contact_details-list li:hover {
    background: white;
    border-color: #B5914E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(181, 145, 78, 0.1);
}

.page-template-contactus-template .contact_details-list .icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7E211A 0%, #9A2B2B 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.page-template-contactus-template .contact_details-list .sub_title {
    color: #7E211A;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.page-template-contactus-template .contact_details-list p {
    color: #495057;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Contact Form Block */
.page-template-contactus-template .contact_form-block {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    height: 100%;
}

.page-template-contactus-template .contact_form-block .block-title:after {
    width: 100px;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .page-template-contactus-template .contact_colmn,
    .page-template-contactus-template .contact_form-block {
        margin-bottom: 30px;
    }
}

/* =============================================
   LOCATION TEMPLATE ENHANCED STYLES
   ============================================= */

.page-template-location-template .body_hero-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

/* Location Block */
.page-template-location-template .location_block {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
}

.page-template-location-template .location_block:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(126, 33, 26, 0.12);
    border-color: rgba(126, 33, 26, 0.2);
}

.page-template-location-template .location_block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7E211A, #B5914E);
}

/* Map Block */
.page-template-location-template .map_block {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.page-template-location-template .map_block iframe {
    width: 100%;
    height: 200px;
    border: none;
    display: block;
}

/* Location Title */
.page-template-location-template .location_block .title {
    color: #7E211A;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Book Now Button */
.page-template-location-template .location_block .btn_more {
    background: linear-gradient(135deg, #7E211A 0%, #9A2B2B 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-template-location-template .location_block .btn_more:hover {
    background: linear-gradient(135deg, #9A2B2B 0%, #7E211A 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(126, 33, 26, 0.2);
}

/* Responsive Location */
@media (max-width: 768px) {
    .page-template-location-template .location_block {
        margin: 10px 0;
    }
    
    .page-template-location-template .location_block .title {
        font-size: 1.1rem;
        min-height: 50px;
    }
}

/* =============================================
   VEHICLE TEMPLATE ENHANCED STYLES
   ============================================= */

.page-template-vehicle-template .ligher_bg-holder {
    background: linear-gradient(135deg, #faf6f2 0%, #fff8f0 100%);
    padding: 80px 0;
}

/* Vehicle Banner */
.page-template-vehicle-template .vehicle_banner .home-slider {
    height: 60vh;
    position: relative;
}

.page-template-vehicle-template .vehicle_banner .home-slider .item {
    height: 60vh;
}

.page-template-vehicle-template .vehicle_banner .home-slider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-template-vehicle-template .vehicle_banner .cover {
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.8) 0%, rgba(29, 28, 28, 0.8) 100%);
}

/* Featured Products Slider */
.page-template-vehicle-template .featured_products {
    position: relative;
}

.page-template-vehicle-template .featured_products .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.page-template-vehicle-template .featured_products .owl-prev,
.page-template-vehicle-template .featured_products .owl-next {
    pointer-events: all;
    width: 50px;
    height: 50px;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-template-vehicle-template .featured_products .owl-prev:hover,
.page-template-vehicle-template .featured_products .owl-next:hover {
    /* background: #7E211A !important; */
    transform: scale(1.1);
}

.page-template-vehicle-template .featured_products .owl-prev span,
.page-template-vehicle-template .featured_products .owl-next span {
    color: #7E211A;
    font-size: 24px;
    line-height: 1;
}

.page-template-vehicle-template .featured_products .owl-prev:hover span,
.page-template-vehicle-template .featured_products .owl-next:hover span {
    /* color: white; */
    /* background: #fff !important; */
}

/* Fleet Block Cars */
.page-template-vehicle-template .fleet_block-cars {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.page-template-vehicle-template .fleet_block-cars:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(126, 33, 26, 0.12);
    border-color: rgba(126, 33, 26, 0.2);
}

.page-template-vehicle-template .fleet_block-cars:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7E211A, #B5914E);
}

/* Fleet Thumb */
.page-template-vehicle-template .fllet-thumb {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 220px;
}

.page-template-vehicle-template .fllet-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.page-template-vehicle-template .fleet_block-cars:hover .fllet-thumb img {
    transform: scale(1.05);
}

/* Fleet Title */
.page-template-vehicle-template .fleet_title {
    color: #7E211A;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.page-template-vehicle-template .fleet_title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-template-vehicle-template .fleet_title a:hover {
    color: #B5914E;
}

/* Facilities */
.page-template-vehicle-template .faclities {
    margin: 20px 0;
    padding: 0;
}

.page-template-vehicle-template .faclities li {
    color: #495057;
    font-size: 0.875rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-template-vehicle-template .faclities li span img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(20%) sepia(60%) saturate(2000%) hue-rotate(340deg);
}

/* Vehicle Button */
.page-template-vehicle-template .vehicle_button_cls {
    background: linear-gradient(135deg, #7E211A 0%, #9A2B2B 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.page-template-vehicle-template .vehicle_button_cls:hover {
    background: linear-gradient(135deg, #9A2B2B 0%, #7E211A 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(126, 33, 26, 0.2);
}

/* Responsive Vehicle */
@media (max-width: 768px) {
    .page-template-vehicle-template .vehicle_banner .home-slider {
        height: 50vh;
    }
    
    .page-template-vehicle-template .vehicle_banner .home-slider .item {
        height: 50vh;
    }
    
    .page-template-vehicle-template .featured_products .owl-nav {
        display: none;
    }
}

/* =============================================
   FIXED HIRE & WEDDING HIRE TEMPLATES ENHANCED STYLES
   ============================================= */

/* Common Styles for Both Templates */
.page-template-fixed-hire-template .block_banner,
.page-template-wedding-hire-template .block_banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
}

/* Form Wrapper */
.page-template-fixed-hire-template .wrapsd,
.page-template-wedding-hire-template .wrapsd {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.page-template-fixed-hire-template .wrapsd:hover,
.page-template-wedding-hire-template .wrapsd:hover {
    box-shadow: 0 25px 60px rgba(126, 33, 26, 0.1);
    border-color: rgba(126, 33, 26, 0.2);
}

/* Product Image */
.page-template-fixed-hire-template .item__image,
.page-template-wedding-hire-template .item__image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-template-fixed-hire-template .item__image img,
.page-template-wedding-hire-template .item__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Product Info */
.page-template-fixed-hire-template .item__info h4,
.page-template-wedding-hire-template .item__info h4 {
    color: #7E211A;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

/* Price Display */
.page-template-fixed-hire-template .text-danger,
.page-template-wedding-hire-template .text-danger {
    color: #7E211A !important;
    font-size: 1.5rem;
}

/* Form Fields */
.page-template-fixed-hire-template .datesfild,
.page-template-fixed-hire-template .hoursd1,
.page-template-wedding-hire-template .datesfild,
.page-template-wedding-hire-template .hoursd1 {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 10px 15px;
    color: #495057;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.page-template-fixed-hire-template .datesfild:focus,
.page-template-fixed-hire-template .hoursd1:focus,
.page-template-wedding-hire-template .datesfild:focus,
.page-template-wedding-hire-template .hoursd1:focus {
    border-color: #7E211A;
    box-shadow: 0 0 0 3px rgba(126, 33, 26, 0.1);
    outline: none;
}

/* Time Selection */
.page-template-fixed-hire-template .book_time-row,
.page-template-wedding-hire-template .book_time-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-template-fixed-hire-template .time-hour1,
.page-template-fixed-hire-template .time-min1,
.page-template-wedding-hire-template .time-hour1,
.page-template-wedding-hire-template .time-min1 {
    flex: 1;
}

/* Checkbox Items */
.page-template-fixed-hire-template .item__info h6,
.page-template-wedding-hire-template .item__info h6 {
    color: #495057;
    font-size: 0.95rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-template-fixed-hire-template .item__info h6 span,
.page-template-wedding-hire-template .item__info h6 span {
    color: #7E211A;
    font-weight: 600;
    min-width: 180px;
}

/* Submit Button */
.page-template-fixed-hire-template .btn_primary,
.page-template-wedding-hire-template .btn_primary {
    background: linear-gradient(135deg, #7E211A 0%, #9A2B2B 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-top: 20px;
    width: 100%;
}

.page-template-fixed-hire-template .btn_primary:hover,
.page-template-wedding-hire-template .btn_primary:hover {
    background: linear-gradient(135deg, #9A2B2B 0%, #7E211A 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(126, 33, 26, 0.2);
}

/* Hero Banner for Wedding Hire */
.page-template-wedding-hire-template .inner_banner {
    background: linear-gradient(rgba(36, 35, 35, 0.8), rgba(29, 28, 28, 0.9)), var(--banner-image);
    background-size: cover;
    background-position: center;
}

/* Responsive for Fixed/Wedding Hire */
@media (max-width: 768px) {
    .page-template-fixed-hire-template .btmgaps,
    .page-template-wedding-hire-template .btmgaps {
        padding: 20px 0;
    }
    
    .page-template-fixed-hire-template .item__info h4,
    .page-template-wedding-hire-template .item__info h4 {
        font-size: 1.25rem;
    }
    
    .page-template-fixed-hire-template .btn_primary,
    .page-template-wedding-hire-template .btn_primary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

