:root {
  --color-bg-dark: #0f1115;
  --color-bg-card: #1a1d24;
  --color-gold: #d4af37;
  --color-gold-hover: #f3c74b;
  --color-text-main: #f8f9fa;
  --color-text-muted: #a0aab2;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

body {
  font-family: 'Inter', sans-serif !important;
  background-color: var(--color-bg-dark) !important;
  color: var(--color-text-main) !important;
}

h1, h2, h3, h4, h5, h6, .section-tittle h2, .hero__caption h1 {
  font-family: 'Outfit', sans-serif !important;
  color: #fff !important;
  text-transform: none !important;
}

/* Typography Overrides */
p {
  color: var(--color-text-muted) !important;
  font-family: 'Inter', sans-serif !important;
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
  overflow: hidden;
}

/* Section Backgrounds */
.about-area, .service-area, .best-pricing, .gallery-area, .home-blog-area, .team-area {
  background-color: var(--color-bg-dark) !important;
}

.cut-details.section-bg {
    background-color: var(--color-bg-card) !important;
    background-image: none !important;
}
.footer-area.section-bg {
    background-color: #08090a !important;
    background-image: none !important;
}

/* Booking Form */
.booking-form {
  background: rgba(15, 17, 21, 0.65) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
  border-radius: 20px !important;
  padding: 35px 30px !important;
  max-width: 500px;
  margin: 0 auto;
}

.booking-form label {
  color: var(--color-text-muted) !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px !important;
  font-weight: 600 !important;
}

.form-group input {
  background: rgba(0, 0, 0, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  padding: 14px 18px !important;
}

.form-group input:focus {
  background: rgba(0, 0, 0, 0.7) !important;
  border-color: var(--color-gold) !important;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15) !important;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

.toggle .option span {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--color-text-muted) !important;
  border: none !important;
  transition: all 0.3s !important;
}

.toggle {
   border: 1px solid rgba(255, 255, 255, 0.1) !important;
   border-radius: 12px !important;
   overflow: hidden;
}
.toggle .option:not(:last-child) span {
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.toggle .option input:checked + span {
  background: var(--color-gold) !important;
  color: #000 !important;
  font-weight: 700 !important;
}

.booking-form button {
  background: var(--color-gold) !important;
  color: #000 !important;
  border-radius: 12px !important;
  font-family: 'Outfit', sans-serif !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  margin-top: 25px !important;
  padding: 18px !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.booking-form button:hover {
  background: var(--color-gold-hover) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3) !important;
}

/* Service Cards */
.services-caption {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px !important;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s !important;
  padding: 40px 30px !important;
}

.services-caption:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(212, 175, 55, 0.3) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.services-caption .service-icon span {
  color: var(--color-gold) !important;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important;
}

.services-caption .service-icon::before {
    display: none !important;
}

/* Buttons */
.btn, .header-btn, .btn2Style {
  background: var(--color-gold) !important;
  color: #000 !important;
  border-radius: 30px !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2) !important;
  transition: all 0.3s ease !important;
  padding: 20px 40px !important;
}
.btn::before, .btn2Style::before { display: none !important; }

.btn:hover, .header-btn:hover, .btn2Style:hover {
  background: var(--color-gold-hover) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4) !important;
  color: #000 !important;
}

/* Header */
.header-transparent {
  background: rgba(15, 17, 21, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.main-header .main-menu ul li a {
  font-family: 'Inter', sans-serif !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px !important;
  transition: color 0.3s !important;
}

.main-header .main-menu ul li a:hover {
    color: #fff !important;
}
.main-header .main-menu ul li a::before, .main-header .main-menu ul li a::after {
    background: var(--color-gold) !important;
}

.main-header .main-menu ul li.active a {
  color: var(--color-gold) !important;
}

/* Texts and Titles */
.section-tittle span, .hero__caption span {
  color: var(--color-gold) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
}

/* Blog and Team */
.home-blog-single .blog-img-cap .blog-cap {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
  backdrop-filter: blur(8px);
  border-radius: 0 0 20px 20px !important;
}
.home-blog-single .blog-img-cap .blog-img img {
    border-radius: 20px 20px 0 0 !important;
}
.home-blog-single .blog-img-cap .blog-cap h3 a {
  color: #fff !important;
}
.team-area .single-team .team-caption {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 16px !important;
    background-image: none !important;
    box-shadow: var(--glass-shadow) !important;
    padding-top: 30px !important;
    bottom: -60px !important;
}
.team-area .single-team .team-caption::before {
    display: none !important;
}
.team-area .single-team .team-img img {
    border-radius: 20px !important;
}
.pricing-list ul li {
    color: var(--color-text-main) !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.pricing-list ul li:last-child {
    border-bottom: none !important;
}
.pricing-list ul li span {
    color: var(--color-gold) !important;
    background: rgba(212, 175, 55, 0.1) !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 13px !important;
}

.about-img img, .pricing-img1 {
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}

/* Animations Triggered by JS */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section Gradients */
.single-slider {
    position: relative;
    z-index: 1;
}
.single-slider::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(15, 17, 21, 0.95) 0%, rgba(15, 17, 21, 0.6) 50%, rgba(15, 17, 21, 0.4) 100%);
    z-index: -1;
}

.hero__caption p {
    font-size: 18px !important;
    opacity: 0.8 !important;
}

/* Custom User Requests: Footer Social Icons */
.footer-social a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    margin-right: 15px !important;
    padding-left: 0 !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.footer-social span {
    margin-right: 0 !important;
    position: static !important;
}
.footer-social span::before {
    display: none !important;
}

.footer-social a:hover {
    background: var(--color-gold) !important;
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5) !important;
    transform: translateY(-3px) !important;
}
.footer-social a:hover span {
    color: #000 !important;
}

/* Custom User Requests: Reduce Whitespace Globally */
.section-padding2 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}
@media (max-width: 991px) {
    .section-padding2 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}
.section-padding30 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}
@media (max-width: 991px) {
    .section-padding30 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}
.pb-170 { padding-bottom: 80px !important; }
.mb-100 { margin-bottom: 50px !important; }
.mb-90 { margin-bottom: 40px !important; }
.mb-80 { margin-bottom: 40px !important; }
.footer-padding { padding-top: 80px !important; padding-bottom: 40px !important; }
.about-area .about-caption { padding-top: 20px !important; }
.service-area .services-caption { padding: 30px 20px !important; }

/* Custom User Requests: Reduce Navbar Size */
.header-area .main-header {
    padding: 10px 50px !important;
    transition: padding 0.3s ease !important;
}
@media (max-width: 991px) {
    .header-area .main-header {
        padding: 10px 20px !important;
    }
}
.pt-20 {
    padding-top: 10px !important;
}
.logo img {
    width: 120px !important;
    max-width: 120px !important;
    transition: width 0.3s ease !important;
}
.main-header .main-menu ul li a {
    padding: 25px 20px !important;
}
.header-btn {
    padding: 15px 25px !important;
}

/* Shrunken navbar state after scrolling (handled by .scrolled JS class in modern UI) */
.scrolled .main-header {
    padding: 5px 50px !important;
}
.scrolled .logo img {
    width: 100px !important;
    max-width: 100px !important;
}

/* ---- ADVANCED UI POLISH ---- */

/* 1. Staggered Cascading Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.row > div:nth-child(1) .animate-on-scroll { transition-delay: 0.1s; }
.row > div:nth-child(2) .animate-on-scroll { transition-delay: 0.2s; }
.row > div:nth-child(3) .animate-on-scroll { transition-delay: 0.3s; }
.row > div:nth-child(4) .animate-on-scroll { transition-delay: 0.4s; }

/* 2. Premium Iconography Display */
.service-icon, .team-img, .cut-icon {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 25px !important;
}
.service-icon span.icon-symbol, .team-img span.icon-symbol, .cut-icon span.icon-symbol,
.service-icon i, .team-img i, .cut-icon i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 70px !important;
    height: 70px !important;
    background: rgba(212, 175, 55, 0.1) !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 50% !important;
    font-size: 30px !important;
    color: var(--color-gold) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15) !important;
    text-shadow: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.services-caption:hover .service-icon span.icon-symbol, .single-team:hover .team-img span.icon-symbol,
.services-caption:hover .service-icon i, .single-team:hover .team-img i {
    background: var(--color-gold) !important;
    color: #000 !important;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6) !important;
    transform: scale(1.1) !important;
}

/* 3. Image Styling & Integration */
.about-img img, .pricing-img1, .pricing-img2, .blog-img img {
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.about-img:hover img, .home-blog-single:hover .blog-img img {
    transform: scale(1.03) translateY(-5px) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8) !important;
}

/* 4. Taxis Verts (Eco-Friendly) Tint */
.taxis-verts-area {
    background: linear-gradient(135deg, rgba(8, 26, 17, 0.8), rgba(15, 17, 21, 1)) !important;
    border-top: 1px solid rgba(46, 204, 113, 0.1) !important;
    border-bottom: 1px solid rgba(46, 204, 113, 0.1) !important;
    position: relative;
    overflow: hidden;
}
.taxis-verts-area::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(46, 204, 113, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.taxis-verts-area .container { z-index: 1; position: relative; }
.taxis-verts-area .section-tittle span {
    color: #2ecc71 !important;
    background: -webkit-linear-gradient(left, #2ecc71, #27ae60) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important;
    animation: none !important;
}
.taxis-verts-area .pricing-list ul li span {
    color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.1) !important;
}
.taxis-verts-area .header-btn, .taxis-verts-area .btn2Style {
    background: #27ae60 !important;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.2) !important;
}
.taxis-verts-area .header-btn:hover, .taxis-verts-area .btn2Style:hover {
    background: #2ecc71 !important;
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4) !important;
}

/* 5. Testimonial Cards Redesign */
.cut-details .cut-active {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    justify-content: center !important;
}
.cut-details .single-cut {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    margin-right: 0 !important;
    flex: 1 1 300px !important;
    max-width: 400px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.cut-details .single-cut:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
}
.cut-details .single-cut .cut-descriptions p {
    font-size: 16px !important;
    font-style: italic !important;
    opacity: 0.9 !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.cut-details .single-cut .cut-descriptions span {
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--color-gold) !important;
}
.cut-details .cut-icon {
    margin-bottom: 20px !important;
}
.cut-details .cut-icon span.icon-symbol {
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
}

/* 6. Metallic Text Gradients */
.section-tittle span {
    background: -webkit-linear-gradient(left, #d4af37, #f3c74b, #d4af37) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: shine 3s linear infinite !important;
    display: inline-block !important;
}
@keyframes shine {
    to { background-position: 200% center; }
}

/* 7. Contact Page Form Enhancements */
.contact-section {
    background-color: var(--color-bg-dark) !important;
}
.contact-title {
    color: #fff !important;
    font-family: 'Outfit', sans-serif !important;
}
.form-contact .form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    color: #fff !important;
    padding: 15px 20px !important;
    font-family: 'Inter', sans-serif !important;
}
.form-contact .form-control:focus {
    background: rgba(0, 0, 0, 0.5) !important;
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2) !important;
}
.form-contact .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}
.contact-info__icon i {
    color: var(--color-gold) !important;
    font-size: 24px !important;
}
.contact-info .media-body h3 {
    color: #fff !important;
    font-family: 'Outfit', sans-serif !important;
}
.contact-info .media-body p {
    color: var(--color-text-muted) !important;
}
.button-contactForm {
    background: var(--color-gold) !important;
    border-radius: 30px !important;
    color: #000 !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    padding: 15px 40px !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.button-contactForm:hover {
    background: var(--color-gold-hover) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4) !important;
}

/* ========= ADVANCED ENHANCEMENT BATCH 2 ========= */

/* 8. Sub-Page Hero Banners � Dark Overlay & Polish */
.slider-area2 {
    position: relative;
    overflow: hidden;
}
.slider-height2 {
    background-color: var(--color-bg-dark) !important;
    min-height: 280px !important;
    position: relative;
    display: flex;
    align-items: center;
}
.slider-height2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,17,21,0.92) 0%, rgba(15,17,21,0.7) 100%);
    z-index: 0;
}
.slider-height2 .container {
    position: relative;
    z-index: 1;
}
.hero-cap2 h2 {
    font-family: 'Outfit', sans-serif !important;
    color: #fff !important;
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 800 !important;
    letter-spacing: -1px;
    position: relative;
}
.hero-cap2 h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* 9. Hide Decorative Shapes that Clash with Dark Theme */
.about-shape {
    display: none !important;
}

/* 10. Fix "About" Image Frame (the tan/gold overlapping boxes) */
.about-img {
    position: relative;
}
.about-img::before, .about-img::after {
    display: none !important;
}

/* 11. Contact Section Premium Glass Card Layout */
.contact-section {
    padding: 80px 0 !important;
}
.form-contact {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 40px !important;
    backdrop-filter: blur(10px) !important;
}
.contact-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
    font-weight: 800 !important;
    margin-bottom: 30px !important;
    position: relative;
    display: inline-block;
}
.contact-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-gold);
    margin-top: 10px;
    border-radius: 2px;
}
.contact-info {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    margin-bottom: 16px !important;
    transition: border-color 0.3s !important;
}
.contact-info:hover {
    border-color: rgba(212, 175, 55, 0.3) !important;
}
.contact-info__icon {
    width: 48px !important;
    height: 48px !important;
    background: rgba(212, 175, 55, 0.1) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin-right: 16px !important;
}

/* 12. Pricing images � stop them from being huge decorative elements */
.pricing-img {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-top: 40px !important;
}
.pricing-img1, .pricing-img2 {
    max-height: 320px !important;
    width: auto !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5) !important;
}

/* 13. Navigation active state & smooth underline indicator */
.main-header .main-menu ul li.active > a {
    color: var(--color-gold) !important;
    position: relative;
}
.main-header .main-menu ul li.active > a::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 1px;
}

/* 14. Footer Links Polish */
.footer-tittle h4, .footer-tittle h3 {
    color: #fff !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    margin-bottom: 20px !important;
}
.footer-tittle ul li {
    margin-bottom: 10px !important;
}
.footer-tittle ul li a {
    color: rgba(255,255,255,0.65) !important;
    transition: color 0.2s, padding-left 0.2s !important;
    display: inline-block;
}
.footer-tittle ul li a:hover {
    color: var(--color-gold) !important;
    padding-left: 6px !important;
}
.footer-number h3, .footer-number h4 {
    border-bottom: none !important;
    letter-spacing: normal !important;
    font-size: 22px !important;
    text-transform: none !important;
}
.footer-number h3 span, .footer-number h4 span {
    color: var(--color-gold) !important;
}
.footer-copy-right p {
    color: rgba(255,255,255,0.5) !important;
    font-size: 13px !important;
}

/* 15. Blog Cards Enhance */
.home-blog-single .blog-img-cap {
    border-radius: 20px !important;
    overflow: hidden;
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.home-blog-single .blog-img-cap:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5) !important;
}
.more-btn {
    color: var(--color-gold) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 1px;
    transition: color 0.2s !important;
}
.more-btn:hover {
    color: var(--color-gold-hover) !important;
}
.blog-date {
    background: var(--color-gold) !important;
    border-radius: 8px !important;
}
.blog-date span {
    color: #000 !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
}
.blog-date p {
    color: #000 !important;
    font-weight: 600 !important;
}
.blog-cap h3 a {
    color: #fff !important;
    transition: color 0.2s !important;
    font-family: 'Outfit', sans-serif !important;
}
.blog-cap h3 a:hover {
    color: var(--color-gold) !important;
}

/* 16. Scroll-to-top Button Polish */
#back-top a {
    background: var(--color-gold) !important;
    color: #000 !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 5px 15px rgba(212,175,55,0.4) !important;
    transition: all 0.3s !important;
}
#back-top a:hover {
    background: var(--color-gold-hover) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(212,175,55,0.5) !important;
}


/* ========= AUTOCOMPLETE DROPDOWN � DARK THEME ========= */
.autocomplete-suggestions {
    position: absolute !important;
    width: 100% !important;
    background: #1a1d24 !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 12px !important;
    max-height: 240px !important;
    overflow-y: auto !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6) !important;
    z-index: 1000 !important;
    margin-top: 4px !important;
    left: 0;
    top: 100%;
}
.autocomplete-suggestions:empty {
    display: none !important;
}
.suggestion-item {
    padding: 12px 16px !important;
    cursor: pointer !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    font-size: 14px !important;
    color: rgba(255,255,255,0.85) !important;
    font-family: 'Inter', sans-serif !important;
    transition: background 0.15s, color 0.15s !important;
    line-height: 1.4 !important;
}
.suggestion-item:last-child {
    border-bottom: none !important;
}
.suggestion-item:hover {
    background: rgba(212, 175, 55, 0.12) !important;
    color: #d4af37 !important;
}
.booking-form .form-group {
    position: relative !important;
}

/* ========= AUTOCOMPLETE DROPDOWN DARK THEME ========= */
.booking-form .form-group {
    position: relative !important;
    z-index: auto;
}
.booking-form .form-group:focus-within {
    z-index: 9999 !important;
}
.autocomplete-suggestions {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: #1a1d24 !important;
    border: 1px solid rgba(212,175,55,0.35) !important;
    border-radius: 12px !important;
    max-height: 240px !important;
    overflow-y: auto !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.8) !important;
    z-index: 99999 !important;
    margin-top: 4px !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.autocomplete-suggestions:empty {
    display: none !important;
}
.suggestion-item {
    display: block !important;
    padding: 11px 16px !important;
    cursor: pointer !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    font-size: 13px !important;
    color: rgba(255,255,255,0.9) !important;
    font-family: 'Inter', sans-serif !important;
    background: #1a1d24 !important;
    transition: background 0.15s, color 0.15s !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.suggestion-item:last-child {
    border-bottom: none !important;
}
.suggestion-item:hover,
.suggestion-item:focus {
    background: rgba(212,175,55,0.15) !important;
    color: #d4af37 !important;
}

/* 17. Keyboard accessibility and motion comfort */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.9) !important;
    outline-offset: 2px;
}

#back-top {
    transition: opacity 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* 18. Deep UX audit pass: spacing, rhythm, CTA hierarchy */
:root {
    --ux-space-xs: 8px;
    --ux-space-sm: 12px;
    --ux-space-md: 20px;
    --ux-space-lg: 32px;
    --ux-space-xl: 48px;
}

.section-tittle h2,
.hero__caption h1,
.hero-cap2 h2,
.contact-title {
    line-height: 1.18 !important;
    letter-spacing: -0.01em !important;
}

.section-tittle h2 {
    margin-bottom: var(--ux-space-md) !important;
}

.hero__caption p,
.about-caption p,
.service-cap p,
.contact-info .media-body p {
    line-height: 1.65 !important;
    margin-bottom: var(--ux-space-sm) !important;
}

.section-padding2,
.section-padding30,
.contact-section,
.gallery-area {
    padding-top: clamp(52px, 8vw, 96px) !important;
    padding-bottom: clamp(52px, 8vw, 96px) !important;
}

.about-area .about-caption,
.service-area .section-tittle,
.gallery-area .section-tittle {
    max-width: 64ch;
}

.header-right-btn .header-btn {
    font-size: 0.88rem !important;
    padding: 12px 20px !important;
    min-height: 40px !important;
}

.hero__caption .header-btn,
.hero__caption .btn2Style {
    font-size: 1rem !important;
    padding: 16px 30px !important;
    min-height: 48px !important;
}

.more-btn {
    font-size: 0.86rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
}

@media (max-width: 991px) {
    .main-header .main-menu ul li a {
        font-size: 13px !important;
        letter-spacing: 0.06em !important;
    }

    .hero__caption h1 {
        font-size: clamp(1.75rem, 6.6vw, 2.5rem) !important;
    }

    .hero__caption p {
        font-size: 0.98rem !important;
    }
}

@media (max-width: 767px) {
    .section-tittle {
        margin-bottom: 30px !important;
    }

    .section-tittle h2 {
        font-size: clamp(1.4rem, 6.2vw, 1.95rem) !important;
    }

    .services-caption,
    .contact-info,
    .form-contact {
        padding: 18px !important;
    }

    .home-blog-single .blog-img-cap .blog-cap {
        padding: 16px !important;
    }
}

/* 19. Compact layout pass (reduce empty whitespace) */
.section-padding2,
.section-padding30,
.contact-section,
.gallery-area,
.about-area,
.service-area,
.best-pricing,
.team-area,
.home-blog-area {
    padding-top: clamp(38px, 6vw, 72px) !important;
    padding-bottom: clamp(38px, 6vw, 72px) !important;
}

.mb-100 { margin-bottom: 34px !important; }
.mb-90 { margin-bottom: 28px !important; }
.mb-80 { margin-bottom: 24px !important; }
.mb-70 { margin-bottom: 22px !important; }
.mb-60 { margin-bottom: 20px !important; }
.mb-50 { margin-bottom: 18px !important; }
.mb-40 { margin-bottom: 16px !important; }
.mb-35 { margin-bottom: 14px !important; }
.mt-40 { margin-top: 22px !important; }
.mt-30 { margin-top: 16px !important; }
.mt-20 { margin-top: 12px !important; }

.about-area .about-caption { padding-top: 6px !important; }
.team-area .single-team .team-caption { bottom: -34px !important; }
.services-caption,
.single-team,
.single-cut,
.home-blog-single .blog-img-cap,
.contact-info {
    margin-bottom: 16px !important;
}

.pricing-list ul li {
    padding-top: 8px !important;
    padding-bottom: 10px !important;
}

.footer-padding {
    padding-top: 52px !important;
    padding-bottom: 24px !important;
}

.footer-top .single-footer-caption {
    margin-bottom: 20px !important;
}

.slider-height,
.slider-height2 {
    min-height: clamp(240px, 52vh, 560px) !important;
}

@media (max-width: 991px) {
    .section-padding2,
    .section-padding30,
    .contact-section,
    .gallery-area,
    .about-area,
    .service-area,
    .best-pricing,
    .team-area,
    .home-blog-area {
        padding-top: 34px !important;
        padding-bottom: 34px !important;
    }

    .footer-padding {
        padding-top: 38px !important;
        padding-bottom: 18px !important;
    }
}

@media (max-width: 767px) {
    .section-padding2,
    .section-padding30,
    .contact-section,
    .gallery-area,
    .about-area,
    .service-area,
    .best-pricing,
    .team-area,
    .home-blog-area {
        padding-top: 28px !important;
        padding-bottom: 28px !important;
    }

    .mb-100,
    .mb-90,
    .mb-80,
    .mb-70,
    .mb-60,
    .mb-50,
    .mb-40 { margin-bottom: 14px !important; }

    .mt-40,
    .mt-30,
    .mt-20 { margin-top: 10px !important; }

    .hero-cap2.pt-70 {
        padding-top: 36px !important;
    }

    .slider-height2 {
        min-height: 190px !important;
    }

    .footer-padding {
        padding-top: 26px !important;
        padding-bottom: 12px !important;
    }

    .footer-top .single-footer-caption {
        margin-bottom: 12px !important;
    }
}

/* 20. Autocomplete visual style (light list like reference) */
.autocomplete-suggestions {
    background: #171a20 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45) !important;
    max-height: 280px !important;
    overflow-y: auto !important;
}

.suggestion-item {
    background: #171a20 !important;
    color: #f4f6fb !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
    padding: 10px 12px !important;
    white-space: normal !important;
    line-height: 1.25 !important;
    transition: background-color 0.16s ease, color 0.16s ease !important;
}

.suggestion-item:last-child {
    border-bottom: none !important;
}

.suggestion-item:nth-child(even) {
    background: #191d24 !important;
}

.suggestion-main {
    color: #f8fafc !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
    margin-bottom: 2px;
    letter-spacing: 0.005em;
}

.suggestion-sub {
    color: #a9b3c3 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
}

.suggestion-item:hover,
.suggestion-item.is-active {
    background: rgba(212, 175, 55, 0.16) !important;
    border-bottom-color: rgba(212, 175, 55, 0.24) !important;
}

.suggestion-item:hover .suggestion-main,
.suggestion-item.is-active .suggestion-main {
    color: #f8fafc !important;
}

.suggestion-item:hover .suggestion-sub,
.suggestion-item.is-active .suggestion-sub {
    color: #d7deea !important;
}

@media (max-width: 767px) {
    .autocomplete-suggestions {
        max-height: 240px !important;
    }

    .suggestion-item {
        padding: 9px 10px !important;
    }

    .suggestion-main {
        font-size: 14px !important;
    }

    .suggestion-sub {
        font-size: 11px !important;
    }
}

.form-reassurance-note {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 12px;
  color: #9ba7ba !important;
}

.form-trust-block,
.form-urgency-block {
  margin: 10px 0 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.form-trust-block p,
.form-urgency-block p {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.35;
  color: #edf1f7 !important;
}

.form-trust-title {
  margin-bottom: 8px !important;
}

.form-trust-list {
  margin: 0;
  padding-left: 18px;
}

.form-trust-list li {
  margin-bottom: 4px;
  color: #edf1f7 !important;
  font-size: 13px;
  line-height: 1.35;
}

.form-trust-list li:last-child {
  margin-bottom: 0;
}

.form-trust-block p:last-child,
.form-urgency-block p:last-child {
  margin-bottom: 0;
}

.form-guarantee-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 10px;
}

.form-guarantee-row span {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #f5d37f;
  font-size: 11px;
  font-weight: 600;
}

.form-whatsapp-help {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 13px;
  color: #d7deea !important;
}

.form-urgency-inline {
  font-weight: 600;
  color: #f7df9a !important;
}

.form-whatsapp-help a {
  color: #25d366 !important;
  font-weight: 600;
  text-decoration: underline;
}

.form-social-proof {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.form-social-proof h4 {
  margin: 0 0 8px;
  font-size: 15px;
  color: #fff !important;
}

.social-proof-item {
  margin-bottom: 6px;
  padding-left: 12px;
  border-left: 2px solid rgba(212, 175, 55, 0.5);
  color: #dce4ef !important;
  font-size: 13px;
  line-height: 1.4;
}

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

/* Homepage redesign - screenshot match */
.homepage-header .header-transparent {
  background: #06090f !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: none !important;
}
.homepage-header .main-header {
  padding: 6px 30px !important;
}
.homepage-header .main-header .main-menu ul li a {
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 14px !important;
  color: #e9eef7 !important;
  opacity: 0.9;
}
.homepage-header .main-header .main-menu ul li.active > a {
  color: #ffffff !important;
}
.homepage-header .header-btn {
  padding: 10px 18px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  background: #111723 !important;
  color: #f9d474 !important;
  border: 1px solid rgba(249, 212, 116, 0.45) !important;
  box-shadow: none !important;
}
.homepage-header .whatsapp-head-btn {
  width: 39px;
  height: 39px;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  border-color: rgba(53, 214, 105, 0.5) !important;
  color: #44d36a !important;
}

.new-homepage {
  background: #06090f;
}
.new-homepage p {
  color: #b4bfd1 !important;
}
.new-hero {
  padding: 98px 0 16px;
  background: #06090f;
}
.new-hero .container {
  max-width: 1240px;
}
.new-hero-left {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: linear-gradient(112deg, rgba(8, 12, 20, 0.98) 0%, rgba(16, 24, 38, 0.95) 70%);
  padding: 24px 24px 18px;
  width: 100%;
  min-height: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(248, 198, 81, 0.12);
  color: #f6cb6b;
  border: 1px solid rgba(248, 198, 81, 0.3);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 11px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.new-hero-left h1 {
  font-size: clamp(34px, 4.6vw, 60px) !important;
  line-height: 1.02 !important;
  margin-bottom: 14px;
  font-weight: 800 !important;
  max-width: 620px;
}
.new-hero-left p {
  color: #d9e2ef !important;
  font-size: 18px;
  max-width: 600px;
  line-height: 1.48 !important;
  margin-bottom: 10px !important;
}
.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.hero-list li {
  color: #edf2fa;
  margin: 6px 0;
  font-size: 15px;
  font-weight: 500;
}
.hero-list li:before {
  content: "\2713";
  color: #f1c55e;
  margin-right: 8px;
}
.hero-rating {
  color: #f8d57c;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 14px;
}
.hero-car {
  width: 100%;
  max-height: 208px;
  object-fit: cover;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.booking-form-modern {
  width: 100%;
  background: #101722 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  padding: 18px !important;
}
.booking-form-modern h3,
.booking-form-modern .booking-title {
  color: #f4f7fd !important;
  margin-bottom: 4px;
  font-size: 26px !important;
  text-transform: uppercase;
}
.booking-subtitle {
  font-size: 13px;
  margin-bottom: 12px;
  color: #adb8ca !important;
}
.booking-form-modern .form-group {
  margin-bottom: 8px;
}
.form-group-compact {
  display: none !important;
}
.trip-radios-compat {
  display: none !important;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.booking-form-modern input,
.booking-form-modern select,
.booking-form-modern .phone-prefix {
  background: #161e2b !important;
  border: 1px solid #263040 !important;
  color: #ecf2fb !important;
  border-radius: 10px !important;
  min-height: 47px !important;
  font-size: 13px !important;
  padding: 11px 12px !important;
}
.booking-form-modern input::placeholder {
  color: #95a2b6 !important;
}
.booking-form-modern button[type="submit"] {
  border-radius: 10px !important;
  margin-top: 8px !important;
  min-height: 44px;
  font-size: 13px !important;
  background: linear-gradient(180deg, #f1c85f 0%, #d6a941 100%) !important;
  color: #121826 !important;
}

.new-features-strip {
  padding: 0 0 24px;
}
.feature-pill {
  text-align: left;
  background: #0e141f;
  color: #f1f5fb;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
}
.feature-pill strong {
  display: block;
  color: #eef3fb;
  font-size: 13px;
}
.feature-pill span {
  display: block;
  color: #93a1b6;
  font-size: 11px;
}

.new-services,
.new-testimonials,
.new-fleet {
  padding: 34px 0 16px;
}
.section-head {
  text-align: center;
  margin-bottom: 18px;
}
.section-head span {
  margin-bottom: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e3b95e !important;
}
.section-head h2 {
  font-size: clamp(28px, 2.8vw, 44px) !important;
}
.new-service-card,
.testimonial-card,
.fleet-card,
.trust-panel {
  background: #0f1623;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.new-service-card:hover,
.testimonial-card:hover,
.fleet-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 188, 93, 0.4);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
}
.new-service-card img,
.fleet-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 9px;
  margin-bottom: 10px;
}
.new-service-card h3,
.fleet-card h4 {
  font-size: 22px;
  margin-bottom: 4px;
}
.new-service-card p,
.fleet-card p,
.testimonial-card p,
.trust-panel p {
  font-size: 12px;
  line-height: 1.45;
}
.trust-panel h3 {
  font-size: 25px !important;
}
.trust-panel strong {
  color: #f4cd73;
}
.testimonial-card span {
  color: #f4cd73;
  font-weight: 700;
  font-size: 13px;
}
.testimonial-card .stars {
  color: #f2c866;
  font-size: 12px;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.testimonial-card .bi-google {
  color: #e8edf7;
  font-size: 14px;
  float: right;
}

.whatsapp-banner {
  padding: 20px 0 14px;
}
.whatsapp-banner .container {
  background: #0f1c14;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: 12px;
  padding: 12px 16px;
}
.whatsapp-banner h3 {
  margin: 0 0 2px;
  font-size: 33px;
}
.whatsapp-banner p {
  margin: 0;
  color: #b8e8c6 !important;
}
.whatsapp-banner-btn {
  background: #27d367;
  color: #082714 !important;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
}

.form-footer-points {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.form-footer-points li {
  color: #9aa8bc;
  font-size: 11px;
  margin: 4px 0;
}
.form-footer-points li::before {
  content: "✓";
  color: #f0c864;
  margin-right: 7px;
}

@media (max-width: 991px) {
  .new-hero {
    padding-top: 76px;
  }
  .new-hero-left {
    margin-bottom: 14px;
  }
  .new-hero-left h1 {
    font-size: clamp(30px, 8vw, 46px) !important;
  }
  .booking-form-modern h3,
  .booking-form-modern .booking-title {
    font-size: 22px !important;
  }
  .whatsapp-banner-btn {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .form-trust-block p,
  .form-urgency-block p,
  .form-whatsapp-help,
  .social-proof-item {
    font-size: 12px;
  }

  .form-reassurance-note {
    font-size: 11px;
    line-height: 1.35;
  }

  .form-trust-block,
  .form-urgency-block,
  .form-social-proof {
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 7px;
  }

  .form-trust-title {
    font-size: 12px !important;
    line-height: 1.35;
  }

  .form-trust-list {
    padding-left: 15px;
  }

  .form-trust-list li {
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 3px;
  }

  .form-guarantee-row {
    gap: 6px;
    margin-bottom: 8px;
  }

  .form-guarantee-row span {
    font-size: 10px;
    padding: 3px 7px;
  }

  .form-urgency-inline {
    display: block;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .form-whatsapp-help {
    font-size: 11px;
    line-height: 1.35;
    margin-top: 8px;
  }

  .form-social-proof h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .social-proof-item {
    font-size: 11px;
    line-height: 1.32;
    margin-bottom: 5px;
  }

}

/* Enhancement pass */
.new-homepage {
  background-image:
    radial-gradient(circle at 14% 2%, rgba(244, 193, 85, 0.08), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(57, 86, 140, 0.14), transparent 36%);
}

.new-hero-left,
.booking-form-modern,
.new-service-card,
.testimonial-card,
.fleet-card,
.trust-panel,
.whatsapp-banner .container {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.new-hero-left h1,
.section-head h2 {
  text-wrap: balance;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(244, 205, 115, 0.32);
  background: rgba(244, 205, 115, 0.08);
}

.feature-pill {
  position: relative;
  overflow: hidden;
}

.feature-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.08) 50%, transparent 90%);
  transform: translateX(-130%);
  transition: transform 0.5s ease;
}

.feature-pill:hover::after {
  transform: translateX(130%);
}

.booking-form-modern input:focus,
.booking-form-modern select:focus {
  border-color: rgba(241, 200, 95, 0.78) !important;
  box-shadow: 0 0 0 3px rgba(241, 200, 95, 0.18) !important;
}

.booking-form-modern button[type="submit"] {
  letter-spacing: 0.04em;
}

.booking-form-modern button[type="submit"]:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 10px 24px rgba(214, 169, 65, 0.28) !important;
}

.whatsapp-banner-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.fleet-card h4,
.new-service-card h3 {
  line-height: 1.25 !important;
}

.testimonial-card {
  border-left: 2px solid rgba(244, 205, 115, 0.45);
}

@media (max-width: 991px) {
  .new-services,
  .new-testimonials,
  .new-fleet {
    padding-top: 24px;
  }

  .section-head h2 {
    font-size: clamp(24px, 6vw, 34px) !important;
  }
}

@media (max-width: 767px) {
  .new-hero {
    padding-top: 68px;
  }

  .new-hero-left {
    padding: 20px 18px 16px;
  }

  .hero-rating {
    font-size: 14px;
    padding: 5px 10px;
  }

  .booking-form-modern {
    padding: 16px !important;
    border-radius: 12px !important;
  }

  .booking-form-modern h3,
  .booking-form-modern .booking-title {
    font-size: 20px !important;
  }

  .new-service-card img,
  .fleet-card img {
    height: 136px;
  }

  .whatsapp-banner h3 {
    font-size: 22px;
  }
}

/* Final pixel-lock pass */
.homepage-header .main-header {
  min-height: 58px !important;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.homepage-header .logo img {
  width: 116px !important;
  max-width: 116px !important;
}

.homepage-header .main-header .main-menu ul li a {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
  font-size: 13px !important;
}

.homepage-header .header-btn {
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 14px !important;
}

.homepage-header .whatsapp-head-btn {
  width: 36px !important;
  height: 36px !important;
}

.new-hero {
  padding-top: 92px !important;
  padding-bottom: 12px !important;
}

.new-hero .row {
  margin-left: -8px !important;
  margin-right: -8px !important;
}

.new-hero .row > [class*="col-"] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.new-hero-left {
  border-radius: 12px !important;
  padding: 22px 22px 14px !important;
}

.new-hero-left h1 {
  font-size: clamp(36px, 4.8vw, 62px) !important;
  line-height: 0.98 !important;
  margin-bottom: 10px !important;
}

.hero-list {
  margin-bottom: 12px !important;
}

.hero-list li {
  margin: 4px 0 !important;
  font-size: 14px !important;
}

.hero-car {
  max-height: 198px !important;
}

.booking-form-modern {
  border-radius: 12px !important;
  padding: 14px !important;
}

.booking-form-modern h3,
.booking-form-modern .booking-title {
  font-size: 24px !important;
  margin-bottom: 2px !important;
}

.booking-subtitle {
  font-size: 12px !important;
  margin-bottom: 10px !important;
}

.booking-form-modern .form-group {
  margin-bottom: 7px !important;
}

.booking-form-modern input,
.booking-form-modern select,
.booking-form-modern .phone-prefix {
  height: 42px !important;
  min-height: 42px !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  padding: 10px 11px !important;
}

.booking-form-modern .form-row {
  margin-left: -4px !important;
  margin-right: -4px !important;
}

.booking-form-modern .form-row > [class*="col-"] {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.booking-form-modern button[type="submit"] {
  height: 42px !important;
  min-height: 42px !important;
  border-radius: 8px !important;
  margin-top: 6px !important;
  font-size: 12px !important;
}

.form-footer-points {
  margin-top: 8px !important;
}

.form-footer-points li {
  font-size: 10.5px !important;
  margin: 3px 0 !important;
}

.new-features-strip {
  padding-top: 0 !important;
  padding-bottom: 14px !important;
}

.feature-pill {
  border-radius: 8px !important;
  padding: 8px 10px !important;
  margin-bottom: 8px !important;
}

.feature-pill strong {
  font-size: 12px !important;
}

.feature-pill span {
  font-size: 10px !important;
}

.new-services,
.new-testimonials,
.new-fleet {
  padding-top: 24px !important;
  padding-bottom: 10px !important;
}

.section-head {
  margin-bottom: 14px !important;
}

.section-head h2 {
  margin-bottom: 0 !important;
}

.new-service-card,
.testimonial-card,
.fleet-card,
.trust-panel {
  border-radius: 10px !important;
  padding: 10px !important;
}

.new-service-card img,
.fleet-card img {
  height: 138px !important;
  border-radius: 8px !important;
  margin-bottom: 8px !important;
}

.new-service-card h3,
.fleet-card h4 {
  font-size: 18px !important;
  margin-bottom: 3px !important;
}

.new-service-card p,
.fleet-card p,
.testimonial-card p,
.trust-panel p {
  font-size: 11.5px !important;
  margin-bottom: 4px !important;
}

.trust-panel h3 {
  font-size: 22px !important;
}

.testimonial-card .stars {
  font-size: 11px !important;
  margin-bottom: 4px !important;
}

.whatsapp-banner {
  padding-top: 14px !important;
  padding-bottom: 10px !important;
}

.whatsapp-banner .container {
  border-radius: 10px !important;
  padding: 10px 14px !important;
}

.whatsapp-banner h3 {
  font-size: 29px !important;
  line-height: 1.04 !important;
}

.whatsapp-banner p {
  font-size: 12px !important;
}

.whatsapp-banner-btn {
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 14px !important;
  font-size: 12px !important;
  display: inline-flex !important;
  align-items: center !important;
}

@media (max-width: 991px) {
  .new-hero {
    padding-top: 76px !important;
  }

  .new-hero-left h1 {
    font-size: clamp(30px, 7.5vw, 46px) !important;
  }

  .booking-form-modern input,
  .booking-form-modern select {
    height: 40px !important;
    min-height: 40px !important;
  }
}

/* Typography micro-pass */
.homepage-header .main-header .main-menu ul li a {
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
}

/* Prefer local/system fonts for better performance */
body,
input,
select,
button,
p,
a,
li,
span {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
.section-head h2,
.booking-title {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif !important;
}

.new-hero-left h1 {
  font-weight: 800 !important;
  letter-spacing: -0.015em !important;
}

.new-hero-left p {
  font-weight: 400 !important;
  letter-spacing: 0.002em !important;
}

.hero-badge {
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
}

.hero-list li {
  font-weight: 500 !important;
  letter-spacing: 0.001em !important;
}

.booking-form-modern h3,
.booking-form-modern .booking-title {
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

.booking-subtitle {
  font-weight: 400 !important;
  letter-spacing: 0.005em !important;
}

.booking-form-modern input,
.booking-form-modern select {
  font-weight: 400 !important;
  letter-spacing: 0.002em !important;
}

.booking-form-modern input::placeholder {
  font-weight: 400 !important;
  letter-spacing: 0.003em !important;
}

.booking-form-modern button[type="submit"] {
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
}

.feature-pill strong {
  font-weight: 600 !important;
  letter-spacing: 0.004em !important;
}

.feature-pill span {
  font-weight: 400 !important;
  letter-spacing: 0.003em !important;
}

.section-head span {
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
}

.section-head h2 {
  font-weight: 700 !important;
  letter-spacing: -0.008em !important;
  line-height: 1.16 !important;
}

.new-service-card h3,
.fleet-card h4 {
  font-weight: 600 !important;
  letter-spacing: -0.004em !important;
}

.new-service-card p,
.fleet-card p,
.testimonial-card p,
.trust-panel p {
  font-weight: 400 !important;
  letter-spacing: 0.001em !important;
}

.trust-panel h3 {
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

.trust-panel strong,
.testimonial-card .stars {
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

.testimonial-card span {
  font-weight: 600 !important;
  letter-spacing: 0.005em !important;
}

.whatsapp-banner h3 {
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

.whatsapp-banner p {
  font-weight: 400 !important;
  letter-spacing: 0.002em !important;
}

.whatsapp-banner-btn {
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

/* Compatibility for updated semantic/icon markup */
.fleet-card h3 {
  font-weight: 600 !important;
  letter-spacing: -0.004em !important;
  font-size: 18px !important;
  margin-bottom: 3px !important;
}
.testimonial-card .icon-google {
  color: #e8edf7;
  font-size: 14px;
  float: right;
  font-weight: 700;
}
.whatsapp-head-btn span,
.floating-call-btn span,
.floating-phone-btn span {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}

/* ========= CRO IMPROVEMENTS BATCH ========= */

/* 1. Hero USP Badges */
.hero-usps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    width: min(100%, 560px);
    justify-content: center;
    align-items: center;
}
.hero-usp-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 10px;
    color: rgba(245, 247, 251, 0.94);
    font-size: 11px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    line-height: 1.2;
    letter-spacing: 0.01em;
    box-shadow: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    min-height: 32px;
    min-width: 150px;
}
.hero-usp-item span {
    display: inline;
    text-align: center;
    text-transform: none !important;
    letter-spacing: inherit !important;
    color: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;
}
.hero-usp-item i {
    display: none !important;
}
.hero-usp-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.36);
    color: #ffffff;
}

/* 2. Partner / Hub Banner */
.partner-trust-banner {
    background: linear-gradient(90deg, #0a0b0e 0%, #15171d 50%, #0a0b0e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    margin-bottom: 0;
}
.partner-trust-banner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.partner-trust-banner p {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-bottom: 16px;
    font-weight: 700;
}
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.partner-logo-item {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.4s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.partner-logo-item i {
    font-size: 20px;
    color: rgba(212, 175, 55, 0.35);
    transition: color 0.4s;
}
.partner-logo-item:hover, .partner-logo-item:hover i {
    color: #fff;
}

/* 3. Footer Trust & Payment */
.footer-trust-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}
.trust-stars {
    color: #00b67a; /* Trustpilot Green */
    font-size: 18px;
    letter-spacing: 2px;
}
.trust-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}
.footer-payments {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}
.footer-payments i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}
.footer-payments i:hover {
    color: var(--color-gold);
}

/* Publish polish pass: cross-page UI/UX consistency */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.section-tittle h2,
.section-head h1 {
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.header-btn,
.more-btn,
.mobile-cta-reserve {
    border-radius: 12px;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.header-btn:hover,
.more-btn:hover,
.mobile-cta-reserve:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

.services-caption,
.single-team,
.home-blog-single {
    border-radius: 16px;
    overflow: hidden;
}

.services-caption p,
.single-team p,
.blog-cap p {
    line-height: 1.65;
}

@media (max-width: 991.98px) {
    .section-tittle {
        margin-bottom: 44px !important;
    }
    .section-tittle h2,
    .section-head h1 {
        font-size: clamp(28px, 7vw, 40px) !important;
    }
}
