:root {
    --primary-color: #F9E400;
    /* Yellow accent */
    --secondary-color: #1A1A1A;
    /* Dark theme bg */
    --accent-dark: #000000;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html,
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Navbar */
.main-nav {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.logo-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border: 2px solid var(--primary-color);
}

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

.navbar-brand:hover .logo-wrapper img {
    transform: scale(1.1);
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.navbar-brand:hover .brand-text {
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border-color: var(--primary-color) !important;
    padding: 0.5rem;
    transition: var(--transition-smooth);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.1rem var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(249, 228, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: var(--accent-dark);
    font-weight: 700;
    border-radius: 5px;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: #ffe600;
    color: var(--accent-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(249, 228, 0, 0.2);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--accent-dark) !important;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-link.text-primary {
    color: var(--primary-color) !important;
}

.btn-link.text-primary:hover {
    color: #ffe600 !important;
}

/* Hero Section */
.hero-section {
    padding: 150px 0 100px;
    background: radial-gradient(circle at top right, rgba(249, 228, 0, 0.1), transparent);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--primary-color);
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

/* Ticker */
.ticker-section {
    background: var(--primary-color);
    padding: 15px 0;
    width: 100%;
    overflow: hidden;
}

/* For desktop, apply the slant */
@media (min-width: 992px) {
    .ticker-section {
        transform: rotate(-1deg);
        width: 110%;
        margin-left: -5%;
    }
}

.ticker-item {
    color: var(--accent-dark);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin: 0 40px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-section .d-flex {
        justify-content: center;
        flex-direction: column;
    }

    .booking-container {
        padding: 30px 20px;
    }

    .py-100 {
        padding: 60px 0;
    }
}


/* Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    height: 100%;
}

.service-card:hover {
    background: var(--primary-color);
    transform: translateY(-10px);
}

.service-card:hover *,
.service-card:hover .icon-box i {
    color: var(--accent-dark) !important;
}

.icon-box {
    margin-bottom: 25px;
}

.icon-box i {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Booking Form */
.booking-container {
    background: #252525;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF !important;
    padding: 15px;
    border-radius: 10px;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(249, 228, 0, 0.1);
    color: #FFFFFF !important;
}

/* Fix for Select Options visibility */
select option {
    background-color: #252525;
    color: #FFFFFF;
    padding: 10px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

label.form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.py-100 {
    padding: 100px 0;
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.floating-img {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Accordion Visibility Fix */
.accordion-button:not(.collapsed) {
    background-color: rgba(249, 228, 0, 0.1);
    color: var(--primary-color) !important;
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    color: #FFFFFF !important;
    /* Force white color for visibility */
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    font-size: 1.1rem;
    line-height: 1.6;
}

.text-gray {
    color: #CCCCCC !important;
}



.footer-section {
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pb-100 {
    padding-bottom: 100px;
}

.map-wrapper iframe {
    filter: grayscale(1) invert(0.9) contrast(1.2);
    width: 100%;
    display: block;
}

.footer-link {
    text-decoration: none !important;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--primary-color) !important;
}

.copy-right {
    background: #0a0a0a;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none !important;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: #128c7e;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 15px;
        bottom: 20px;
        right: 20px;
        border-radius: 100px;
    }
}

.blog-card {
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color) !important;
}

.blog-card img {
    transition: var(--transition-smooth);
}

.blog-card:hover img {
    transform: scale(1.1);
}

/* Mobile Call Float */
.call-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--accent-dark) !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(249, 228, 0, 0.3);
    transition: var(--transition-smooth);
    animation: callPulse 2s infinite;
}

.call-float:hover {
    transform: scale(1.1);
}

@keyframes callPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 228, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(249, 228, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 228, 0, 0);
    }
}