/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #4a4a4a;
    background: #fafafa;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-weight: 400;
}

p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 18px;
    font-weight: 400;
}

.lead {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.9;
    color: #666666;
}

/* Main Wrapper for Full Width Layout */
.main-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.2rem;
    font-weight: 700;
}

h2 {
    font-size: 2.6rem;
    font-weight: 600;
}

h3 {
    font-size: 2.2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.8rem;
    font-weight: 500;
}

h5 {
    font-size: 1.4rem;
    font-weight: 500;
}

h6 {
    font-size: 1.2rem;
    font-weight: 500;
}

a {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    color: #e67e22;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #d35400;
    outline: none;
    text-decoration: none;
}

.btn.custom-btn {
    padding: 18px 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    border: 2px solid #d4a574;
    border-radius: 30px;
    transition: all .4s ease;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 160px;
    text-align: center;
}

.btn.custom-btn:hover {
    color: #d4a574;
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
    border-color: #f39c12;
}

.btn.custom-btn: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.custom-btn:hover:before {
    left: 100%;
}

/* View Menu Button Styles - Premium Design */
.view-menu-btn {
    padding: 20px 40px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 50%, #d35400 100%) !important;
    border: 2px solid transparent !important;
    border-radius: 50px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    box-shadow: 
        0 10px 30px rgba(243, 156, 18, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 280px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.view-menu-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.6s ease;
    z-index: 1;
}

.view-menu-btn:hover::before {
    left: 100%;
}

.view-menu-btn .btn-text,
.view-menu-btn .fas {
    position: relative;
    z-index: 2;
}

.view-menu-btn:hover {
    color: #2c3e50 !important;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 50%, #c0392b 100%) !important;
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 
        0 20px 40px rgba(243, 156, 18, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2) !important;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.view-menu-btn:focus {
    color: #2c3e50 !important;
    box-shadow: 
        0 0 0 4px rgba(243, 156, 18, 0.4),
        0 10px 30px rgba(243, 156, 18, 0.4) !important;
    text-decoration: none;
    outline: none;
}

.view-menu-btn:active {
    transform: translateY(-2px) scale(1.02) !important;
}

.view-menu-btn .fas {
    font-size: 16px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.view-menu-btn:hover .fa-arrow-right {
    transform: translateX(5px);
    animation: arrowBounce 0.6s ease-in-out;
}

.view-menu-btn:hover .fa-utensils {
    transform: scale(1.15) rotate(5deg);
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(5px); }
    50% { transform: translateX(8px); }
}

.view-menu-btn .btn-text {
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.menu-subtitle {
    font-size: 14px !important;
    opacity: 0.8;
    margin-top: 12px !important;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .view-menu-btn {
        padding: 16px 28px !important;
        font-size: 14px !important;
        min-width: 220px;
        border-radius: 35px !important;
        letter-spacing: 1px !important;
        box-shadow: 
            0 8px 25px rgba(243, 156, 18, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
    }
    
    .view-menu-btn .btn-text {
        font-size: 14px;
    }
    
    .view-menu-btn .fas {
        font-size: 14px;
    }
    
    .view-menu-btn:hover {
        transform: translateY(-3px) scale(1.02) !important;
    }
    
    .menu-subtitle {
        font-size: 13px !important;
    }
    
    .menu-subtitle span {
        display: block;
        margin-top: 2px;
    }
}

@media (max-width: 480px) {
    .view-menu-btn {
        padding: 14px 24px !important;
        font-size: 13px !important;
        min-width: 200px;
        border-radius: 30px !important;
        letter-spacing: 0.8px !important;
        gap: 10px;
    }
    
    .view-menu-btn .fas {
        font-size: 12px;
    }
    
    .menu-subtitle {
        font-size: 12px !important;
        padding: 0 15px;
    }
    
    @keyframes arrowBounce {
        0%, 100% { transform: translateX(3px); }
        50% { transform: translateX(5px); }
    }
}

/* Large Desktop Enhancement */
@media (min-width: 1200px) {
    .view-menu-btn {
        padding: 24px 48px !important;
        font-size: 18px !important;
        min-width: 320px;
        gap: 15px;
        letter-spacing: 1.5px !important;
        box-shadow: 
            0 15px 40px rgba(243, 156, 18, 0.45),
            inset 0 2px 0 rgba(255, 255, 255, 0.35),
            0 0 0 1px rgba(255, 255, 255, 0.15) !important;
    }
    
    .view-menu-btn .fas {
        font-size: 18px;
    }
    
    .view-menu-btn:hover {
        transform: translateY(-6px) scale(1.08) !important;
        box-shadow: 
            0 25px 50px rgba(243, 156, 18, 0.7),
            inset 0 2px 0 rgba(255, 255, 255, 0.5),
            0 0 0 3px rgba(255, 255, 255, 0.25) !important;
    }
}

.form-control {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: #333333;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    padding: 15px 20px;
    transition: all 0.3s ease;
    min-height: 50px;
}

.form-control:focus {
    background: #ffffff;
    border-color: #d4a574;
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25), 0 6px 20px rgba(212, 165, 116, 0.15);
    color: #333333;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #999999;
    font-weight: 300;
}

.container-fluid {
    max-width: 1400px;
    padding: 0 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Professional Section Spacing */
.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.section:nth-child(odd) {
    background: #ffffff;
}

/* Enhanced Row Spacing */
.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

/* Mobile First - Base styles for mobile */
@media (max-width: 576px) {
    .container-fluid {
        padding: 0 10px;
    }
    
    .btn.custom-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header p {
    color: #d4a574;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.section-header p:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    border-radius: 2px;
}

.section-header h2 {
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}
}

.back-to-top {
    position: fixed;
    display: none;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 1;
    font-size: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.back-to-top i {
    color: #ffffff;
    padding-top: 12px;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
    font-size: inherit;
    margin-left: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header p {
    color: #e67e22;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

/**********************************/
/***** Ultra Premium Header *******/
/**********************************/

/* Premium Header Strip */
.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(218, 165, 32, 0.4);
    transition: all 0.3s ease;
}

.premium-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
    backdrop-filter: blur(15px);
    transform: translateY(0);
}

.premium-header.scrolled .header-strip {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(-100%);
    margin-bottom: 0;
}

.premium-header.scrolled .premium-nav {
    transform: translateY(0);
    background: transparent;
    backdrop-filter: blur(0);
    box-shadow: none;
    border-bottom: none;
    padding: 10px 0;
}

.header-strip {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 3px 0;
    border-bottom: 1px solid #DAA520;
    position: relative;
    overflow: hidden;
}

.header-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.contact-strip {
    display: flex;
    align-items: center;
    gap: 20px;
}

.strip-item {
    color: #f8f8f8;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.strip-item i {
    color: #DAA520;
    font-size: 14px;
}

.social-strip {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.follow-text {
    color: #f8f8f8;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DAA520;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #DAA520;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon:hover {
    color: #1a1a1a;
    border-color: #DAA520;
}

.social-icon i {
    position: relative;
    z-index: 2;
    font-size: 14px;
}

/* Premium Navigation - Always Visible */
.premium-nav {
    padding: 8px 0;
    background: transparent !important;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1001;
}

/* Premium Menu */
.premium-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-menu .nav-link {
    color: #333 !important;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 15px !important;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

/* Keep navigation text readable when scrolled */
.premium-header.scrolled .premium-menu .nav-link {
    color: #333 !important;
}

.premium-header.scrolled .brand-content h1 {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-brand {
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.premium-brand:hover {
    transform: scale(1.02);
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-icon {
    position: relative;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
    overflow: hidden;
}

.brand-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #DAA520, #FFD700, #DAA520);
    border-radius: 17px;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-icon i {
    color: #1a1a1a;
    font-size: 24px;
    position: relative;
    z-index: 2;
}

.brand-icon .fa-crown {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
}

.brand-icon .fa-utensils {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
}

.brand-content h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.brand-content .accent {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-content p {
    margin: 1px 0 0 0;
    font-size: 0.55rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Nunito', sans-serif;
}

/* Premium Navigation */
.premium-nav {
    padding: 8px 0;
    background: transparent !important;
    backdrop-filter: blur(20px);
}

.premium-menu .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 50px;
}

.premium-menu .nav-link:hover::before,
.premium-menu .nav-link.active::before {
    left: 0;
}

.premium-menu .nav-link:hover,
.premium-menu .nav-link.active {
    color: #1a1a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(218, 165, 32, 0.3);
}

.premium-menu .menu-text {
    position: relative;
    z-index: 2;
}

/* Premium Action Buttons */
.premium-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 30px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.login-action {
    color: #333;
    border: 2px solid #e0e0e0;
    background: transparent;
}

.login-action:hover {
    color: #DAA520;
    border-color: #DAA520;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(218, 165, 32, 0.2);
}

.order-action {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    color: #1a1a1a;
    border: 2px solid transparent;
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.3);
}

.order-action:hover {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(218, 165, 32, 0.4);
}

/* Premium Dropdown Account Menu */
.account-dropdown .premium-dropdown {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 15px;
    padding: 20px 0;
    margin-top: 15px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    min-width: 200px;
}

.account-dropdown .premium-dropdown .dropdown-item {
    color: #cccccc;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 5px 10px;
    display: flex;
    align-items: center;
}

.account-dropdown .premium-dropdown .dropdown-item:hover {
    background: rgba(218, 165, 32, 0.2);
    color: #FFD700;
    transform: translateX(5px);
}

.account-dropdown .premium-dropdown .dropdown-item i {
    color: #DAA520;
    transition: color 0.3s ease;
    width: 20px;
}

/* Professional Website Enhancements */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container,
.container-fluid {
    position: relative;
}

/* Professional Section Spacing */
.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #DAA520, #FFD700);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Professional Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Professional Buttons */
.btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    color: #1a1a1a;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.btn-outline-primary {
    border: 2px solid #DAA520;
    color: #DAA520;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #DAA520;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Professional Text Colors */
.text-primary {
    color: #DAA520 !important;
}

.bg-primary {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%) !important;
}

/* Professional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Page Content Spacing for Header */
.page-header,
.about,
.feature,
.menu,
.booking,
.team,
.testimonial,
.blog,
.contact {
    margin-top: 140px;
}

.page-header:first-of-type,
.about:first-of-type,
.feature:first-of-type {
    margin-top: 160px;
}

/* Responsive Page Content Spacing */
@media (max-width: 991.98px) {
    .page-header,
    .about,
    .feature,
    .menu,
    .booking,
    .team,
    .testimonial,
    .blog,
    .contact {
        margin-top: 120px;
    }
}

@media (max-width: 767.98px) {
    .page-header,
    .about,
    .feature,
    .menu,
    .booking,
    .team,
    .testimonial,
    .blog,
    .contact {
        margin-top: 100px;
    }
}

/* Responsive Controls for Account Menu */
@media (max-width: 1199.98px) {
    .premium-actions .action-btn {
        width: 100%;
        justify-content: center;
        margin: 10px 0;
    }
    
    .account-dropdown {
        display: block !important;
    }
    
    .premium-actions {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(218, 165, 32, 0.2);
        flex-direction: column;
    }
}

@media (min-width: 1200px) {
    .account-dropdown {
        display: none;
    }
}

/* Mobile Hero Section Fixes */
@media (max-width: 767.98px) {
    .carousel {
        margin-top: 70px;
    }
    
    .carousel .carousel-item {
        height: 100vh;
        min-height: 550px;
        padding-top: 80px;
        box-sizing: border-box;
        align-items: center;
        justify-content: flex-start;
        padding-bottom: 40px;
    }
    
    .carousel .carousel-text {
        padding: 40px 25px;
        height: auto;
        min-height: 0;
        position: relative;
        width: 95%;
        max-width: 95%;
        margin: 120px auto 0;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 25px;
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(218, 165, 32, 0.4);
        z-index: 10;
        transform: translateY(0);
    }
    
    .carousel .carousel-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 25px;
        color: #ffffff !important;
        text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
    }
    
    .carousel .carousel-text h1 span {
        color: #FFD700 !important;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    }
    
    .carousel .carousel-text p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        line-height: 1.7;
        color: #ffffff !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        opacity: 0.95;
    }
    
    .carousel .carousel-btn {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-top: 10px;
    }
    
    .carousel .carousel-btn .btn {
        width: 260px;
        padding: 18px 35px;
        font-size: 1.1rem;
        font-weight: 700;
        text-align: center;
        justify-content: center;
        border-radius: 50px;
    }
    
    .premium-header.scrolled {
        transform: translateY(-50px);
    }
    
    .header-strip {
        padding: 5px 0;
    }
    
    .premium-nav {
        padding: 15px 0;
    }
}

/* Laptop/Desktop Hero Content Positioning */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .carousel .carousel-text {
        margin-top: 40px;
        max-width: 850px;
    }
    
    .carousel .carousel-text h1 {
        font-size: 3.5rem;
        margin-bottom: 25px;
    }
    
    .carousel .carousel-text p {
        font-size: 1.2rem;
        margin-bottom: 35px;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-text {
        margin-top: 60px;
        max-width: 1000px;
    }
    
    .carousel .carousel-text h1 {
        font-size: 4rem;
        margin-bottom: 30px;
    }
    
    .carousel .carousel-text p {
        font-size: 1.3rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 575.98px) {
    .carousel {
        margin-top: 60px;
    }
    
    .carousel .carousel-item {
        height: 100vh;
        min-height: 500px;
        padding-top: 60px;
    }
    
    .carousel .carousel-text {
        margin: 100px auto 0;
        padding: 35px 20px;
        width: 92%;
    }
    
    .carousel .carousel-text h1 {
        font-size: 1.9rem;
    }
    
    .carousel .carousel-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .carousel .carousel-btn .btn {
        padding: 15px 30px;
        font-size: 1rem;
        width: 220px;
        margin: 8px auto;
        min-width: auto;
    }
}

/* Mobile Toggle */
.premium-toggler {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    animation: togglerFadeIn 0.5s ease-out;
}

@keyframes togglerFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.premium-toggler:focus {
    outline: none;
    box-shadow: 0 2px 12px rgba(218, 165, 32, 0.2);
    border-color: rgba(218, 165, 32, 0.3);
}

.premium-toggler:hover {
    background: rgba(218, 165, 32, 0.08);
    border-color: rgba(218, 165, 32, 0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.toggler-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #444;
    margin: 2.5px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
    transform-origin: center;
    opacity: 0.8;
}

.premium-toggler[aria-expanded="true"] {
    background: rgba(218, 165, 32, 0.12);
    border-color: rgba(218, 165, 32, 0.4);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
}

.premium-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #DAA520;
    opacity: 1;
}

.premium-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.premium-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #DAA520;
    opacity: 1;
}

/* Mobile Menu Dropdown */
.navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    margin-top: 15px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
}

.navbar-collapse.show {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .brand-content h1 {
        font-size: 2.2rem;
    }
    
    .premium-actions {
        margin-left: 20px;
    }
}

@media (max-width: 991.98px) {
    .header-strip {
        text-align: center;
        padding: 8px 0;
    }
    
    .contact-strip {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .social-strip {
        justify-content: center;
        margin-top: 10px;
    }
    
    .premium-menu {
        flex-direction: column;
        align-items: stretch;
        background: transparent;
        backdrop-filter: none;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
        box-shadow: none;
    }
    
    .premium-menu .nav-link {
        margin: 8px 0;
        text-align: center;
        padding: 15px 25px !important;
        background: rgba(218, 165, 32, 0.1);
        border: 1px solid rgba(218, 165, 32, 0.3);
        border-radius: 25px;
        transition: all 0.3s ease;
        font-weight: 700;
    }
    
    .premium-menu .nav-link:hover {
        background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
        color: #1a1a1a !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(218, 165, 32, 0.3);
    }
    
    .premium-actions {
        flex-direction: column;
        margin: 25px 0 0 0;
        gap: 15px;
    }
    
    .action-btn {
        justify-content: center;
        width: 100%;
        padding: 15px 30px;
        font-size: 15px;
        border-radius: 30px;
    }
}

@media (max-width: 767.98px) {
    .brand-container {
        gap: 8px;
    }
    
    .brand-icon {
        width: 28px;
        height: 28px;
    }
    
    .brand-content h1 {
        font-size: 1.2rem;
    }
    
    .brand-content p {
        font-size: 0.5rem;
        letter-spacing: 0.3px;
        display: none;
    }
    
    .strip-item {
        font-size: 10px;
        gap: 4px;
    }
    
    .contact-strip {
        gap: 8px;
        justify-content: center;
    }
    
    .header-strip {
        display: none;
    }
    
    .premium-nav {
        padding: 6px 0;
    }
    
    .premium-menu {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        margin-top: 8px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        gap: 8px;
    }
    
    .premium-menu .nav-link {
        margin: 2px 0;
        padding: 10px 20px !important;
        font-size: 14px;
        width: 180px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .header-actions {
        margin-top: 12px;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .header-actions .action-btn {
        display: block;
        width: 180px;
        margin: 4px auto;
        text-align: center;
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .carousel-text {
        margin-top: 50px;
        padding: 0 15px;
    }
    
    .carousel-text h1 {
        font-size: 2rem;
    }
    
    .carousel-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn.custom-btn {
        padding: 10px 20px;
        font-size: 12px;
        min-width: 120px;
        margin: 4px;
    }
    
    .hero-carousel {
        margin-top: -8px;
    }
    
    .navbar-toggler,
    .premium-toggler {
        padding: 4px;
        border: 1px solid rgba(218, 165, 32, 0.3);
        border-radius: 6px;
        width: 32px;
        height: 32px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    }
}

@media (max-width: 575.98px) {
    .premium-nav {
        padding: 8px 0;
    }
    
    .brand-content h1 {
        font-size: 1.2rem;
    }
    
    .contact-strip {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .strip-item {
        font-size: 11px;
    }
    
    .social-icons {
        gap: 6px;
    }
    
    .social-icon {
        width: 26px;
        height: 26px;
    }
    
    .carousel-text h1 {
        font-size: 1.8rem;
    }
    
    .carousel-text p {
        font-size: 14px;
    }
    
    .btn.custom-btn {
        padding: 10px 20px;
        font-size: 12px;
        min-width: 120px;
        margin: 5px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .menu-tabs .nav-link {
        margin: 3px;
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .menu-item {
        padding: 20px 15px;
    }
    
    .menu-item h4 {
        font-size: 1.2rem;
    }
    
    .menu-rating {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
    
    .navbar-toggler,
    .premium-toggler {
        padding: 3px;
        border: 1px solid rgba(218, 165, 32, 0.3);
        width: 30px;
        height: 30px;
        border-radius: 5px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    }
    
    .premium-toggler .toggler-bar {
        width: 18px;
        height: 1.5px;
        margin: 2px 0;
    }
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.action-btn {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-btn:hover {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    color: #1a1a1a;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.action-btn i {
    font-size: 12px;
}


.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.navbar .navbar-brand {
    margin: 0;
    color: #fbaf32;
    font-size: 45px;
    line-height: 0px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    transition: .5s;
    
}

.navbar .navbar-brand span {
    color: #719a0a;
}

.navbar .navbar-brand:hover {
    color: #fbaf32;
}

.navbar .navbar-brand:hover span {
    color: #fbaf32;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        padding: 30px 60px;
        background: transparent !important;
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #ffffff !important;
    }
    
    .navbar .navbar-brand {
        color: #fbaf32;
    }
    
    .navbar.nav-sticky .navbar-brand {
        color: #fbaf32;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 10px 8px 10px;
        font-family: 'Nunito', sans-serif;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link,
    .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
        color: #666666;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #fbaf32;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active {
        color: #fbaf32;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background: #ffffff !important;
    }
    
    .navbar .navbar-brand {
        color: #fbaf32;
    }
    
    .navbar .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/*******************************/
/********** Ultra Premium Hero CSS **********/
/********************************************/
.carousel {
    position: relative;
    width: 100vw;
    margin: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 140px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    overflow: hidden;
    transition: margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel.header-scrolled {
    margin-top: 80px;
}

.carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg, 
        rgba(218, 165, 32, 0.05) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255, 215, 0, 0.05) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.carousel .container-fluid {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: none;
}

.carousel .carousel-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel .carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 2;
}

.carousel .carousel-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(26, 26, 26, 0.8) 100%
    );
    z-index: 3;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

.carousel .carousel-text {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    width: 90%;
    padding: 0 20px;
    animation: premiumFadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateY(60px);
}

@keyframes premiumFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Luxury Badge */
.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(218, 165, 32, 0.15);
    border: 2px solid rgba(218, 165, 32, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    backdrop-filter: blur(15px);
    animation: premiumPulse 2s ease-in-out infinite;
}

@keyframes premiumPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(218, 165, 32, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(218, 165, 32, 0.6);
        transform: scale(1.02);
    }
}

.luxury-badge i {
    color: #DAA520;
    font-size: 16px;
}

.luxury-badge span {
    color: #FFD700;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.carousel .carousel-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: premiumShimmer 3s ease-in-out infinite;
}

@keyframes premiumShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.carousel .carousel-text h1 span {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel .carousel-text p {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.carousel .carousel-btn {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.carousel .carousel-btn .btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 45px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin: 0 10px;
    min-width: 160px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.carousel .carousel-btn .btn.btn-hover-effect {
    animation: professionalPulse 0.6s ease-in-out;
}

@keyframes professionalPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.carousel .carousel-btn .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.carousel .carousel-btn .btn:hover::before {
    left: 100%;
}

.carousel .carousel-btn .btn:first-child {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    color: #1a1a1a;
    box-shadow: 0 12px 30px rgba(218, 165, 32, 0.4);
    border: 2px solid transparent;
}

.carousel .carousel-btn .btn:first-child:hover {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.6);
}

.carousel .carousel-btn .btn:last-child {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.carousel .carousel-btn .btn:last-child:hover {
    background: rgba(218, 165, 32, 0.2);
    color: #FFD700;
    border-color: #DAA520;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(218, 165, 32, 0.3);
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(218, 165, 32, 0.2);
    border-color: rgba(218, 165, 32, 0.5);
    transform: translateY(-3px);
}

.feature-item i {
    color: #DAA520;
    font-size: 18px;
}

.feature-item span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Premium Overlay */
.premium-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 12;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(15px);
}

.premium-overlay span {
    color: #DAA520;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .carousel .carousel-text h1 {
        font-size: 4rem;
    }
    
    .carousel .carousel-text p {
        font-size: 1.3rem;
    }
}

@media (max-width: 991.98px) {
    .carousel {
        margin-top: 0;
    }
    
    .carousel .carousel-item {
        height: 100vh;
        min-height: 500px;
        padding-top: 120px;
    }
    
    .carousel .carousel-text h1 {
        font-size: 3.5rem;
    }
    
    .carousel .carousel-text p {
        font-size: 1.2rem;
        margin-bottom: 35px;
    }
    
    .hero-features {
        gap: 25px;
    }
    
    .premium-cta-buttons {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .carousel {
        margin-top: 0;
    }
    
    .carousel .carousel-item {
        height: 100vh;
        min-height: 450px;
        padding-top: 100px;
    }
    
    .carousel .carousel-text {
        padding: 0 15px;
    }
    
    .carousel .carousel-text h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .carousel .carousel-text p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .carousel .carousel-btn {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .carousel .carousel-btn .btn {
        padding: 15px 30px;
        font-size: 1rem;
        margin: 5px 0;
        width: 280px;
        max-width: 90vw;
    }
    
    .ultra-premium-header.scrolled {
        transform: translateY(-50px);
    }
}
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 40px;
    }
    
    .premium-overlay {
        top: 20px;
        right: 20px;
        padding: 10px 20px;
    }

@media (max-width: 575.98px) {
    .carousel {
        margin-top: 70px;
    }
    
    .carousel .carousel-item {
        height: 70vh;
        min-height: 450px;
    }
    
    .carousel .carousel-text h1 {
        font-size: 2.3rem;
    }
    
    .carousel .carousel-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .carousel .carousel-btn {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel .carousel-btn .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 250px;
        justify-content: center;
        margin: 0 0 10px 0;
    }
    
    .luxury-badge {
        padding: 10px 20px;
        margin-bottom: 20px;
    }
    
    .luxury-badge span {
        font-size: 0.85rem;
    }
}

@media (max-width: 991.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: 100vh;
    }
    
    .carousel .carousel-text h1 {
        font-size: 2.5rem;
    }
    
    .carousel .carousel-text p {
        font-size: 1.1rem;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
    
    .navbar .navbar-nav .nav-link {
        margin: 5px 10px;
        padding: 8px 15px !important;
    }
}

@media (max-width: 767.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: 100vh;
    }
    
    .carousel .carousel-text h1 {
        font-size: 2rem;
    }
    
    .carousel .carousel-text p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
        margin: 5px;
    }
    
    .navbar.navbar-light .navbar-brand {
        font-size: 2rem;
    }
    
    .navbar .navbar-nav .nav-link {
        margin: 2px 5px;
        padding: 8px 12px !important;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 1.8rem;
    }
    
    .carousel .carousel-text p {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
        display: block;
        width: 80%;
        margin: 10px auto;
    }
    
    .navbar.navbar-light .navbar-brand {
        font-size: 1.8rem;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 150px 0 90px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/page-header.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header h2 {
    position: relative;
    color: #fbaf32;
    font-size: 60px;
    font-weight: 700;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -1px;
    right: -7px;
    text-align: center;
    color: #fbaf32;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    margin-bottom: 45px;
}

.section-header p {
    color: #719a0a;
    margin-bottom: 5px;
    position: relative;
    font-size: 20px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 40px;
        font-weight: 600;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 35px;
        font-weight: 600;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 30px;
        font-weight: 600;
    }
}


/*******************************/
/********* Booking CSS *********/
/*******************************/
.booking {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    background: rgba(0, 0, 0, .04);
}

.booking .booking-content {
    padding: 45px 0 15px 0;
}

.booking .booking-content .section-header {
    margin-bottom: 30px;
}

.booking .booking-form {
    padding: 60px 30px;
    background: #fbaf32;
}

.booking .booking-form .control-group {
    margin-bottom: 15px;
}

.booking .booking-form .input-group-text {
    position: absolute;
    padding: 0;
    border: none;
    background: none;
    top: 15px;
    right: 15px;
    color: #ffffff;
    font-size: 14px;
}

.booking .booking-form .form-control {
    height: 45px;
    font-size: 14px;
    color: #ffffff;
    padding: 0 15px;
    border-radius: 5px !important;
    border: 1px solid #ffffff;
    background: transparent;
}

.booking .booking-form select.form-control {
    padding: 0 10px;
}

.booking .booking-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.booking .booking-form .form-control:-ms-input-placeholder,
.booking .booking-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.booking .booking-form .input-group [data-toggle="datetimepicker"] {
    cursor: default;
}

.booking .booking-form .btn.custom-btn {
    width: 100%;
    color: #fbaf32;
    background: #ffffff;
    border: 1px solid #ffffff;
}

.booking .booking-form .btn.custom-btn:hover {
    color: #ffffff;
    background: transparent;
}


/*******************************/
/********** Menu CSS ***********/
/*******************************/
.food {
    position: relative;
    width: 100%;
    padding: 90px 0 60px 0;
    margin: 45px 0;
    background: rgba(0, 0, 0, .04);
}

.food .food-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 50px 30px 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.food .food-item:hover {
    box-shadow: none;
}

.food .food-item i {
    position: relative;
    display: inline-block;
    color: #fbaf32;
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 20px;
    transition: .3s;
}

.food .food-item:hover i {
    color: #719a0a;
}

.food .food-item i::after {
    position: absolute;
    content: "";
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -20px;
    left: -15px;
    border: 3px dotted #fbaf32;
    border-right: transparent;
    border-bottom: transparent;
    border-radius: 100px;
    transition: .3s;
}

.food .food-item:hover i::after {
    border: 3px dotted #719a0a;
    border-right: transparent;
    border-bottom: transparent;
}

.food .food-item h2 {
    font-size: 30px;
    font-weight: 700;
}

.food .food-item a {
    position: relative;
    font-size: 16px;
}

.food .food-item a::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    bottom: 0;
    left: calc(50% - 25px);
    background: #fbaf32;
    transition: .3s;
}

.food .food-item a:hover::after {
    width: 100%;
    left: 0;
    background: #719a0a;
}



/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
}

.about .about-img img {
    position: relative;
    width: 100%;
    border-radius: 15px;
}

.about .btn-play {
    position: absolute;
    z-index: 1;
    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;
}

.about .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: #fbaf32;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.about .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: #fbaf32;
    border-radius: 50%;
    transition: all 200ms;
}

.about .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.about .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #ffffff;
    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 {
    padding-left: 17px;
}

#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;
}

.about .about-content {
    position: relative;
}

.about .about-text p {
    font-size: 16px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
}

@media (max-width: 991.98px) {
    .about .about-img {
        margin-bottom: 30px;
    }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

.feature .section-header {
    margin-bottom: 30px;
}

.feature .feature-text {
    position: relative;
    width: 100%;
}

.feature .feature-img {
    border-radius: 15px;
    margin-bottom: 25px;
    overflow: hidden;
}

.feature .feature-img .col-6,
.feature .feature-img .col-12 {
    padding: 0;
    overflow: hidden;
}

.feature .feature-img img {
    width: 100%;
    transition: .3s;
}

.feature .feature-img img:hover {
    transform: scale(1.1);
}

.feature .feature-text .btn {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 45px;
}

.feature .feature-item {
    width: 100%;
    margin-bottom: 45px;
}

.feature .feature-item i {
    position: relative;
    display: block;
    color: #719a0a;
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 15px;
    background-image: linear-gradient(#719a0a, #fbaf32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature .feature-item i::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    top: -10px;
    left: 20px;
    background: #fbaf32;
    border-radius: 30px;
    z-index: -1;
}

.feature .feature-item h3 {
    font-size: 22px;
    font-weight: 700;
}


/*******************************/
/*********** Menu CSS **********/
/*******************************/
.menu {
    position: relative;
    padding: 45px 0 15px 0;
}

.menu .menu-tab {
    position: relative;
}

.menu .menu-tab img {
    max-width: 100%;
    border-radius: 15px;
}

.menu .menu-tab .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #fbaf32;
    border-radius: 5px;
    margin: 0 5px;
}

.menu .menu-tab .nav.nav-pills .nav-link:hover,
.menu .menu-tab .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #719a0a;
}

.menu .menu-tab .tab-content {
    padding: 30px 0 0 0;
    background: transparent;
}

.menu .menu-tab .tab-content .container {
    padding: 0;
}

.menu .menu-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.menu .menu-img {
    width: 80px;
    margin-right: 20px;
}

.menu .menu-img img {
    width: 100%;
    border-radius: 100px;
}

.menu .menu-text {
    width: calc(100% - 100px);
}

.menu .menu-text h3 {
    position: relative;
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.menu .menu-text h3::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 13px;
    left: 0;
    border-top: 2px dotted #cccccc;
    z-index: -1;
}

.menu .menu-text h3 span {
    display: inline-block;
    float: left;
    padding-right: 5px;
    background: #ffffff;
}

.menu .menu-text h3 strong {
    display: inline-block;
    float: right;
    padding-left: 5px;
    color: #fbaf32;
    background: #ffffff;
}

.menu .menu-text p {
    position: relative;
    margin: 5px 0 0 0;
    float: left;
    display: block;
}

@media(max-width: 575.98px) {
    .menu .menu-text p,
    .menu .menu-text h3,
    .menu .menu-text h3 span,
    .menu .menu-text h3 strong {
        display: block;
        float: none;
        padding: 0;
        margin: 0;
    }
    
    .menu .menu-text h3 {
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .menu .menu-text h3 span {
        margin-bottom: 3px;
    }
    
    .menu .menu-text h3::after {
        display: none;
    }
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    background: #ffffff;
}

.team .team-img {
    position: relative;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.team .team-img img {
    position: relative;
    width: 100%;
    margin-top: 15px;
    transform: scale(1.1);
    transition: .3s;
}

.team .team-item:hover img {
    margin-top: 0;
    margin-bottom: 15px;
}

.team .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team .team-social a {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-size: 16px;
    color: #ffffff;
    background: #fbaf32;
    opacity: 0;
}

.team .team-social a:hover {
    color: #ffffff;
    background: #719a0a;
}

.team .team-item:hover .team-social {
    background: rgba(256, 256, 256, .5);
}

.team .team-item:hover .team-social a:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .3s;
}

.team .team-text {
    position: relative;
    padding: 25px 15px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-top: none;
    border-radius: 0 0 15px 15px;
}

.team .team-text h2 {
    font-size: 22px;
    font-weight: 700;
}

.team .team-text p {
    margin: 0;
    font-size: 16px;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 90px 0;
    margin: 45px 0;
    background: rgba(0, 0, 0, .04);
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    margin: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .08);
    transition: .3s;
    overflow: hidden;
}

.testimonial .testimonial-item:hover {
    box-shadow: none;
}

.testimonial .testimonial-img {
    position: relative;
    width: 100px;
    border-radius: 100px;
    margin-bottom: 20px;
    overflow: hidden;
}

.testimonial .testimonial-img img {
    width: 100%;
    border-radius: 100px;
}

.testimonial .testimonial-item p {
    text-align: center;
    margin-bottom: 10px;
}

.testimonial .testimonial-item h2 {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial .testimonial-item h3 {
    color: #999999;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.testimonial .owl-dots {
    margin-top: 10px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fbaf32;
}

.testimonial .owl-dot.active {
    background: #719a0a;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

.blog .blog-item {
    position: relative;
}

.blog .blog-img {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-content {
    position: relative;
    width: calc(100% - 60px);
    top: -60px;
    left: 30px;
    padding: 25px 30px 30px 30px;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border-radius: 15px;
    z-index: 2;
}

.blog .blog-content h2.blog-title {
    font-size: 22px;
    font-weight: 700;
}

.blog .blog-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.blog .blog-meta p {
    margin: 0 10px 0 0;
    font-size: 14px;
    color: #999999;
}

.blog .blog-meta i {
    color: #fbaf32;
    margin-right: 5px;
}

.blog .blog-meta p:last-child {
    margin: 0;
}

.blog .blog-text {
    position: relative;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    margin-top: 10px;
    padding: 5px 15px;
}

.blog .pagination .page-link {
    color: #fbaf32;
    border-radius: 5px;
    border-color: #fbaf32;
    margin: 0 2px;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #ffffff;
    background: #fbaf32;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}

@media(max-width: 575.98px){
    .blog .blog-meta p {
        flex: 50%;
        font-size: 13px;
        margin: 0 0 5px 0;
    }
}


/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #fbaf32;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.single .single-tags a:hover {
    color: #ffffff;
    background: #fbaf32;
    border-color: #fbaf32;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: rgba(0, 0, 0, .04);
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
    border-radius: 100px;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
    border-radius: 5px;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    color: #757575;
    font-size: 17px;
}

.single .post-item .post-text a:hover {
    color: #fbaf32;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    color: #999999;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #fbaf32;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #719a0a;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
    border-radius: 100px;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    color: #454545;
    background: #dddddd;
    border-radius: 5px;
}

.single .comment-text .btn:hover {
    background: #fbaf32;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 5px;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 25px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #fbaf32;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #fbaf32;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #719a0a;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #ffffff;
    background: #fbaf32;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #ffffff;
    background: #719a0a;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px; 
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0; 
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fbaf32;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #fbaf32;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.single .tag-widget a:hover {
    color: #ffffff;
    background: #fbaf32;
    border-color: #fbaf32;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-information {
    min-height: 150px;
    margin: 0 0 30px 0;
    padding: 30px 15px 0 15px;
    background: rgba(0, 0, 0, .04);
}

.contact .contact-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbaf32;
    border-radius: 50px;
}

.contact .contact-icon i {
    font-size: 18px;
    color: #ffffff;
}

.contact .contact-text {
    position: relative;
    width: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #719a0a;
}

.contact .contact-text p {
    margin: 0;
    font-size: 16px;
    color: #454545;
}

.contact .contact-social a {
    margin-right: 10px;
    font-size: 18px;
    color: #fbaf32;
}

.contact .contact-social a:hover {
    color: #719a0a;
}

.contact .contact-form iframe {
    width: 100%;
    height: 380px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 150px;
    padding: 8px 15px;
    background: none;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/***** Ultra Premium Footer ****/
/*******************************/

.premium-footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #DAA520, #FFD700, #DAA520, #B8860B, #DAA520);
    background-size: 300% 100%;
    animation: gradientFlow 4s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.premium-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(218, 165, 32, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(218, 165, 32, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Footer Main Section */
.footer-main-section {
    padding: 50px 0 30px;
    position: relative;
    z-index: 2;
}

/* Footer Top Brand Section */
.footer-top {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.footer-brand .brand-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-brand .brand-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.4);
    overflow: hidden;
}

.footer-brand .brand-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #DAA520, #FFD700, #B8860B, #DAA520);
    border-radius: 23px;
    z-index: -1;
    animation: rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer-brand .brand-icon i {
    color: #1a1a1a;
    font-size: 28px;
    position: relative;
    z-index: 2;
}

.footer-brand .brand-icon .fa-crown {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
}

.footer-brand .brand-icon .fa-utensils {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
}

.footer-brand .brand-content h2 {
    margin: 0;
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.footer-brand .brand-content .accent {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .brand-content p {
    margin: 8px 0 0 0;
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Quality Badge */
.quality-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(218, 165, 32, 0.1);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
}

.badge-icon i {
    color: #1a1a1a;
    font-size: 24px;
}

.badge-text h4 {
    margin: 0;
    color: #DAA520;
    font-size: 1.3rem;
    font-weight: 700;
}

.badge-text p {
    margin: 5px 0 0 0;
    color: #cccccc;
    font-size: 0.9rem;
}

/* Footer Social Premium */
.footer-social-premium h4 {
    margin: 0 0 20px 0;
    color: #DAA520;
    font-size: 1.3rem;
    font-weight: 700;
}

.social-links-premium {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-premium {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-premium:hover::before {
    transform: scale(1);
}

.social-premium.facebook {
    background: rgba(59, 89, 152, 0.1);
    border-color: rgba(59, 89, 152, 0.3);
}

.social-premium.facebook::before {
    background: #3b5998;
}

.social-premium.instagram {
    background: rgba(225, 48, 108, 0.1);
    border-color: rgba(225, 48, 108, 0.3);
}

.social-premium.instagram::before {
    background: linear-gradient(135deg, #E1306C, #F56040);
}

.social-premium.twitter {
    background: rgba(29, 161, 242, 0.1);
    border-color: rgba(29, 161, 242, 0.3);
}

.social-premium.twitter::before {
    background: #1DA1F2;
}

.social-premium.youtube {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
}

.social-premium.youtube::before {
    background: #FF0000;
}

.social-premium i {
    color: #cccccc;
    font-size: 20px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.social-premium:hover i {
    color: #ffffff;
}

.social-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Footer Content Grid */
.footer-content-grid {
    margin-top: 50px;
}

.footer-section {
    margin-bottom: 40px;
}

.section-title {
    color: #DAA520;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #DAA520, #FFD700);
    border-radius: 2px;
}

.section-title i {
    font-size: 1.2rem;
}

/* Restaurant Info */
.info-list .info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(218, 165, 32, 0.1);
    transition: all 0.3s ease;
}

.info-list .info-item:hover {
    background: rgba(218, 165, 32, 0.05);
    border-color: rgba(218, 165, 32, 0.2);
    transform: translateY(-2px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(218, 165, 32, 0.3);
}

.info-icon i {
    color: #1a1a1a;
    font-size: 18px;
}

.info-content h5 {
    margin: 0 0 8px 0;
    color: #DAA520;
    font-size: 1.1rem;
    font-weight: 700;
}

.info-content p {
    margin: 0;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.footer-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, #DAA520, transparent);
    transition: width 0.3s ease;
}

.footer-menu li a::after {
    content: '→';
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #DAA520;
}

.footer-menu li a:hover {
    color: #DAA520;
    background: rgba(218, 165, 32, 0.1);
    transform: translateX(5px);
}

.footer-menu li a:hover::before {
    width: 4px;
}

.footer-menu li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Premium Newsletter */
.newsletter-section .newsletter-desc {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.premium-newsletter-form {
    margin-bottom: 30px;
}

.input-group-premium {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid rgba(218, 165, 32, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.input-group-premium:focus-within {
    border-color: #DAA520;
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
}

.premium-email-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
}

.premium-email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.premium-submit-btn {
    padding: 15px 20px;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    border: none;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-submit-btn:hover {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    transform: scale(1.05);
}

.premium-submit-btn i {
    font-size: 16px;
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 0.9rem;
}

.feature-item i {
    color: #DAA520;
    font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
    background: linear-gradient(135deg, rgba(15, 23, 43, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 40px 0 25px;
    border-top: 3px solid transparent;
    background-clip: padding-box;
    border-image: linear-gradient(90deg, #FEA116, #FF6B35, #FEA116) 1;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FEA116, #FF6B35, #FEA116, transparent);
}

.copyright {
    position: relative;
}

.copyright p {
    margin: 0;
    color: #e8e9ea;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.copyright strong {
    background: linear-gradient(135deg, #FEA116 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1em;
}

.copyright i {
    color: #e74c3c;
    margin: 0 8px;
    animation: heartbeat 1.5s ease-in-out infinite;
    font-size: 1.1em;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.footer-bottom-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom-menu a {
    color: #b8bcc0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(254, 161, 22, 0.2);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.footer-bottom-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FEA116 0%, #FF6B35 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.footer-bottom-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FEA116, #FF6B35);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.footer-bottom-menu a:hover {
    color: white;
    background: rgba(254, 161, 22, 0.1);
    border-color: rgba(254, 161, 22, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 161, 22, 0.3);
}

.footer-bottom-menu a:hover::before {
    left: 0;
}

.footer-bottom-menu a:hover::after {
    width: 80%;
}

/* ZDC Tech Company Credit Styles - Enhanced Professional Design */
.company-credit {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(254, 161, 22, 0.08) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(254, 161, 22, 0.15);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.company-credit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(254, 161, 22, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.credit-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.credit-icon {
    background: linear-gradient(135deg, #FEA116 0%, #FF6B35 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(254, 161, 22, 0.4),
        0 0 0 5px rgba(254, 161, 22, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 10px 30px rgba(254, 161, 22, 0.4), 0 0 0 5px rgba(254, 161, 22, 0.1); }
    100% { box-shadow: 0 15px 40px rgba(254, 161, 22, 0.6), 0 0 0 8px rgba(254, 161, 22, 0.2); }
}

.credit-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotate-shine 4s linear infinite;
}

@keyframes rotate-shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.credit-icon i {
    color: white;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.credit-text {
    text-align: center;
    flex: 1;
    min-width: 280px;
}

.credit-text p {
    margin: 0 0 8px 0;
    color: #f5f5f5;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.company-link {
    color: #FEA116;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: inline-block;
    padding: 5px 0;
    background: linear-gradient(135deg, #FEA116 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-link:hover {
    text-decoration: none;
    text-shadow: 0 0 20px rgba(254, 161, 22, 0.8);
    transform: scale(1.05);
}

.company-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FEA116, #FF6B35, #FEA116);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.company-link:hover::after {
    width: 100%;
}

.credit-tagline {
    color: #c0c0c0;
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 400;
    margin-top: 5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.credit-badge {
    background: linear-gradient(135deg, #FEA116 0%, #FF6B35 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 
        0 8px 20px rgba(254, 161, 22, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credit-badge::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.6s ease;
}

.credit-badge:hover::before {
    left: 100%;
}

.badge-text {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.badge-text::before {
    content: '✨';
    font-size: 0.9rem;
    animation: sparkle 1.5s ease-in-out infinite alternate;
}

@keyframes sparkle {
    0% { opacity: 0.6; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); }
}

/* Enhanced Mobile-First Responsive Design */
@media (max-width: 768px) {
    .footer-bottom {
        padding: 35px 0 20px;
        text-align: center;
    }
    
    .footer-bottom .row {
        flex-direction: column-reverse;
        gap: 25px;
    }
    
    .footer-bottom-menu {
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .footer-bottom-menu a {
        padding: 10px 18px;
        font-size: 0.9rem;
        border-radius: 30px;
    }
    
    .copyright p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .company-credit {
        padding: 25px 20px;
        margin-top: 25px;
        border-radius: 15px;
    }
    
    .credit-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .credit-icon {
        order: 1;
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .credit-icon i {
        font-size: 1.2rem;
    }
    
    .credit-text {
        order: 2;
        min-width: auto;
        max-width: 100%;
    }
    
    .credit-text p {
        font-size: 0.9rem;
    }
    
    .company-link {
        font-size: 1rem;
        display: inline-block;
        margin-top: 5px;
    }
    
    .credit-badge {
        order: 3;
        padding: 10px 16px;
        font-size: 0.75rem;
        margin: 0 auto;
        display: table;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        padding: 30px 0 15px;
    }
    
    .footer-bottom-menu {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .footer-bottom-menu a {
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        text-align: center;
        padding: 12px 20px;
    }
    
    .copyright p {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    .company-credit {
        padding: 20px 15px;
        margin-top: 20px;
    }
    
    .credit-text p {
        font-size: 0.85rem;
    }
    
    .credit-tagline {
        font-size: 0.75rem;
        margin-top: 8px;
    }
    
    .company-link {
        font-size: 0.95rem;
    }
    
    .credit-badge {
        padding: 8px 14px;
        font-size: 0.7rem;
    }
}

/* Ultra-wide screens optimization */
@media (min-width: 1200px) {
    .footer-bottom {
        padding: 45px 0 30px;
    }
    
    .company-credit {
        padding: 35px 40px;
        margin-top: 35px;
    }
    
    .credit-content {
        gap: 30px;
    }
    
    .credit-icon {
        width: 70px;
        height: 70px;
    }
    
    .credit-icon i {
        font-size: 1.6rem;
    }
    
    .credit-text p {
        font-size: 1.1rem;
    }
    
    .company-link {
        font-size: 1.2em;
    }
    
    .credit-badge {
        padding: 14px 24px;
        font-size: 0.85rem;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .footer-main-section {
        padding: 60px 0 40px;
    }
    
    .footer-top {
        text-align: center;
    }
    
    .footer-brand .brand-container {
        justify-content: center;
    }
    
    .social-links-premium {
        justify-content: center;
        margin-top: 20px;
    }
    
    .quality-badge {
        margin: 30px 0;
    }
    
    .footer-bottom-menu {
        justify-content: center;
        margin-top: 15px;
        gap: 15px;
    }
}

@media (max-width: 767.98px) {
    .footer-main-section {
        padding: 50px 0 30px;
    }
    
    .footer-top {
        margin-bottom: 40px;
    }
    
    .footer-brand .brand-content h2 {
        font-size: 2.3rem;
    }
    
    .quality-badge {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .info-list .info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .social-links-premium {
        gap: 10px;
    }
    
    .social-premium {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .footer-main-section {
        padding: 40px 0 20px;
    }
    
    .footer-brand .brand-content h2 {
        font-size: 2rem;
    }
    
    .footer-brand .brand-icon {
        width: 60px;
        height: 60px;
    }
    
    .section-title {
        font-size: 1.2rem;
        justify-content: center;
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom-menu {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .premium-newsletter-form .input-group-premium {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .premium-submit-btn {
        border-radius: 0 0 15px 15px;
    }
    
    .premium-email-input {
        border-radius: 15px 15px 0 0;
    }
}

/* SPA Navigation Styles */
.smooth-scroll {
    scroll-behavior: smooth;
}

.section {
    min-height: 100vh;
    padding: 80px 0;
}

.section:first-child {
    padding: 0;
}

#home {
    min-height: 100vh;
    padding: 0;
}

.nav-link.active {
    color: #d4a574 !important;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    border-radius: 1px;
}

/* Professional Image Styling */
.professional-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.professional-image:hover {
    transform: translateY(-5px);
}

.menu-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Contact Styling */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.contact-details h5 {
    color: #d4a574;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Menu Tab Styling */
.menu-tabs .nav-link {
    background: transparent;
    border: 2px solid #d4a574;
    color: #d4a574;
    margin: 0 10px;
    border-radius: 25px;
    padding: 10px 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.menu-tabs .nav-link.active,
.menu-tabs .nav-link:hover {
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

/* Map Container Styling */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Loading Screen Styling */
#loading-screen {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Professional Menu Item Styling */
.menu-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.05), transparent);
    transition: left 0.5s ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
}

.menu-item h3,
.menu-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.menu-price {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.menu-item:hover .menu-img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.menu-rating {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.menu-rating .fas.fa-star,
.menu-rating .far.fa-star {
    font-size: 14px;
    margin-right: 2px;
}

.menu-rating .text-warning {
    color: #f39c12 !important;
}

.menu-rating span {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-left: 8px;
}

/* Hero Carousel Positioning */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: -15px;
}

.carousel-item {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.7) 100%
    );
}

.carousel-text {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    margin-top: 80px;
}

.carousel-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-text h1 span {
    color: #DAA520;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.carousel-btn {
    margin-top: 35px;
}

/* Mobile Responsive for Hero */
@media (max-width: 768px) {
    .carousel-text {
        margin-top: 60px;
        padding: 0 20px;
    }
    
    .carousel-text h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .carousel-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-carousel {
        margin-top: -10px;
    }
}

/* Hero Carousel Positioning */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: -20px;
}

.carousel-item {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.7) 100%
    );
}

.carousel-text {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    margin-top: 100px;
}
   

.carousel-text {
    position: relative;
    z-index: 2;
}

/* Enhanced Navigation Icons */
.nav-icon {
    margin-right: 8px;
    font-size: 14px;
}

/* Professional Text Utilities */
.text-primary {
    color: #d4a574 !important;
}

.text-secondary {
    color: #6c757d !important;
}

.text-muted {
    color: #999999 !important;
    font-weight: 300;
}

/* Professional Spacing Utilities */
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }

.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }

.p-20 { padding: 20px !important; }
.p-30 { padding: 30px !important; }
.p-40 { padding: 40px !important; }

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Typography Adjustments */
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2.0rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    h4 {
        font-size: 1.4rem;
    }
    
    /* Section Adjustments */
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    /* Button Adjustments */
    .btn.custom-btn {
        padding: 15px 25px;
        font-size: 14px;
        min-width: 140px;
    }
    
    /* Form Adjustments */
    .form-control {
        padding: 12px 15px;
        font-size: 14px;
        min-height: 45px;
    }
    
    /* Container Adjustments */
    .container,
    .container-fluid {
        padding: 0 15px;
    }
    
    /* Menu and Navigation */
    .menu-tabs .nav-link {
        margin: 5px;
        padding: 10px 18px;
        font-size: 13px;
    }
    
    /* Card Adjustments */
    .card-body {
        padding: 20px 15px;
    }
    
    .menu-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    /* Contact and Other Elements */
    .contact-icon {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .menu-img {
        width: 65px;
        height: 65px;
    }
    
    .feature-card {
        margin-bottom: 25px;
        padding: 25px 20px;
    }
    
    /* Text Adjustments */
    p {
        font-size: 15px;
    }
    
    .lead {
        font-size: 16px;
    }
    
    /* Spacing Adjustments */
    .row > [class*="col-"] {
        margin-bottom: 25px;
    }
}

/* Large Screen Optimizations */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .container-fluid {
        max-width: 1600px;
    }
    
    .section {
        padding: 120px 0;
    }
    
    .section-header {
        margin-bottom: 80px;
    }
}

/* Professional Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Professional Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-shadow {
    transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .section {
        padding-top: 100px;
    }
    
    .menu-tabs .nav-link {
        margin: 5px;
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .menu-img {
        width: 60px;
        height: 60px;
    }
    
/* Professional Card Styling */
.card {
    background: #ffffff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    border: none;
    color: white;
    padding: 20px 25px;
    font-weight: 600;
    font-size: 18px;
}

.card-body {
    padding: 30px 25px;
}

/* Enhanced Input Groups */
.input-group {
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-group:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.input-group-text {
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    border: none;
    color: white;
    font-size: 16px;
    padding: 15px 18px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* User Direct Link Styling */
.user-direct-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-direct-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.user-direct-link .user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-direct-link span {
    font-weight: 500;
    font-size: 14px;
}

.user-direct-link i {
    font-size: 14px;
    opacity: 0.8;
}
}