/*******************************/
/********* Common CSS **********/
/*******************************/

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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;
}

/* Remove unwanted spacing */
section {
    margin: 0;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.row {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    font-weight: 400;
}

p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 18px;
    font-weight: 400;
}

/* Page Header for internal pages */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 60px;
    margin-top: 100px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
}

.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb-item.active {
    color: white;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.page-header .breadcrumb-item a:hover {
    color: white;
}

.lead {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.9;
    color: #666666;
}

/* Main Wrapper */
.main-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Typography */
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; }

/* Links */
a {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    color: #e67e22;
    transition: .3s;
    text-decoration: none;
}

a:hover, a:active, a:focus {
    color: #d35400;
    outline: none;
    text-decoration: none;
}

/* Buttons */
.btn.custom-btn {
    padding: 12px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: 2px solid #ff6b35;
    border-radius: 8px;
    transition: all .3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn.custom-btn:hover {
    color: #ff6b35;
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
    text-decoration: none;
}

.btn.custom-btn:focus,
.btn.custom-btn:active {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

/* Form Controls */
.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);
}

/* Layout Containers */
.container-fluid {
    max-width: 1400px;
    padding: 0 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.section {
    padding: 40px 0;
    position: relative;
    margin: 0;
}

/* Features Section */
.features-section {
    background: #f8f9fa;
    padding: 30px 0;
}

.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    color: white;
    text-decoration: none;
}

/* Quick Contact Buttons */
.quick-contact-buttons .btn {
    margin: 2px;
    font-size: 13px;
    padding: 6px 12px;
}

.quick-contact-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Map Container Styling */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid rgba(212, 165, 116, 0.2);
}

.map-header h4 {
    color: #2c3e50;
    font-weight: 600;
}

/* Contact Icon Circles */
.contact-icon {
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.contact-icon:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.contact-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.4);
}

.contact-icon i {
    z-index: 2;
    position: relative;
}

/* Feature Circles */
.feature-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    background: rgba(212, 165, 116, 0.1);
    border: 2px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-circle:hover {
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    border-color: #d4a574;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.feature-circle:hover i {
    color: white !important;
}

.feature-circle i {
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-features small {
    display: block;
    font-weight: 500;
}

.contact-item .contact-details a {
    transition: color 0.3s ease;
}

.contact-item .contact-details a:hover {
    color: #d4a574 !important;
}

/* Professional Contact Enhancements */
.contact-item .contact-details h5 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid rgba(212, 165, 116, 0.2);
    padding-bottom: 8px;
}

/* Professional Email List */
.email-list .email-item {
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef !important;
}

.email-list .email-item:hover {
    background: #fff;
    border-color: #d4a574 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
}

/* Schedule Items */
.hours-schedule .schedule-item {
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef !important;
}

.hours-schedule .schedule-item:hover {
    background: #fff;
    border-color: #d4a574 !important;
    transform: translateX(5px);
}

/* Quick Contact Section */
.quick-contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.contact-btn {
    transition: all 0.3s ease;
    padding: 10px 8px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.contact-grid .row {
    gap: 8px;
}

/* Contact Icon Enhancements */
.contact-icon.bg-gradient-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
}

.contact-icon.bg-gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%) !important;
}

.contact-icon.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%) !important;
}

.contact-icon.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%) !important;
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.section:nth-child(odd) {
    background: #ffffff;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 25px;
    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.text-left p:after {
    left: 0;
    transform: none;
}

.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 Button */
.back-to-top {
    position: fixed;
    display: none;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 1;
    font-size: 20px;
    right: 30px;
    bottom: 30px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    border: none;
    cursor: pointer;
}

.back-to-top i {
    color: #ffffff;
    padding-top: 15px;
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #f39c12 0%, #d4a574 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.4);
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.05); }
    28% { transform: scale(1); }
    42% { transform: scale(1.05); }
    70% { transform: scale(1); }
    100% { transform: scale(1); }
}

.animated {
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

.pulse {
    animation-name: pulse;
}

.heartBeat {
    animation-name: heartBeat;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Focus States for Accessibility */
*:focus {
    outline: 2px solid #d4a574;
    outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f39c12 0%, #d4a574 100%);
}

/* Text Selection */
::selection {
    background: #d4a574;
    color: white;
}

::-moz-selection {
    background: #d4a574;
    color: white;
}

/* Professional Cards */
.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);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-fluid {
        padding: 0 10px;
    }
    
    .btn.custom-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Navigation Common Styles */
/**********************************/
/****** PROFESSIONAL HEADER ******/
/**********************************/

.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.premium-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

/* Header Top Strip */
.header-strip {
    background: linear-gradient(135deg, #2c3e50 0%, #8B4513 50%, #34495e 100%);
    color: white;
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(218, 165, 32, 0.4);
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.header-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.1) 50%, 
        transparent 100%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Desktop Auth Buttons in Header Strip */
.desktop-auth-buttons {
    display: flex;
    gap: 8px;
    margin-left: 15px;
    align-items: center;
}

.desktop-auth-btn {
    padding: 3px 8px;
    font-size: 10px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
}

.desktop-auth-btn:hover {
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.3);
}

.desktop-auth-btn i {
    font-size: 8px;
}

.desktop-auth-btn.register-btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.desktop-auth-btn.register-btn:hover {
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.3);
}

/* Hide desktop auth buttons on mobile */
@media (max-width: 991px) {
    .desktop-auth-buttons {
        display: none;
    }
}

.contact-strip {
    display: flex;
    align-items: center;
    gap: 20px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
}

.strip-item:hover {
    color: #FFD700;
    transform: translateY(-1px);
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.strip-item i {
    color: #DAA520;
    font-size: 12px;
    margin-right: 6px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.strip-item:hover i {
    transform: scale(1.15) rotate(5deg);
    color: #FFD700;
    filter: drop-shadow(0 3px 8px rgba(255, 215, 0, 0.4));
}

.social-strip {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.follow-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    margin-right: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(212, 165, 116, 0.15);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a574;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.4s 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: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    border-radius: 50%;
    transform: scale(0) rotate(180deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.social-icon:hover::before {
    transform: scale(1) rotate(0deg);
}

.social-icon:hover {
    color: white;
    border-color: #d4a574;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

/* Main Navigation */
.premium-nav {
    padding: 18px 0;
    background: transparent;
    transition: all 0.4s ease;
    position: relative;
}

.premium-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    transition: width 0.5s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

.premium-header.scrolled .premium-nav {
    padding: 12px 0;
}

.premium-header.scrolled .premium-nav::after {
    width: 100px;
}

/* Brand Logo */
.premium-brand {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.premium-brand:hover {
    text-decoration: none;
    transform: scale(1.05);
    color: inherit;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.brand-icon {
    position: relative;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.premium-header.scrolled .brand-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
}

.brand-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    border-radius: inherit;
}

.brand-icon i {
    color: white;
    font-size: 13px;
    position: absolute;
    transition: all 0.3s ease;
}

.brand-icon i:first-child {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.brand-icon i:last-child {
    bottom: 8px;
    right: 50%;
    transform: translateX(50%);
}

.premium-header.scrolled .brand-icon i:first-child {
    top: 8px;
}

.premium-header.scrolled .brand-icon i:last-child {
    bottom: 6px;
}

.brand-icon i:last-child {
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.brand-content h1 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    transition: all 0.3s ease;
}

.premium-header.scrolled .brand-content h1 {
    font-size: 1.4rem;
}

.brand-content .accent {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.brand-tagline {
    margin: 0;
    font-size: 0.7rem;
    color: #7f8c8d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.premium-header.scrolled .brand-tagline {
    font-size: 0.6rem;
}

/* Mobile Toggle Button */
.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;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.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);
}

.premium-toggler.active .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
    background: #d4a574;
    opacity: 1;
}

.premium-toggler.active .toggler-bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.premium-toggler.active .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
    background: #d4a574;
    opacity: 1;
}

.toggler-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #444;
    margin: 2.5px auto;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1px;
    position: relative;
    opacity: 0.8;
}

.premium-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
    background: #d4a574;
    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, -4px);
    background: #d4a574;
    opacity: 1;
}

/* Global mobile fixes */
@media (max-width: 991px) {
    body {
        margin: 0;
        padding: 0;
    }
    
    .main-wrapper {
        margin-top: 0;
        padding-top: 0;
    }
    
    .premium-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        margin: 0;
    }
}

/* Navigation Menu - Mobile First Premium Design */
.premium-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Tablet and up */
@media (min-width: 768px) {
    .premium-menu {
        gap: 12px;
        justify-content: flex-end;
    }
}

/* Desktop */
@media (min-width: 1200px) {
    .premium-menu {
        gap: 15px;
    }
}

.premium-menu .nav-item {
    position: relative;
}

.premium-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #8B4513;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(255, 248, 220, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(218, 165, 32, 0.3);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.1);
}

/* Tablet and up */
@media (min-width: 768px) {
    .premium-menu .nav-link {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 25px;
    }
}

/* Desktop */
@media (min-width: 1200px) {
    .premium-menu .nav-link {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 30px;
    }
}

.premium-menu .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        #8B4513 0%, 
        #A0522D 25%, 
        #CD853F 50%, 
        #D2691E 75%, 
        #8B4513 100%);
    border-radius: inherit;
    transform: scale(0) rotate(180deg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    opacity: 0;
}

.premium-menu .nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.4) 0%, 
        transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.premium-menu .nav-link:hover::before,
.premium-menu .nav-link.active::before {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.premium-menu .nav-link:hover::after {
    width: 100%;
    height: 100%;
}

.premium-menu .nav-link:hover,
.premium-menu .nav-link.active {
    color: #FFE4B5;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 20px rgba(139, 69, 19, 0.4),
        0 4px 15px rgba(218, 165, 32, 0.3),
        0 0 25px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 215, 0, 0.5);
    text-decoration: none;
}

/* Hide icons on desktop, show only on mobile */
.premium-menu .nav-icon {
    display: none;
}

/* Show icons only on mobile */
@media (max-width: 767px) {
    .premium-menu .nav-icon.mobile-only {
        display: inline-block;
        margin-right: 8px;
        font-size: 14px;
        transition: all 0.4s ease;
        filter: drop-shadow(1px 1px 2px rgba(139, 69, 19, 0.3));
    }
}

/* Remove underlines - they weren't positioning correctly */
/* Active state styling for desktop - no underlines */
@media (min-width: 768px) {
    .premium-menu .nav-link.active {
        color: #8B4513 !important;
        background: transparent !important;
        position: relative;
        font-weight: 700;
    }
    
    .premium-menu .nav-link.active::after,
    .premium-menu .nav-link.active::before {
        display: none; /* Remove all underlines */
    }
    
    .premium-menu .nav-link:hover {
        color: #DAA520 !important;
        background: rgba(218, 165, 32, 0.1);
        transform: translateY(-1px);
    }
}

/* Desktop Navigation Improvements */
@media (min-width: 992px) {
    .premium-nav {
        padding: 8px 0; /* Much thinner */
        backdrop-filter: blur(15px);
    }
    
    .premium-menu .nav-link {
        padding: 8px 15px; /* Reduced padding */
        margin: 0 2px;
        font-size: 14px; /* Slightly smaller */
    }
    
    .navbar-brand {
        padding: 0;
    }
    
    .brand-name {
        font-size: 1.6rem; /* Smaller brand */
    }
    
    .brand-tagline {
        font-size: 9px; /* Smaller tagline */
    }
}

/* Hide Mobile Auth on Desktop */
@media (min-width: 992px) {
    .mobile-auth-item {
        display: none !important;
    }
}

/* Mobile Auth Links Styling */
@media (max-width: 991px) {
    .mobile-auth-item {
        border-top: 2px solid rgba(139, 69, 19, 0.2);
        margin-top: 10px;
    }
    
    .mobile-auth-link {
        background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%) !important;
        color: #FFE4B5 !important;
        border-radius: 12px;
        margin: 5px 0;
        text-align: center;
        font-weight: 600;
    }
    
    .mobile-auth-item:last-child .mobile-auth-link {
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%) !important;
    }
    
    .mobile-auth-link:hover {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
    }
}

/* Header Auth Buttons in Strip */
.header-auth-buttons {
    display: flex;
    gap: 8px;
    margin-left: 15px;
    align-items: center;
}

.auth-btn {
    padding: 4px 8px;
    font-size: 11px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
}

.auth-btn:hover {
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.auth-btn i {
    font-size: 10px;
}

.register-btn {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%) !important;
}

.register-btn:hover {
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%) !important;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Login and Register Button Styling */
.header-actions .login-btn {
    background: linear-gradient(135deg, 
        #2c3e50 0%, 
        #34495e 100%);
    color: #ecf0f1;
    border: 2px solid rgba(236, 240, 241, 0.3);
}

.header-actions .login-btn:hover {
    background: linear-gradient(135deg, 
        #34495e 0%, 
        #2c3e50 100%);
    color: #fff;
    border-color: #ecf0f1;
    box-shadow: 
        0 8px 20px rgba(44, 62, 80, 0.4),
        0 4px 15px rgba(52, 73, 94, 0.3);
}

.header-actions .register-btn {
    background: linear-gradient(135deg, 
        #27ae60 0%, 
        #2ecc71 100%);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.header-actions .register-btn:hover {
    background: linear-gradient(135deg, 
        #229954 0%, 
        #27ae60 100%);
    border-color: #fff;
    box-shadow: 
        0 8px 20px rgba(39, 174, 96, 0.4),
        0 4px 15px rgba(46, 204, 113, 0.3);
}

/* Mobile Login/Register Styling */
@media (max-width: 767px) {
    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .header-actions .action-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
        font-size: 12px;
        border-radius: 8px;
    }
}

.premium-toggler .toggler-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #444;
    margin: 2.5px 0;
    border-radius: 1px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.premium-toggler:hover .toggler-bar {
    background: #DAA520;
    opacity: 1;
}

.brand-tagline {
    margin: 0;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Navigation Menu */
.premium-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.premium-menu .nav-link {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 18px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.premium-menu .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    transition: left 0.3s ease;
    border-radius: 25px;
    z-index: -1;
}

.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: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.nav-icon {
    font-size: 12px;
    opacity: 0.8;
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    min-width: 110px;
    justify-content: center;
    border: 2px solid transparent;
}

.action-btn i {
    margin-right: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.order-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-color: #ff6b35;
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.2);
}

.order-btn:hover {
    background: linear-gradient(135deg, #e55a2e 0%, #e0841a 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(255, 107, 53, 0.35);
    color: white;
    text-decoration: none;
}

.reserve-btn {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #ff6b35;
}

.reserve-btn:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(255, 107, 53, 0.25);
    text-decoration: none;
}

.action-btn:hover i {
    transform: scale(1.1);
}

.reserve-btn:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

/* Mobile Toggle Button */
.premium-toggler {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    padding: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.toggler-bar {
    width: 20px;
    height: 2px;
    background: #444;
    border-radius: 1px;
    margin: 2.5px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    opacity: 0.8;
}

.premium-toggler:hover .toggler-bar {
    background: #DAA520;
    opacity: 1;
}

.premium-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
    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, -4px);
    background: #DAA520;
    opacity: 1;
}

/**********************************/
/****** PROFESSIONAL FOOTER ******/
/**********************************/

.premium-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
}

.footer-main {
    padding: 80px 0 40px;
    position: relative;
}

.footer-main::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

/* Footer Brand */
.footer-brand .brand-container {
    margin-bottom: 25px;
}

.footer-brand .brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.2);
}

.footer-brand .brand-content h3 {
    font-size: 1.6rem;
    color: white;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.footer-brand .brand-content .accent {
    color: #d4a574;
}

.footer-brand .brand-tagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 14px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-social .social-link {
    width: 45px;
    height: 45px;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a574;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-social .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    border-radius: 12px;
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.footer-social .social-link:hover::before {
    transform: scale(1);
}

.footer-social .social-link:hover {
    color: white;
    border-color: #d4a574;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

/* Footer Sections */
.footer-section {
    position: relative;
    z-index: 1;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #d4a574;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #d4a574;
    padding-left: 20px;
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    color: #d4a574;
    font-size: 14px;
    margin-top: 2px;
    min-width: 16px;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

/* Newsletter Section */
.newsletter-section h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 15px;
}

.newsletter-form .input-group {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: white;
    padding: 12px 20px;
    font-size: 14px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background: transparent;
    border: none;
    box-shadow: none;
    color: white;
}

.newsletter-form .btn-accent {
    background: linear-gradient(135deg, #d4a574 0%, #f39c12 100%);
    border: none;
    color: white;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.newsletter-form .btn-accent:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

.copyright strong {
    color: #d4a574;
    font-weight: 600;
}

.footer-menu {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4a574;
    transition: width 0.3s ease;
}

.footer-menu a:hover {
    color: #d4a574;
}

.footer-menu a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .header-actions .action-btn {
        min-width: 120px;
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .brand-content h1 {
        font-size: 1.6rem;
    }
    
    .premium-menu .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .header-strip {
        padding: 8px 0;
    }
    
    .contact-strip {
        gap: 20px;
    }
    
    .strip-item {
        font-size: 12px;
    }
    
    .premium-nav {
        padding: 12px 0;
    }
    
/* Mobile-First Navigation Menu Design */
@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(248, 248, 248, 0.99) 100%);
        backdrop-filter: blur(20px);
        border-radius: 12px;
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.15),
            0 5px 15px rgba(139, 69, 19, 0.1);
        margin-top: 8px;
        padding: 16px;
        border: 1px solid rgba(139, 69, 19, 0.2);
        position: relative;
        max-height: 90vh;
        overflow-y: auto;
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-collapse.collapsing {
        transition: all 0.25s ease-in-out;
    }
    
    .premium-menu {
        flex-direction: column;
        width: 100%;
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .premium-menu .nav-link {
        width: 100%;
        padding: 14px 16px; /* Equal padding */
        margin: 0;
        border-radius: 10px;
        font-size: 14px; /* Equal font size */
        font-weight: 600;
        background: rgba(248, 248, 248, 0.9);
        border: 1px solid rgba(139, 69, 19, 0.15);
        color: #2c3e50;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        transition: all 0.25s ease;
        text-decoration: none;
        min-height: 48px; /* Equal height for all buttons */
    }
    
    .premium-menu .nav-link:hover {
        background: rgba(139, 69, 19, 0.05);
        transform: translateX(4px);
        border-color: rgba(139, 69, 19, 0.2);
        color: #8B4513;
        text-decoration: none;
    }
    
    .premium-menu .nav-link.active {
        background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
        color: #fff !important;
        border-color: #A0522D;
        box-shadow: 0 3px 10px rgba(139, 69, 19, 0.3);
        transform: translateX(6px);
    }
    
    .premium-menu .nav-link.active:hover {
        transform: translateX(6px);
        color: #fff;
    }
    
    /* Mobile Auth Separator */
    .mobile-auth-item {
        border-top: 1px solid rgba(139, 69, 19, 0.15);
        margin-top: 8px;
        padding-top: 8px;
    }
    
    .mobile-auth-item:first-of-type {
        margin-top: 12px;
        padding-top: 12px;
    }
    
    .mobile-auth-link {
        background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%) !important;
        color: #fff !important;
        font-weight: 600; /* Same as nav links */
        font-size: 14px !important; /* Equal font size */
        text-align: center;
        justify-content: center;
        border-color: #A0522D !important;
        min-height: 48px !important; /* Equal height */
        padding: 14px 16px !important; /* Equal padding */
    }
    
    .mobile-auth-item:last-child .mobile-auth-link {
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%) !important;
        border-color: #2ecc71 !important;
    }
    
    .mobile-auth-link:hover {
        transform: translateX(4px) !important;
        color: #fff !important;
        box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
    }
    
    .mobile-auth-item:last-child .mobile-auth-link:hover {
        box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    }
}
    
    .header-actions {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        gap: 12px;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
    }
}

@media (max-width: 991px) {
    .header-strip {
        padding: 0; /* Remove all padding */
        font-size: 6px;
        position: relative;
        height: auto;
        min-height: 16px;
    }
    
    .contact-strip {
        flex-direction: row;
        gap: 2px;
        text-align: center;
        justify-content: center;
        flex-wrap: nowrap;
        overflow: hidden;
        padding: 1px 0;
    }
    
    .strip-item {
        font-size: 6px;
        justify-content: center;
        padding: 0 1px;
        border-radius: 3px;
        gap: 1px;
        white-space: nowrap;
        line-height: 1;
    }
    
    .strip-item i {
        font-size: 5px;
        margin-right: 1px;
    }
    
    .social-strip {
        display: none;
    }
    
    .premium-nav {
        padding: 2px 0; /* Ultra thin mobile nav */
    }
    
    .brand-name {
        font-size: 1rem;
        line-height: 1;
        margin: 0;
    }
    
    .brand-tagline {
        font-size: 6px;
        line-height: 1;
        margin: 0;
    }
    
    /* Remove any extra margins that cause white space */
    .premium-header {
        margin: 0;
        padding: 0;
    }
    
    .container-fluid {
        padding: 0 10px;
    }
}
    
    .social-strip {
        justify-content: center;
        gap: 12px;
    }
    
    .follow-text {
        font-size: 11px;
        margin-right: 10px;
    }
    
    .brand-container {
        gap: 8px;
    }
    
    .brand-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }
    
    .brand-icon i {
        font-size: 11px;
    }
    
    .brand-content h1 {
        font-size: 1.3rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .premium-nav {
        padding: 8px 0;
    }
    
    .navbar-collapse {
        margin-top: 15px;
        padding: 20px;
        border-radius: 15px;
    }
    
    .premium-menu .nav-link {
        padding: 14px 18px;
        font-size: 14px;
    }


@media (max-width: 575px) {
    .header-strip {
        padding: 5px 0;
        font-size: 10px;
    }
    
    .contact-strip {
        gap: 6px;
    }
    
    .strip-item {
        font-size: 10px;
        flex-direction: column;
        gap: 2px;
    }
    
    .follow-text {
        display: none;
    }
    
    .social-icons {
        gap: 6px;
    }
    
    .social-icon {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }
    
    .brand-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    
    .brand-icon i {
        font-size: 9px;
    }
    
    .brand-content h1 {
        font-size: 1.1rem;
    }
    
    .brand-tagline {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
    
    .premium-toggler {
        width: 30px;
        height: 30px;
        padding: 3px;
    }
    
    .toggler-bar {
        width: 18px;
        height: 1.5px;
        margin: 2px auto;
    }
    
    .navbar-collapse {
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
    }
    
    .premium-menu .nav-link {
        padding: 12px 15px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    .action-btn {
        padding: 12px 20px;
        font-size: 12px;
        min-width: auto;
    }
}