/********** Template CSS **********/
:root {
    --primary: #FFBD59;
    --light: #F1F8FF;
    --dark: #0F172B;
}

/* Custom Cursor Effect */
/* Keep normal cursor visible, add custom effect on top */

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    opacity: 1;
    will-change: transform;
}

/* Cursor hover effects */
body.cursor-hover .custom-cursor {
    width: 40px;
    height: 40px;
    background: rgba(255, 189, 89, 0.3);
    border: 2px solid var(--primary);
    mix-blend-mode: normal;
    transition: all 0.3s ease;
}

/* Cursor click effect */
body.cursor-click .custom-cursor {
    width: 15px;
    height: 15px;
    background: var(--primary);
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.1s ease;
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
}

/* Float Animation for Order Food CTA Section */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Order Food Button Enhancement */
.order-food-btn {
    position: relative;
    overflow: hidden;
}

.order-food-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.order-food-btn:hover::before {
    left: 100%;
}

/* Responsive styles for Order Food CTA Section */
@media (max-width: 768px) {
    .order-food-btn {
        min-width: 200px !important;
        font-size: 0.9rem !important;
        padding: 12px 25px !important;
    }
    
    .order-food-cta h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .order-food-cta p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 576px) {
    .order-food-btn {
        min-width: 180px !important;
        font-size: 0.85rem !important;
        padding: 10px 20px !important;
    }
    
    .order-food-cta h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .order-food-cta p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
}

.ff-secondary {
    font-family: 'Pacifico', cursive;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.spinner-border.text-primary {
    border-color: var(--primary);
    border-right-color: transparent;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

/* Bootstrap Primary Color Overrides */
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #E6A84D !important;
    border-color: #E6A84D !important;
}

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

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

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

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 30px;
    padding: 35px 0;
    font-size: 15px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

/* Navbar Link Hover Underline Effect */
.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 28px;
    left: 50%;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Active link underline - always visible */
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Mobile navbar link underline adjustment */
@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link::after {
        bottom: 3px;
    }
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 35px 0; /* Keep same padding as normal state */
}

/* Sticky navbar underline positioning */
.sticky-top.navbar-dark .navbar-nav .nav-link::after {
    bottom: 28px;
}

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

/* Modern navbar glassmorphism */
.navbar-dark {
    background: transparent !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 189, 89, 0.1);
    transition: all 0.3s ease;
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.sticky-top.navbar-dark {
    background: rgba(15, 23, 43, 0.95) !important;
}

.navbar-dark .navbar-brand img,
.navbar-logo {
    max-height: 60px;
    width: auto;
    transition: .5s;
    object-fit: contain;
}

.sticky-top.navbar-dark .navbar-brand img,
.sticky-top .navbar-logo {
    max-height: 60px; /* Keep same size as normal state */
}

/* Logo responsiveness */
@media (max-width: 767.98px) {
    .navbar-logo {
        max-height: 50px;
    }
}

@media (max-width: 575.98px) {
    .navbar-logo {
        max-height: 45px;
    }
}

@media (max-width: 991.98px) {
    .navbar-dark {
        background: rgba(15, 23, 43, 0.95) !important;
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 189, 89, 0.1);
        position: fixed !important;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed !important;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }

    /* Mobile sticky navbar underline positioning */
    .sticky-top.navbar-dark .navbar-nav .nav-link::after {
        bottom: 3px;
    }

    /* Increase logo size slightly on mobile screens */
    .navbar-dark .navbar-brand img,
    .navbar-logo {
        max-height: 45px !important; /* Slightly larger than before */
        width: auto;
    }
    
    /* Fix navbar layout on mobile to prevent logo in dropdown */
    .navbar {
        flex-wrap: wrap !important;
    }
    
    .navbar-brand {
        flex-shrink: 0;
    }
    
    .navbar-toggler {
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .navbar-collapse {
        flex-basis: 100%;
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }
    
    /* Ensure navbar items are properly contained */
    .navbar-collapse .navbar-nav {
        width: 100%;
    }
    
    /* Mobile contact button styling */
    .navbar-collapse .btn {
        margin-top: 15px;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: fixed !important;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent !important;
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 189, 89, 0.1);
        transition: all 0.3s ease;
    }
    
    .sticky-top.navbar-dark {
        background: rgba(15, 23, 43, 0.95) !important;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Hero section padding adjustment for fixed navbar */
@media (max-width: 991.98px) {
    .hero-header {
        padding-top: 120px !important;
    }
}

@media (min-width: 992px) {
    .hero-header {
        padding-top: 100px !important;
    }
}

.hero-header img {
    animation: imgRotate 50s linear infinite;
}

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

/* Modern Hero Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(-10px);
    }
    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* Modern gradient text effects */
.gradient-text {
    background: linear-gradient(45deg, #ffffff 0%, #FFBD59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern glassmorphism effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modern button hover effects */
.btn-modern-hover {
    position: relative;
    overflow: hidden;
}

.btn-modern-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-modern-hover:hover::before {
    left: 100%;
}

/* Enhanced ripple effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.ripple-effect:hover::after {
    animation: ripple 0.6s ease-out;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: #FFBD59 !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 189, 89, 0.4) !important;
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: #FFFFFF !important;
}

/* Additional hover effects for service items */
.service-item:hover h5 {
    color: #FFFFFF !important;
    font-weight: 600;
}

.service-item:hover p {
    color: #FFFFFF !important;
    opacity: 0.95;
}

.service-item:hover i {
    color: #FFFFFF !important;
    transform: scale(1.1);
}

/* Modern Service Cards */
.service-card {
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12) !important;
    border-color: rgba(255, 189, 89, 0.3) !important;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 189, 89, 0.4);
}

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

/* Top Border Hover Effects */
.service-top-border {
    background: linear-gradient(90deg, #FFBD59, #E6A84D) !important;
    transform-origin: left;
}

.service-card:hover .service-top-border {
    height: 6px !important;
    background: linear-gradient(90deg, #FFBD59, #E6A84D, #FFBD59, #E6A84D) !important;
    background-size: 200% 100%;
    animation: borderFlow 2s ease-in-out infinite;
    box-shadow: 0 2px 15px rgba(255, 189, 89, 0.6);
}

/* Border animation */
@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Service card animation - removed upward movement */
/* All hover effects are handled in the main .service-card:hover rule above */

/* About Section Styles */
.image-wrapper {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.feature-item:hover {
    background: rgba(255, 189, 89, 0.1) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 189, 89, 0.2);
}

/* Floating badge animation */
@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Button hover effect */
.btn:hover .fill-effect {
    left: 100% !important;
}

.btn .fill-effect {
    transition: left 0.6s ease;
}

/* Icon wrapper animation */
.service-icon-wrapper {
    position: relative;
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFBD59, #E6A84D, #FFBD59);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover .service-icon-wrapper::before {
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/* Remove any potential glitchy animations on mobile */
@media (max-width: 767.98px) {
    .wow {
        animation-duration: 0.8s;
    }
    
    /* Ensure mobile stability */
    .container-fluid {
        transform: none !important;
        animation: none !important;
    }
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

/* Explicit header and footer styling for brand color */
.navbar .btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

.navbar .btn-primary:hover {
    background-color: #E6A84D !important;
    border-color: #E6A84D !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 189, 89, 0.3);
}

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

.footer .btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

.footer .btn-primary:hover {
    background-color: #E6A84D !important;
    border-color: #E6A84D !important;
}

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

.footer .border-primary:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 189, 89, 0.25) !important;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/* Why Us Section - Increased Card Height */
.testimonial-item {
    min-height: 280px;
    padding: 2.5rem 2rem !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-item p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-item .d-flex {
    margin-top: auto;
}

/* Enhanced spacing for testimonial content */
.testimonial-carousel .owl-item .testimonial-item {
    min-height: 280px;
    transition: .5s, min-height 0s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    min-height: 300px;
}

/* Enhanced Get In Touch Button Styles */
.get-in-touch-btn {
    cursor: pointer;
}

/* About Us Heading - Responsive Font Sizes */
.about-heading {
    font-size: 2.5rem;
}

/* Mobile responsiveness for About heading */
@media (max-width: 767.98px) {
    .about-heading {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 575.98px) {
    .about-heading {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 374.98px) {
    .about-heading {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
    }
}

.get-in-touch-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(255, 189, 89, 0.5) !important;
}

.get-in-touch-btn:hover .btn-bg-layer {
    opacity: 1;
}

.get-in-touch-btn:hover .btn-shimmer {
    left: 100%;
}

.get-in-touch-btn:hover .btn-icon {
    transform: rotate(15deg) scale(1.1);
    color: #ffffff;
}

.get-in-touch-btn:hover .btn-content {
    transform: scale(1.02);
}

.get-in-touch-btn:hover .btn-particle {
    opacity: 1;
    animation: particleFloat 2s ease-in-out infinite;
}

.get-in-touch-btn:hover .particle-1 {
    transform: translate(10px, -15px);
}

.get-in-touch-btn:hover .particle-2 {
    transform: translate(-8px, -12px);
}

.get-in-touch-btn:hover .particle-3 {
    transform: translate(5px, -10px);
}

.get-in-touch-btn:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 10px 20px rgba(255, 189, 89, 0.4) !important;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-5px) scale(1.1);
    }
    50% {
        transform: translateY(-8px) scale(0.9);
    }
    75% {
        transform: translateY(-3px) scale(1.05);
    }
}

/* Ripple effect on click */
.get-in-touch-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
    z-index: 2;
}

.get-in-touch-btn:active::after {
    width: 300px;
    height: 300px;
    transition: width 0.1s, height 0.1s;
}

/* Hero Contact Button - Left to Right Fill Effect */
.hero-contact-btn {
    cursor: pointer;
    position: relative;
}

.hero-contact-btn:hover {
    border-color: #FFBD59 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 189, 89, 0.3);
}

.hero-contact-btn:hover .fill-effect-ltr {
    width: 100% !important;
}

.hero-contact-btn:hover i {
    transform: translateX(2px);
    color: white;
}

.hero-contact-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 189, 89, 0.2);
}

/* Ensure proper left-to-right animation */
.fill-effect-ltr {
    transform-origin: left center;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 0%;
}

/* Ensure text stays visible during animation */
.hero-contact-btn span:last-child {
    color: inherit;
    transition: color 0.3s ease;
}

/* Fix for smooth WOW.js animations - prevent layout shifts */
.wow {
    visibility: hidden;
    animation-fill-mode: both;
    animation-duration: 1s;
}

.wow.animated {
    visibility: visible;
}

/* Modern Custom Scroll Animations */
/* Base state for elements */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.scroll-reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Slide up animation */
.scroll-slide-up {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-slide-up.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Fade scale animation */
.scroll-fade-scale {
    opacity: 0;
    transform: scale(0.9) translateY(40px);
    transition: all 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-fade-scale.reveal-active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Slide from left */
.scroll-slide-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-slide-left.reveal-active {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.scroll-slide-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-slide-right.reveal-active {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation for children */
.scroll-stagger .scroll-stagger-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-stagger.reveal-active .scroll-stagger-item:nth-child(1) {
    transition-delay: 0.1s;
}

.scroll-stagger.reveal-active .scroll-stagger-item:nth-child(2) {
    transition-delay: 0.2s;
}

.scroll-stagger.reveal-active .scroll-stagger-item:nth-child(3) {
    transition-delay: 0.3s;
}

.scroll-stagger.reveal-active .scroll-stagger-item:nth-child(4) {
    transition-delay: 0.4s;
}

.scroll-stagger.reveal-active .scroll-stagger-item {
    opacity: 1;
    transform: translateY(0);
}

/* Floating animation */
.scroll-float {
    opacity: 0;
    transform: translateY(60px) rotate(5deg);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.scroll-float.reveal-active {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

/* Blur to focus animation */
.scroll-blur {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.1);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-blur.reveal-active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

/* Clip path reveal */
.scroll-clip {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-clip.reveal-active {
    clip-path: inset(0 0% 0 0);
}

/* Performance optimizations */
.scroll-reveal,
.scroll-slide-up,
.scroll-fade-scale,
.scroll-slide-left,
.scroll-slide-right,
.scroll-stagger-item,
.scroll-float,
.scroll-blur,
.scroll-clip {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .scroll-slide-up,
    .scroll-fade-scale,
    .scroll-slide-left,
    .scroll-slide-right,
    .scroll-stagger-item,
    .scroll-float,
    .scroll-blur,
    .scroll-clip {
        transition: none;
        opacity: 1;
        transform: none;
        filter: none;
        clip-path: none;
    }
}

/* Kitchen Table Logo Enhancements */
.logo-placeholder {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.logo-placeholder:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 189, 89, 0.3);
    border-color: rgba(255, 189, 89, 0.5) !important;
}

.logo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 189, 89, 0.1), transparent);
    transition: left 0.5s ease;
}

.logo-placeholder:hover::before {
    left: 100%;
}

/* Center alignment for kitchen table */
.kitchen-table td {
    text-align: center !important;
    vertical-align: middle !important;
}

.kitchen-table td .d-flex {
    justify-content: center !important;
}

.kitchen-table td .btn {
    margin: 0 auto;
}

.kitchen-table th {
    text-align: center !important;
    vertical-align: middle !important;
}

/* Center alignment for mobile cards */
.mobile-kitchen-card {
    text-align: center;
}

.mobile-kitchen-card .card-body {
    text-align: center;
}

.mobile-kitchen-card .d-flex {
    justify-content: center !important;
}

/* Responsive logo sizes */
@media (max-width: 1199.98px) {
    .logo-placeholder {
        width: 80px !important;
        height: 80px !important;
        font-size: 1.3rem !important;
    }
}

@media (max-width: 991.98px) {
    .logo-placeholder {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.2rem !important;
    }
}

@media (max-width: 767.98px) {
    .logo-placeholder {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.1rem !important;
    }
}