/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #FFFFFF;
    --dark: #000000;
    
/* Override Bootstrap primary color */
--bs-primary: #FEA116;
--bs-primary-rgb: 254, 161, 22;
--bs-primary-text-emphasis: #cc7f0a;
--bs-primary-bg-subtle: #fef3e2;
--bs-primary-border-subtle: #fde4b8;

/* Force Bootstrap primary classes to use orange */
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #FEA116;
    --bs-btn-border-color: #FEA116;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #e68a0a;
    --bs-btn-hover-border-color: #d97d09;
    --bs-btn-focus-shadow-rgb: 254, 161, 22;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #d97d09;
    --bs-btn-active-border-color: #cc7f0a;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #FEA116;
    --bs-btn-disabled-border-color: #FEA116;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(254, 161, 22, var(--bs-bg-opacity)) !important;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(254, 161, 22, var(--bs-text-opacity)) !important;
}

.border-primary {
    --bs-border-opacity: 1;
    border-color: rgba(254, 161, 22, var(--bs-border-opacity)) !important;
}

.spinner-border {
    color: #FEA116 !important;
}
}

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

/* Logo Styles */
.logo-img {
    transition: transform 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 50px !important;
    width: 50px !important;
    object-fit: cover;
    
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem !important;
    
}

.navbar-brand {
    padding-top: 0.15rem !important;
    padding-bottom: 0.15rem !important;
}

.brand-text {
    margin-left: 0.5rem;
}

.brand-text h4 {
    margin-bottom: 0.05rem !important;
    line-height: 1.1;
    font-size: 1.1rem;
}

.brand-text small {
    font-size: 0.65rem;
    line-height: 0.9;
}

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


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

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

.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: 20px;
    padding: 25px 0;
    font-size: 13px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 15px 0;
}

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

.navbar-dark .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 35px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

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

    .navbar-dark .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent !important;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--dark) !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-header img {
    animation: imgRotate 50s linear infinite;
}

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

.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: var(--primary);
}

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

.service-item:hover * {
    color: var(--light) !important;
}


/*** 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);
}


/*** 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);
}

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

/* ===== MODERN NAVBAR STYLES ===== */
.navbar {
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

/* Réduire la taille des boutons dans la navbar */
.navbar .btn {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Logo Container */
.logo-container {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(254, 161, 22, 0.3);
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(254, 161, 22, 0.4);
}

.brand-text h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    font-size: 1.25rem;
}

.brand-text small {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Links */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.15rem;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--primary) !important;
    background: rgba(254, 161, 22, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary) !important;
    background: rgba(254, 161, 22, 0.15);
}

/* Nav Indicator */
.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover .nav-indicator,
.nav-link.active .nav-indicator {
    width: 80%;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    padding: 0.75rem 0 !important;
    margin-top: 0.5rem !important;
    border-radius: 12px !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
}

.dropdown-item {
    padding: 0.75rem 1.5rem !important;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(254, 161, 22, 0.1) !important;
    color: var(--primary) !important;
    transform: translateX(5px);
}

/* CTA Button */
.btn-primary {
    background: var(--primary);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 161, 22, 0.4);
}

/* Top Bar */
.bg-primary {
    background: var(--primary) !important;
    padding: 0.4rem 0;
    font-size: 0.85rem;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        margin: 0.25rem 0;
        text-align: center;
    }
    
    .btn-primary {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Animation for navbar items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-nav .nav-item {
    animation: fadeInUp 0.6s ease forwards;
}

.navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
.navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
.navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
.navbar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
.navbar-nav .nav-item:nth-child(5) { animation-delay: 0.5s; }
.navbar-nav .nav-item:nth-child(6) { animation-delay: 0.6s; }

/* ===== HERO VIDEO BACKGROUND ===== */
.hero-video-bg {
    height: 75vh;
    min-height: 550px;
    overflow: hidden;
}

.hero-video-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Video fallback */
.hero-video-bg.video-fallback {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(254, 161, 22, 0.3) 100%), url('img/menu7.jpg') center/cover;
}

.hero-video-bg.video-fallback .hero-video-bg-video {
    display: none;
}

.hero-fallback-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    z-index: 3;
    min-height: 100vh;
}

/* ===== HERO CONTENT SIMPLE DESIGN ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content-simple {
    animation: fadeInUp 0.8s ease-out;
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-title {
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 2.8rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Simple Button Styles */
.btn {
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        padding: 0.6rem 1.8rem;
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
}

/* ===== RESERVATION MODERN DESIGN ===== */
.reservation-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reservation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.reservation-card .form-floating > .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.reservation-card .form-floating > .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(254, 161, 22, 0.25);
}

.reservation-card .form-floating > label {
    color: #6c757d;
    font-weight: 500;
}

.reservation-card .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.reservation-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(254, 161, 22, 0.25);
}

.reservation-card .btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reservation-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 161, 22, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .reservation-card {
        margin: 0 1rem;
        padding: 2rem !important;
    }
    
    .reservation-card .btn-lg {
        width: 100%;
    }
}

/* ===== VIDEO SECTION DESIGN ===== */
.video-section {
    animation: fadeInUp 0.8s ease-out;
}

.video-container {
    position: relative;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
}

.video-container video {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.video-container.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.btn-play-video {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(254, 161, 22, 0.3);
}

.btn-play-video:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.btn-play-video i {
    margin-left: 4px;
}

.video-features {
    margin-top: 3rem;
}

.feature-item {
    padding: 2rem 1rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-container {
        margin: 0 1rem;
    }
    
    .video-container video {
        min-height: 300px;
        width: 100%;
        display: block;
    }
    
    .btn-play-video {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .video-section h2 {
        font-size: 2rem;
    }
    
    .video-section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .video-container {
        margin: 0 0.5rem;
    }
    
    .video-container video {
        min-height: 250px;
        width: 100%;
        display: block;
    }
    
    .btn-play-video {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    .video-section h2 {
        font-size: 1.75rem;
    }
    
    .video-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .video-container {
        margin: 0;
        border-radius: 15px;
    }
    
    .video-container video {
        min-height: 220px;
        border-radius: 15px;
    }
    
    .btn-play-video {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .video-section h2 {
        font-size: 1.5rem;
    }
    
    .video-section p {
        font-size: 0.85rem;
    }
}

/* Video fallback message */
.video-fallback-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    z-index: 10;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .hero-video-bg {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-video-bg-video {
        display: block;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-fallback-img {
        display: none;
    }
    
    .hero-content {
        padding: 2rem 1rem !important;
        min-height: 60vh;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .hero-content-simple {
        background: rgba(0, 0, 0, 0.6);
        padding: 2rem 1.5rem;
        border-radius: 15px;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        padding: 0.6rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Navbar mobile improvements */
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Services mobile */
    .service-item {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    /* Menu mobile */
    .nav-pills {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-pills .nav-item {
        width: 100%;
    }
    
    /* Footer mobile */
    .footer-modern {
        text-align: center;
    }
    
    .footer-brand,
    .footer-links,
    .footer-contact,
    .footer-hours {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-links {
        margin-top: 1rem;
        text-align: center;
    }
    
    .hours-item {
        justify-content: center;
        gap: 1rem;
    }
}

/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .hero-video-bg {
        height: 55vh;
        min-height: 350px;
    }
    
    .hero-content {
        padding: 1.5rem 0.5rem !important;
        min-height: 55vh;
    }
    
    .hero-content-simple {
        background: rgba(0, 0, 0, 0.7);
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        text-align: center;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
        max-width: 250px;
        text-align: center;
    }
    
    /* Navbar extra small */
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Services extra small */
    .service-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-item h5 {
        font-size: 1rem;
    }
    
    /* Menu extra small */
    .nav-pills .nav-item .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Footer extra small */
    .footer-modern {
        padding: 2rem 0 !important;
    }
    
    .footer-brand h4 {
        font-size: 1.3rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Contact cards extra small */
    .contact-card {
        padding: 1rem !important;
    }
    
    .contact-icon i {
        font-size: 1.8rem !important;
    }
    
    .contact-form-card {
        padding: 1.5rem !important;
    }
    
    /* Video section extra small */
    .video-container video {
        min-height: 200px;
    }
    
    .btn-play-video {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

/* ===== FOOTER MODERN DESIGN ===== */
.footer-modern {
    background: #000000;
    border-top: 1px solid rgba(254, 161, 22, 0.2);
}

.footer-brand h4 {
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.text-light-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(254, 161, 22, 0.1);
    color: var(--primary);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(254, 161, 22, 0.2);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 161, 22, 0.3);
}

.footer-links h6,
.footer-contact h6,
.footer-hours h6 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.contact-item i {
    width: 20px;
    flex-shrink: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.footer-bottom-links .footer-link {
    font-size: 0.9rem;
    margin-right: 1rem;
}

.footer-bottom-links .footer-link:last-child {
    margin-right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-modern {
        text-align: center;
    }
    
    .footer-brand,
    .footer-links,
    .footer-contact,
    .footer-hours {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-links {
        margin-top: 1rem;
        text-align: center;
    }
    
    .hours-item {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-modern {
        padding: 3rem 0 !important;
    }
    
    .footer-brand h4 {
        font-size: 1.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ===== CONTACT PAGE MODERN DESIGN ===== */
.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.contact-icon {
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card a {
    color: #6c757d;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary);
}

.map-container {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.contact-form-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.contact-form-card .form-floating > .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-form-card .form-floating > .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(254, 161, 22, 0.25);
}

.contact-form-card .form-floating > label {
    color: #6c757d;
    font-weight: 500;
}

.contact-form-card .btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 161, 22, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 1.5rem;
    }
    
    .map-container {
        margin-bottom: 2rem;
    }
    
    .contact-form-card {
        padding: 2rem !important;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 1.5rem !important;
    }
    
    .contact-icon i {
        font-size: 2rem !important;
    }
    
    .contact-form-card {
        padding: 1.5rem !important;
    }
}
