/* 
 * Maharana Band - Premium Royal Indian Wedding Theme Style
 * Palette: Royal Maroon (#800020), Elegant Gold (#D4AF37), Creamy Ivory (#FAF9F6)
 */

/* ==========================================================================
   1. Core Variables & Resets
   ========================================================================== */
:root {
    --primary-color: #800020;
    --secondary-color: #D4AF37;
    --dark-color: #1A0006;
    --light-color: #FAF9F6;
    --text-color: #333333;
    --muted-color: #777777;
    --transition-fast: all 0.3s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --gold-glow: 0 4px 20px rgba(212, 175, 55, 0.35);
    --maroon-glow: 0 4px 20px rgba(128, 0, 32, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: var(--font-body), sans-serif;
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings), serif;
    color: var(--dark-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--dark-color);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
    border: 2px solid var(--dark-color);
}

/* ==========================================================================
   2. Preloader & Theme Customizer Overrides
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: var(--transition-slow);
}

.spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--secondary-color);
    border-bottom: 4px solid var(--secondary-color);
    animation: spin 1.5s linear infinite;
    position: relative;
}

.spinner::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
    animation: spin-reverse 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

/* ==========================================================================
   3. Navigation & Header
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
    background-color: transparent;
    padding: 15px 0;
}

.main-header.scrolled {
    background-color: var(--primary-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    border-bottom: 2px solid var(--secondary-color);
}

.main-header .navbar-brand {
    font-family: var(--font-headings), serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary-color) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.main-header .navbar-brand img {
    height: 55px;
    transition: var(--transition-fast);
}

.main-header.scrolled .navbar-brand img {
    height: 45px;
}

.main-header .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.main-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.main-header .nav-link:hover::after,
.main-header .nav-link.active::after {
    transform: scaleX(1);
}

.main-header .nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Language Toggle Styling */
.lang-toggle-btn {
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    padding: 6px 16px;
    background: transparent;
    transition: var(--transition-fast);
}

.lang-toggle-btn:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    box-shadow: var(--gold-glow);
}

/* Custom CTA Button */
.btn-royal {
    background: linear-gradient(135deg, var(--secondary-color), #B38600);
    color: var(--dark-color) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid var(--secondary-color);
    transition: var(--transition-fast);
    box-shadow: var(--gold-glow);
}

.btn-royal:hover {
    background: transparent;
    color: var(--secondary-color) !important;
    box-shadow: none;
    transform: translateY(-2px);
}

.btn-royal-outline {
    background: transparent;
    color: var(--secondary-color) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid var(--secondary-color);
    transition: var(--transition-fast);
}

.btn-royal-outline:hover {
    background: linear-gradient(135deg, var(--secondary-color), #B38600);
    color: var(--dark-color) !important;
    box-shadow: var(--gold-glow);
    transform: translateY(-2px);
}

/* Hamburger toggle styling */
.navbar-toggler {
    border-color: var(--secondary-color);
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}
.navbar-toggler-icon {
    filter: invert(85%) sepia(43%) saturate(442%) hue-rotate(352deg) brightness(91%) contrast(85%);
}

/* ==========================================================================
   4. Hero Carousel Slider
   ========================================================================== */
.hero-slider-section {
    height: 100vh;
    min-height: 600px;
    background-color: var(--dark-color);
}

.hero-slider-section .carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26,0,6,0.4), rgba(26,0,6,0.85));
}

.carousel-caption {
    top: 55%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 10;
}

.carousel-caption h1 {
    font-size: 5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease both;
}

.carousel-caption h1 span {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.carousel-caption p {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-family: var(--font-body);
    font-weight: 300;
    animation: fadeInUp 1s ease 0.3s both;
}

.carousel-caption .btn-container {
    animation: fadeInUp 1s ease 0.6s both;
}

/* Custom Controls styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(128, 0, 32, 0.7);
    padding: 25px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    background-size: 50%;
    transition: var(--transition-fast);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--secondary-color);
    background-size: 50%;
    filter: invert(100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* ==========================================================================
   5. Ornamental Sections
   ========================================================================== */
.section-padding {
    padding: 100px 0;
}

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

.bg-dark-royal {
    background-color: var(--dark-color);
    color: #ffffff;
}

.bg-dark-royal h2,
.bg-dark-royal h3,
.bg-dark-royal h4 {
    color: var(--secondary-color);
}

/* Section Header Style with Mandalas */
.section-header {
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

.section-header .ornament {
    width: 40px;
    height: 40px;
    margin: 5px auto 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4AF37'%3E%3Cpath d='M12 2L14.8 8.8L22 9.4L16.5 14L18.2 21L12 17.2L5.8 21L7.5 14L2 9.4L9.2 8.8L12 2Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--muted-color);
    max-width: 600px;
    margin: 15px auto 0;
}

.bg-dark-royal .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   6. About Us
   ========================================================================== */
.about-img-wrapper {
    position: relative;
    padding: 15px;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 5px solid var(--secondary-color);
    z-index: 1;
}

.about-img-wrapper img {
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-radius: 5px;
    transition: var(--transition-slow);
}

.about-img-wrapper:hover img {
    transform: scale(1.03);
}

.about-details {
    padding-left: 20px;
}

.about-details .subtitle {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-features {
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-feature-item .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(128, 0, 32, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-right: 15px;
    border: 1px solid var(--secondary-color);
}

.about-feature-item h5 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.about-feature-item p {
    font-size: 0.95rem;
    color: var(--muted-color);
}

/* ==========================================================================
   7. Services
   ========================================================================== */
.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(128, 0, 32, 0.05);
    transition: var(--transition-slow);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(128, 0, 32, 0.15), var(--gold-glow);
    border-color: var(--secondary-color);
}

.service-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1) rotate(1deg);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--secondary-color);
}

.service-body {
    padding: 25px;
    position: relative;
}

.service-body h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.service-card:hover .service-body h3 {
    color: var(--primary-color);
}

.service-body p {
    font-size: 0.95rem;
    color: var(--muted-color);
    margin-bottom: 20px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

.service-footer .price {
    font-weight: 700;
    color: var(--primary-color);
}

/* ==========================================================================
   8. Gallery
   ========================================================================== */
.gallery-filters {
    margin-bottom: 40px;
}

.gallery-filters .btn {
    border: 1px solid #ddd;
    background-color: transparent;
    color: var(--text-color);
    font-weight: 600;
    padding: 8px 24px;
    margin: 5px;
    border-radius: 30px;
    transition: var(--transition-fast);
}

.gallery-filters .btn:hover,
.gallery-filters .btn.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: var(--gold-glow);
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 280px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 0, 32, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-fast);
    padding: 20px;
    text-align: center;
    border: 3px solid var(--secondary-color);
    border-radius: 12px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay h4 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.gallery-overlay .btn-view {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: var(--transition-fast);
}

.gallery-overlay .btn-view:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Play button overlay for video gallery items */
.gallery-item.video-item .play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(128, 0, 32, 0.85);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    font-size: 30px;
    z-index: 2;
    transition: var(--transition-slow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), var(--gold-glow);
}

.gallery-item.video-item:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: #ffffff;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.gallery-item.video-item::before {
    content: 'VIDEO';
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid var(--secondary-color);
    z-index: 2;
}

/* ==========================================================================
   9. Testimonials & Blogs
   ========================================================================== */
.testimonial-carousel {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 80px;
}

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
    width: 80px;
}

.testimonial-card {
    text-align: center;
    padding: 30px;
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--secondary-color);
    box-shadow: var(--gold-glow);
}

.testimonial-card .stars {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-card blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-card h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.testimonial-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Blog Styles */
.blog-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-img-wrapper {
    position: relative;
    height: 220px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-date {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid var(--dark-color);
}

.blog-body {
    padding: 30px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-body .cat {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.blog-body h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-body h3 a:hover {
    color: var(--primary-color);
}

.blog-body p {
    font-size: 0.95rem;
    color: var(--muted-color);
    margin-bottom: 20px;
}

.blog-body .read-more-btn {
    margin-top: auto;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.blog-body .read-more-btn i {
    margin-left: 5px;
    transition: var(--transition-fast);
}

.blog-body .read-more-btn:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   10. Inquiry & Contact Section
   ========================================================================== */
.contact-info-box {
    background-color: var(--dark-color);
    color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    border-left: 6px solid var(--secondary-color);
    box-shadow: var(--maroon-glow);
}

.contact-info-title {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-detail-item .icon {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 20px;
}

.contact-detail-item h5 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-detail-item p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.7);
}

/* Form Styles */
.inquiry-form-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.inquiry-form-card .form-control,
.inquiry-form-card .form-select {
    border: 1px solid #ddd;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    background-color: #FAF9F6;
    transition: var(--transition-fast);
}

.inquiry-form-card .form-control:focus,
.inquiry-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(128, 0, 32, 0.15);
    background-color: #ffffff;
}

.inquiry-form-card label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* ==========================================================================
   11. Footer Section
   ========================================================================== */
.main-footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    border-top: 4px solid var(--secondary-color);
}

.footer-widget h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-widget p {
    line-height: 1.8;
}

.footer-widget .social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-widget .social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    box-shadow: var(--gold-glow);
    transform: translateY(-3px);
}

.footer-widget .links-list {
    list-style: none;
    padding: 0;
}

.footer-widget .links-list li {
    margin-bottom: 12px;
}

.footer-widget .links-list a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-widget .links-list a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: 50px;
    font-size: 0.9rem;
}

/* ==========================================================================
   12. Floating Action Widgets
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-top: 15px;
    transition: var(--transition-fast);
    position: relative;
}

.btn-float:hover {
    transform: scale(1.1) translateY(-5px);
}

.btn-float-whatsapp {
    background-color: #25D366;
}

.btn-float-call {
    background-color: #007bff;
}

.btn-float-scroll {
    background-color: var(--secondary-color);
    color: var(--dark-color) !important;
    opacity: 0;
    visibility: hidden;
}

.btn-float-scroll.show {
    opacity: 1;
    visibility: visible;
}

/* Hearts or Pulse micro-animations for booking actions */
.pulse-animate {
    animation: pulse-widget 2s infinite;
}

@keyframes pulse-widget {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse-call {
    animation: pulse-call-widget 2s infinite;
}

@keyframes pulse-call-widget {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* Sticky Booking Bottom Bar for Mobile Only */
.mobile-sticky-booking {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background-color: var(--primary-color);
    display: flex;
    border-top: 2px solid var(--secondary-color);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
}

.mobile-sticky-booking a {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-sticky-booking a:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    background-color: var(--dark-color);
    color: var(--secondary-color);
}

.mobile-sticky-booking a i {
    margin-right: 8px;
    font-size: 1.1rem;
}

@media(min-width: 768px) {
    .mobile-sticky-booking {
        display: none !important;
    }
}

/* ==========================================================================
   13. Mobile Responsive Fixes
   ========================================================================== */
@media(max-width: 767px) {
    body, html {
        overflow-x: hidden;
    }
    
    /* Fix Hero Slider Text Size */
    .hero-slider-section .carousel-caption {
        padding: 0 10px;
    }
    .hero-slider-section .carousel-caption h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .hero-slider-section .carousel-caption p {
        font-size: 0.95rem !important;
        margin-bottom: 15px;
    }
    
    /* Fix Mobile Menu Background */
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
    
    .main-header .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .main-header .lang-toggle-btn {
        margin-top: 10px;
        display: inline-block;
    }

    /* Fix Testimonial Slider Arrows & Padding Overflow */
    .testimonial-carousel {
        padding: 0 35px !important;
    }
    
    .testimonial-carousel .carousel-control-prev,
    .testimonial-carousel .carousel-control-next {
        width: 35px !important;
    }
    
    .testimonial-card {
        padding: 20px !important;
    }
}
