@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

: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; }
}
