/* ========================================
   Hotel Dream Basanti - Premium Theme Colors
   International Luxury Hotel Design
   ======================================== */

/* Primary Brand Colors - Elegant Gold & Deep Navy */
:root {
    --primary-gold: #D4AF37;      /* Luxury Gold */
    --primary-dark: #1a2332;      /* Deep Navy Blue */
    --accent-teal: #2C8C99;       /* Ocean Teal */
    --text-light: rgba(255,255,255,0.85);
    --border-gold: #C9A961;
}

/* Logo and Hotel Name Styling */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.logo-wrapper .logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
    transition: all 0.4s ease;
}

.logo-wrapper .logo-img:hover {
    filter: drop-shadow(0 6px 15px rgba(212, 175, 55, 0.5));
    transform: scale(1.05);
}

.logo-wrapper .hotel-name {
    font-family: 'Gilda Display', serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
    white-space: nowrap;
    transition: all 0.4s ease;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
    position: relative;
    padding: 5px 0;
}

.logo-wrapper .hotel-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #F4D03F);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.logo-wrapper .hotel-name:hover::after {
    width: 100%;
}

.logo-wrapper .hotel-name:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.6));
}

.nav-scroll .logo-wrapper .hotel-name {
    background: linear-gradient(135deg, #1a2332 0%, #2C8C99 50%, #1a2332 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-scroll .logo-wrapper .hotel-name:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 991px) {
    .logo-wrapper .hotel-name {
        font-size: 22px;
        letter-spacing: 1px;
    }
    .logo-wrapper .logo-img {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .logo-wrapper {
        gap: 12px;
    }
    .logo-wrapper .hotel-name {
        font-size: 18px;
    }
    .logo-wrapper .logo-img {
        height: 50px;
    }
}

/* Replace old bronze color with luxury gold */
a:hover,
h2 span,
.section-subtitle,
.butn-dark2 span,
.nav-scroll .navbar-nav .active,
.navbar-nav .active,
.navbar-nav .nav-link:hover,
.progress-wrap svg.progress-circle path,
.footer-explore-list li a:hover,
.star-rating,
.valign h5,
.animate-box h5,
.pricing-card .title,
.team-member h5 {
    color: #D4AF37 !important;
}

/* Buttons & Call-to-Actions */
.butn-dark,
.butn-dark2,
button.butn-dark2,
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: linear-gradient(135deg, #D4AF37 0%, #C9A961 100%) !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

/* Make button text always visible */
.butn-dark span,
.butn-dark2 span,
button.butn-dark2 span {
    color: #fff !important;
    position: relative;
    z-index: 2;
}

.butn-dark:hover,
.butn-dark2:hover {
    background: linear-gradient(135deg, #C9A961 0%, #B8984A 100%) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* Navigation Active States */
.nav-scroll .navbar-nav .active,
.navbar-nav .nav-link.active {
    color: #D4AF37 !important;
    border-bottom: 2px solid #D4AF37;
}

/* Borders & Accents */
.section-padding,
.about .cont,
.pricing-card,
.rooms .item,
.gallery-box {
    border-top: 3px solid #D4AF37;
}

/* Progress & Loading Elements */
.preloader-position:before {
    border: 3px solid #D4AF37;
    border-top-color: transparent;
}

/* Icon Colors */
.flaticon-call:before,
.flaticon-envelope:before,
.flaticon-location-pin:before,
.ti-check,
.icon span {
    color: #D4AF37;
}

/* Footer Links & Social */
.footer-about-social-list a:hover,
.footer-explore-list li a:hover {
    color: #D4AF37 !important;
    transform: translateX(5px);
}

.footer-about-social-list a {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.footer-about-social-list a:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #1a2332 !important;
}

/* Enhanced Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-scroll {
    background: rgba(255, 255, 255, 0.98) !important;
}

/* Premium Card Styles */
.rooms .item,
.pricing-card,
.team-member {
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.rooms .item:hover,
.pricing-card:hover,
.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
}

/* Section Titles */
.section-title {
    color: #D4AF37;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

/* Input Focus States */
input:focus,
textarea:focus,
select:focus {
    border-color: #D4AF37 !important;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25) !important;
}

/* Testimonials & Quotes */
.testimonials blockquote:before,
.testimonials blockquote:after {
    color: #D4AF37;
}

/* Room Details */
.rooms .item .category a,
.pricing-card .price {
    color: #D4AF37 !important;
    font-weight: 600;
}

/* Enhanced Banner Overlay */
.banner-header:after {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85) 0%, rgba(44, 140, 153, 0.75) 100%);
}

/* Professional Touch - Smooth Animations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a, button, .nav-link, .footer-explore-list li a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Hover Effects */
.link-btn:hover,
.more a:hover {
    color: #D4AF37 !important;
    padding-left: 10px;
}

/* Gallery Image Hover */
.gallery-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Reservation Form */
.form-control:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}

/* Pricing Active State */
.pricing-card.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 35, 50, 0.05) 100%);
    border: 2px solid #D4AF37;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a2332;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #D4AF37, #C9A961);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .navbar {
        background: rgba(26, 35, 50, 0.98);
    }
    
    .butn-dark,
    .butn-dark2 {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* International Standard Typography */
body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gilda Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Professional Contact Information Display */
.footer-contact-phone,
.footer-contact-mail {
    color: #D4AF37;
    font-weight: 500;
}

/* Enhanced Image Containers */
.img-zoom:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Luxury Badge/Label Styles */
.category a {
    background: linear-gradient(135deg, #D4AF37, #C9A961);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium Footer Design */
.footer {
    background: linear-gradient(180deg, #1a2332 0%, #0f1419 100%);
    border-top: 3px solid #D4AF37;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* White Navbar Text Colors */
.navbar .navbar-nav .nav-link {
    color: #1a2332 !important;
}

.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: #1a2332 !important;
}

.nav-scroll .navbar-nav .nav-link {
    color: #1a2332 !important;
}

.nav-scroll .navbar-toggler-icon,
.nav-scroll .icon-bar {
    color: #1a2332 !important;
}

/* Enhanced Contact Section Styling */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="%23D4AF37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h3 {
    color: #1a2332 !important;
    font-size: 32px !important;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #D4AF37 0%, #C9A961 100%);
    border-radius: 2px;
}

.contact p {
    color: #555 !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin-bottom: 30px !important;
    font-weight: 400;
    text-align: justify;
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #D4AF37;
    position: relative;
}

.contact p::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: #D4AF37;
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

/* Enhanced Reservations Styling */
.reservations {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.reservations:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
}

.reservations .text p {
    color: #888 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px !important;
    font-weight: 600;
}

.reservations .text a {
    color: #1a2332 !important;
    font-size: 18px !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.reservations .text a:hover {
    color: #D4AF37 !important;
}

/* Enhanced Contact Form Styling */
.contact .contact__form input[type="password"],
.contact .contact__form input[type="email"],
.contact .contact__form input[type="text"],
.contact .contact__form textarea {
    color: #1a2332 !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 2px solid #e0e0e0 !important;
    border-radius: 8px 8px 0 0;
    padding: 15px 10px 10px 10px !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact .contact__form input[type="password"]:focus,
.contact .contact__form input[type="email"]:focus,
.contact .contact__form input[type="text"]:focus,
.contact .contact__form textarea:focus {
    border-bottom-color: #D4AF37 !important;
    background-color: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.2);
}

/* Enhanced Placeholder Styling for Contact Form */
.contact .contact__form input::-webkit-input-placeholder {
    color: #666 !important;
    font-weight: 400;
    opacity: 1;
}

.contact .contact__form input:-moz-placeholder {
    color: #666 !important;
    font-weight: 400;
    opacity: 1;
}

.contact .contact__form input::-moz-placeholder {
    color: #666 !important;
    font-weight: 400;
    opacity: 1;
}

.contact .contact__form input:-ms-input-placeholder {
    color: #666 !important;
    font-weight: 400;
    opacity: 1;
}

.contact .contact__form textarea::-webkit-input-placeholder {
    color: #666 !important;
    font-weight: 400;
    opacity: 1;
}

.contact .contact__form textarea:-moz-placeholder {
    color: #666 !important;
    font-weight: 400;
    opacity: 1;
}

.contact .contact__form textarea::-moz-placeholder {
    color: #666 !important;
    font-weight: 400;
    opacity: 1;
}

.contact .contact__form textarea:-ms-input-placeholder {
    color: #666 !important;
    font-weight: 400;
    opacity: 1;
}

/* Enhanced Form Group Styling */
.contact .form-group {
    position: relative;
    margin-bottom: 25px;
}

/* Get in Touch Heading Enhancement */
.contact .col-md-5 h3 {
    color: #1a2332 !important;
    font-size: 28px !important;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Enhanced Professional Map Section */
.map-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 30px;
    position: relative;
}

/* Map Loading Message */
.map-container::after {
    content: 'Loading Hotel Dream Basanti Location...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 35, 50, 0.9);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.map-container.loading::after {
    opacity: 1;
}

.map-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #1a2332;
    padding: 25px 30px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.map-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #D4AF37 0%, #C9A961 100%);
    border-radius: 2px;
}

.map-header h4 {
    color: #1a2332 !important;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-header p {
    color: #666 !important;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

.map-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border-radius: 0 0 15px 15px;
    position: relative;
    z-index: 5;
}

.map-container iframe:hover {
    box-shadow: inset 0 0 0 2px rgba(212, 175, 55, 0.3);
}

/* Ensure Map Visibility */
.map-container iframe[src*="google.com/maps"] {
    min-height: 600px;
    opacity: 1;
    visibility: visible;
    background-color: #f8f9fa;
}

/* Override any conflicting styles */
.map iframe {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Remove grayscale filter from map */
.map,
.contact .map,
.map-container {
    filter: none !important;
    -webkit-filter: none !important;
}

/* Map container positioning fix */
.contact .map {
    position: relative;
    z-index: 1;
}

/* Map Info Overlay */
.map-info-overlay {
    position: absolute;
    top: 80px;
    right: 20px;
    z-index: 10;
    pointer-events: none;
}

.map-info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #D4AF37;
    max-width: 280px;
    backdrop-filter: blur(10px);
}

.map-info-card h5 {
    color: #1a2332 !important;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-info-card p {
    color: #666 !important;
    font-size: 13px;
    margin-bottom: 8px !important;
    line-height: 1.4;
}

.map-info-card small {
    color: #D4AF37 !important;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Get Directions Button */
.map-directions-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #C9A961 100%);
    color: white !important;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
}

.map-directions-btn:hover {
    background: linear-gradient(135deg, #C9A961 0%, #B8984A 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: white !important;
    text-decoration: none;
    border-color: #D4AF37;
}

/* Map Loading Enhancement */
.map-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 30px;
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 25%, rgba(212, 175, 55, 0.05) 25%, rgba(212, 175, 55, 0.05) 50%, transparent 50%, transparent 75%, rgba(212, 175, 55, 0.05) 75%);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.map-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D4AF37 0%, #C9A961 100%);
    color: white !important;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.map-directions-btn:hover {
    background: linear-gradient(135deg, #C9A961 0%, #B8984A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: white !important;
    text-decoration: none;
}

.map-directions-btn i {
    margin-right: 8px;
    font-size: 16px;
}

/* Map Container Hover Effect */
.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #D4AF37;
}

/* Responsive Map Design */
@media (max-width: 768px) {
    .map-header {
        padding: 20px 20px;
    }
    
    .map-header h4 {
        font-size: 20px;
    }
    
    .map-container iframe {
        height: 400px;
    }
    
    .map-footer {
        padding: 15px 20px;
    }
    
    .map-directions-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Enhanced About Section Text Styling */
.about .intro-text {
    font-size: 18px !important;
    line-height: 1.9 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    padding: 25px 30px !important;
    border-radius: 10px;
    margin-bottom: 30px !important;
    font-weight: 600 !important;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #D4AF37;
}

.about .closing-text {
    font-size: 18px !important;
    line-height: 1.9 !important;
    color: #fff !important;
    margin-top: 25px !important;
    margin-bottom: 0 !important;
    font-weight: 600 !important;
    padding: 0 0 0 45px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about .closing-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #D4AF37 0%, #C9A961 100%);
    border-radius: 3px;
}

/* Feature List Styling */
.feature-list {
    margin: 25px 0;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenities-list li {
    font-size: 18px !important;
    line-height: 2.5;
    color: #fff !important;
    font-weight: 600 !important;
    padding-left: 45px;
    position: relative;
    margin-bottom: 18px;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.amenities-list li:hover {
    color: #D4AF37 !important;
    transform: translateX(8px);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.amenities-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #D4AF37;
    font-size: 24px !important;
    font-weight: bold;
    background: rgba(26, 35, 50, 0.8);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Section Title Enhancement */
.about .section-title {
    margin-bottom: 20px !important;
    color: #D4AF37 !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about .section-subtitle {
    color: #D4AF37 !important;
    margin-bottom: 10px !important;
}

/* About Section General Improvements */
.about p {
    color: #555 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about .intro-text,
    .about .closing-text {
        text-align: left;
        font-size: 15px !important;
    }
    
    .amenities-list li {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* Enhanced Hotel Facilities Section */
.facilties .single-facility p {
    font-size: 18px !important;
    line-height: 1.9 !important;
    color: #fff !important;
    font-weight: 600 !important;
    margin: 15px 0 0 0 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.facilties .single-facility h5 {
    font-size: 26px !important;
    color: #D4AF37 !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.facilties .single-facility {
    border-color: rgba(212, 175, 55, 0.2) !important;
    transition: all 0.3s ease;
}

.facilties .single-facility:hover {
    border-color: #D4AF37 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.facilties .single-facility:hover h5 {
    color: #C9A961 !important;
}

.facilties .single-facility span {
    color: #D4AF37 !important;
}

/* Facilities Section Title */
.facilties .section-title {
    color: #D4AF37 !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.facilties .section-subtitle {
    color: #D4AF37 !important;
}

/* ============================================
   HERO SLIDER - PREMIUM SHINY & VIBRANT EFFECT
   ============================================ */

/* Make slider images vibrant, bright and shiny */
.header.slider-fade .item.bg-img {
    position: relative;
    overflow: hidden;
}

/* Enhanced background image with brightness and vibrance */
.header.slider-fade .item.bg-img::before {
    background: inherit;
    background-size: cover !important;
    background-position: center !important;
    filter: brightness(1.25) contrast(1.15) saturate(1.3) !important;
    opacity: 1 !important;
}

/* Reduce dark overlay to show vibrant images */
.header.slider-fade .item[data-overlay-dark="2"]::after,
.header.slider-fade .item[data-overlay-dark="3"]::after {
    background: rgba(26, 35, 50, 0.35) !important; /* Much lighter overlay */
}

.header.slider-fade .item[data-overlay-dark="1"]::after {
    background: rgba(26, 35, 50, 0.25) !important; /* Very light overlay */
}

/* Add subtle shine/glow effect on slider */
.header.slider-fade .item::after {
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.1);
}

/* Premium shine animation on slider transition */
.header.slider-fade .owl-item.active .item::before {
    animation: shineEffect 1.5s ease-in-out;
}

@keyframes shineEffect {
    0% {
        filter: brightness(1) contrast(1.1) saturate(1.2);
    }
    50% {
        filter: brightness(1.3) contrast(1.2) saturate(1.4);
    }
    100% {
        filter: brightness(1.25) contrast(1.15) saturate(1.3);
    }
}

/* Add glossy overlay effect for premium look */
.header.slider-fade .item::after {
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.08) 0%,
        rgba(26, 35, 50, 0.35) 50%,
        rgba(44, 140, 153, 0.15) 100%
    ) !important;
}

/* Make slider text more vibrant and readable */
.header.slider-fade .caption h1 {
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8),
                 0 0 30px rgba(212, 175, 55, 0.3) !important;
    font-weight: 700 !important;
    letter-spacing: 2px;
}

.header.slider-fade .caption h4 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7),
                 0 0 20px rgba(212, 175, 55, 0.2) !important;
    font-weight: 500 !important;
}

/* Enhanced star rating glow */
.header.slider-fade .star-rating {
    color: #FFD700 !important;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
    font-size: 18px;
}

/* Premium button with glow effect */
.header.slider-fade .butn-light {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%) !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5),
                0 0 30px rgba(255, 215, 0, 0.3) !important;
    border: 2px solid #FFD700 !important;
    transition: all 0.4s ease;
}

.header.slider-fade .butn-light:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.7),
                0 0 40px rgba(255, 215, 0, 0.5) !important;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
}

.header.slider-fade .butn-light span {
    color: #1a2332 !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    letter-spacing: 1.5px;
}

/* Add ambient glow to entire slider section */
.header.slider-fade {
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.2);
    position: relative;
}

/* Owl carousel navigation buttons with glow */
.header.slider-fade .owl-nav button {
    background: rgba(212, 175, 55, 0.9) !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.header.slider-fade .owl-nav button:hover {
    background: rgba(255, 215, 0, 1) !important;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    transform: scale(1.1);
}

/* Owl carousel dots with glow */
.header.slider-fade .owl-dots .owl-dot span {
    background: rgba(212, 175, 55, 0.6) !important;
    border: 2px solid #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.header.slider-fade .owl-dots .owl-dot.active span,
.header.slider-fade .owl-dots .owl-dot:hover span {
    background: #FFD700 !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    transform: scale(1.2);
}

/* Add subtle particle/sparkle effect overlay */
.header.slider-fade::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
    animation: sparkle 10s linear infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

/* Ensure caption content appears above sparkle effect */
.header.slider-fade .caption {
    position: relative;
    z-index: 2;
}

/* Premium edge lighting effect */
.header.slider-fade::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.15), transparent);
    pointer-events: none;
    z-index: 1;
}

/* Mobile optimizations for slider effects */
@media (max-width: 768px) {
    .header.slider-fade .item.bg-img::before {
        filter: brightness(1.2) contrast(1.1) saturate(1.2) !important;
    }
    
    .header.slider-fade .caption h1 {
        font-size: 32px;
    }
    
    .header.slider-fade .butn-light {
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }
}

/* ============================================
   ABOUT PAGE - EXTRA SERVICES SECTION STYLING
   ============================================ */

/* Enhanced About Section Description Paragraphs */
.about.section-padding .col-md-6 p {
    font-size: 18px !important;
    line-height: 1.9 !important;
    color: #fff !important;
    font-weight: 600 !important;
    margin: 15px 0 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.7), rgba(44, 140, 153, 0.6));
    padding: 20px;
    border-left: 4px solid #D4AF37;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* About section title styling */
.about .section-subtitle {
    color: #D4AF37 !important;
    font-weight: 600;
    font-size: 16px;
}

.about .section-title {
    color: #D4AF37 !important;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 25px;
}

/* About section star rating */
.about .star-rating {
    color: #FFD700 !important;
    font-size: 18px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

/* Style Extra Services paragraphs to match Hotel Facilities section */
.pricing .color-2 {
    font-size: 18px !important;
    line-height: 1.9 !important;
    color: #fff !important;
    font-weight: 600 !important;
    margin: 15px 0 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Enhanced Extra Services section title */
.pricing .section-subtitle span {
    color: #D4AF37 !important;
    font-weight: 600;
}

.pricing .section-title {
    color: #D4AF37 !important;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Extra Services phone contact styling */
.pricing .reservations .text p.color-2 {
    color: #D4AF37 !important;
    font-weight: 600;
    font-size: 16px !important;
}

