/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7A271A;
    --primary-light: #8B3226;
    --primary-dark: #4a2a20;
    --background: #FFFCF8;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --shadow: rgba(122, 39, 26, 0.1);
    --shadow-hover: rgba(122, 39, 26, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --premium-gradient: linear-gradient(135deg, #7A271A 0%, #8B3226 50%, #A0392E 100%);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --glass-bg: rgba(255, 252, 248, 0.95);
    --glass-border: rgba(122, 39, 26, 0.1);
    
    /* Premium Colors */
    --premium-gold: #D4AF37;
    --premium-copper: #B87333;
    --premium-cream: #FFF8DC;
    --premium-burgundy: #800020;
    --premium-shadow: rgba(212, 175, 55, 0.2);
    --premium-glow: rgba(212, 175, 55, 0.4);
    
    /* Enhanced Gradients */
    --luxury-gradient: linear-gradient(135deg, var(--premium-burgundy) 0%, var(--primary-color) 30%, var(--premium-copper) 70%, var(--premium-gold) 100%);
    --social-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 248, 220, 0.8) 100%);
    --button-gradient: linear-gradient(135deg, var(--premium-gold) 0%, var(--premium-copper) 50%, var(--primary-color) 100%);
    
    /* Vibrant Colors */
    --vibrant-orange: #FF6B35;
    --vibrant-red: #FF3B30;
    --vibrant-pink: #FF2D92;
    --vibrant-purple: #AF52DE;
    --vibrant-blue: #007AFF;
    --vibrant-teal: #5AC8FA;
    --vibrant-green: #34C759;
    --vibrant-yellow: #FFCC02;
    
    /* Vibrant Gradients */
    --vibrant-gradient-1: linear-gradient(135deg, var(--vibrant-orange) 0%, var(--vibrant-red) 100%);
    --vibrant-gradient-2: linear-gradient(135deg, var(--vibrant-pink) 0%, var(--vibrant-purple) 100%);
    --vibrant-gradient-3: linear-gradient(135deg, var(--vibrant-blue) 0%, var(--vibrant-teal) 100%);
    --vibrant-gradient-4: linear-gradient(135deg, var(--vibrant-green) 0%, var(--vibrant-teal) 100%);
    --vibrant-gradient-5: linear-gradient(135deg, var(--vibrant-yellow) 0%, var(--vibrant-orange) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3.5rem;
    background: var(--luxury-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--button-gradient);
    border-radius: 4px;
    box-shadow: 0 2px 8px var(--premium-shadow);
}


/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-15px);
    }
    70% {
        transform: translateY(-7px);
    }
    90% {
        transform: translateY(-3px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes colorShift {
    0% { filter: hue-rotate(0deg); }
    25% { filter: hue-rotate(90deg); }
    50% { filter: hue-rotate(180deg); }
    75% { filter: hue-rotate(270deg); }
    100% { filter: hue-rotate(360deg); }
}

@keyframes wiggle {
    0%, 7% { transform: rotateZ(0); }
    15% { transform: rotateZ(-15deg); }
    20% { transform: rotateZ(10deg); }
    25% { transform: rotateZ(-10deg); }
    30% { transform: rotateZ(6deg); }
    35% { transform: rotateZ(-4deg); }
    40%, 100% { transform: rotateZ(0); }
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 8px 40px rgba(255, 107, 53, 0.6), 0 0 20px rgba(255, 204, 2, 0.4);
    }
}

@keyframes logoSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

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

/* Animation Utility Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-slide-left {
    animation: fadeInLeft 1s ease-out;
}

.animate-slide-right {
    animation: fadeInRight 1s ease-out;
}

.animate-scale {
    animation: scaleIn 1s ease-out;
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-rotate {
    animation: rotate 10s linear infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

/* Enhanced Text Styles */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--luxury-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

.premium-text {
    background: var(--luxury-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.highlight {
    color: var(--premium-gold);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 252, 248, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 4s ease-in-out infinite, logoGlow 3s ease-in-out infinite, logoBreathe 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.logo-icon:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    animation: wiggle 0.8s ease-in-out, float 4s ease-in-out infinite;
    border-radius: 25px;
}

.logo-text {
    font-size: 1.25rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--background) 0%, rgba(122, 39, 26, 0.05) 100%);
    z-index: -1;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s var(--transition);
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    width: 200px;
    height: 200px;
    margin-bottom: 2rem;
    border-radius: 40px;
    object-fit: cover;
    box-shadow: 0 12px 50px rgba(122, 39, 26, 0.3);
    animation: float 3s ease-in-out infinite, scaleIn 1s ease-out, logoGlow 4s ease-in-out infinite, logoBreathe 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid transparent;
    background: linear-gradient(45deg, var(--vibrant-gradient-1), var(--vibrant-gradient-2)) border-box;
    position: relative;
}

.hero-logo-img:hover {
    animation: wiggle 1s ease-in-out, float 3s ease-in-out infinite, colorShift 2s ease-in-out;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.6);
    border-radius: 50px;
    border-color: var(--vibrant-yellow);
}

.hero-logo-img:active {
    animation: logoSpin 0.6s ease-in-out;
    transform: scale(0.95);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s var(--transition);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.cta-icon {
    width: 20px;
    height: 20px;
}

/* Social Media Bar */
.social-bar {
    padding: 4rem 0;
    background: var(--white);
}

.social-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s var(--transition);
    font-weight: 500;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background) 0%, rgba(122, 39, 26, 0.02) 100%);
}

.about-content {
    text-align: center;
}

.about-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s var(--transition);
    border: 1px solid rgba(122, 39, 26, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(122, 39, 26, 0.1);
    transition: all 0.3s var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-light);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #FCD34D;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Location Section */
.location {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background) 0%, rgba(122, 39, 26, 0.02) 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.location-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.location-address {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s var(--transition);
}

.directions-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.directions-btn svg {
    width: 20px;
    height: 20px;
}

.location-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-light);
}

.location-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    animation: float 5s ease-in-out infinite;
}

.footer-logo-img:hover {
    transform: scale(1.1) rotate(-5deg);
    filter: brightness(1) invert(0);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    border-radius: 22px;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.25rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--background) 0%, rgba(122, 39, 26, 0.05) 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.primary-btn, .secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--white);
}

.primary-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.secondary-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.primary-btn svg, .secondary-btn svg {
    width: 18px;
    height: 18px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s var(--transition);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 252, 248, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Menu Page Styles */
.menu-redirect {
    padding: 4rem 0;
    background: var(--white);
}

.redirect-card {
    background: var(--background);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 1px solid rgba(122, 39, 26, 0.1);
}

.redirect-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.redirect-icon svg {
    width: 40px;
    height: 40px;
}

.redirect-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.redirect-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.redirect-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-features {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background) 0%, rgba(122, 39, 26, 0.02) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(122, 39, 26, 0.1);
}

.modal-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s var(--transition);
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-close svg {
    width: 24px;
    height: 24px;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.qr-code {
    margin-bottom: 1.5rem;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background: var(--background);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary-color);
}

.qr-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.modal-link:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-items {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-social h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-links .social-link {
    justify-content: flex-start;
    background: var(--background);
    border: 1px solid rgba(122, 39, 26, 0.1);
}

.contact-form-container {
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 30px var(--shadow-light);
}

.contact-form h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(122, 39, 26, 0.1);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.submit-btn svg {
    width: 18px;
    height: 18px;
}

.form-message {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-weight: 500;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.contact-map {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background) 0%, rgba(122, 39, 26, 0.02) 100%);
}

.map-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-light);
}

.map-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* 404 Error Page Styles */
.error-page {
    padding: 6rem 0;
    background: var(--white);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.error-illustration {
    text-align: center;
}

.error-illustration svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.error-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.error-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.error-suggestions {
    background: var(--background);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(122, 39, 26, 0.1);
}

.error-suggestions h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.error-suggestions ul {
    list-style: none;
    padding-left: 0;
}

.error-suggestions li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.error-suggestions li::before {
    content: '→';
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

.error-suggestions a {
    color: var(--primary-color);
    text-decoration: none;
}

.error-suggestions a:hover {
    text-decoration: underline;
}

.quick-links {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background) 0%, rgba(122, 39, 26, 0.02) 100%);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.link-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s var(--transition);
    text-align: center;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.link-card .link-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.link-card .link-icon svg {
    width: 28px;
    height: 28px;
}

.link-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.link-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .error-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .redirect-buttons {
        flex-direction: column;
        align-items: center;
    }

    .redirect-buttons .primary-btn,
    .redirect-buttons .secondary-btn {
        width: 100%;
        max-width: 300px;
    }

    .error-actions {
        justify-content: center;
    }

    .social-links .social-link {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .social-icons {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .error-actions .primary-btn,
    .error-actions .secondary-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Premium Enhancements */
.premium-section {
    padding: 4rem 0;
    position: relative;
}

.premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(122, 39, 26, 0.02) 0%, rgba(255, 252, 248, 0.05) 100%);
    pointer-events: none;
}

/* Vibrant Button Styling */
.premium-btn {
    position: relative;
    background: var(--vibrant-gradient-1);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    border: 3px solid transparent;
    background-clip: padding-box;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 3s infinite;
}

.premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--luxury-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 47px;
}

.premium-btn:hover::before {
    opacity: 1;
}

.premium-btn:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.6);
    border-color: var(--vibrant-yellow);
    background: var(--vibrant-gradient-2);
    animation: bounce 1s ease-in-out;
}

.premium-btn .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.8s;
    z-index: 3;
}

.premium-btn:hover .btn-shine {
    left: 100%;
}

.premium-btn .btn-text {
    position: relative;
    z-index: 4;
    font-weight: 700;
}

.premium-btn .cta-icon {
    position: relative;
    z-index: 4;
    transition: transform 0.3s ease;
}

.premium-btn:hover .cta-icon {
    transform: translateX(5px) rotate(360deg);
}

/* Vibrant Button Variations */
.btn-vibrant-blue {
    background: var(--vibrant-gradient-3) !important;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.4);
}

.btn-vibrant-blue:hover {
    background: var(--vibrant-gradient-4) !important;
    box-shadow: 0 25px 60px rgba(0, 122, 255, 0.6);
}

.btn-vibrant-green {
    background: var(--vibrant-gradient-4) !important;
    box-shadow: 0 10px 30px rgba(52, 199, 89, 0.4);
}

.btn-vibrant-green:hover {
    background: var(--vibrant-gradient-5) !important;
    box-shadow: 0 25px 60px rgba(52, 199, 89, 0.6);
}

.btn-vibrant-yellow {
    background: var(--vibrant-gradient-5) !important;
    box-shadow: 0 10px 30px rgba(255, 204, 2, 0.4);
}

.btn-vibrant-yellow:hover {
    background: var(--vibrant-gradient-1) !important;
    box-shadow: 0 25px 60px rgba(255, 204, 2, 0.6);
}

/* Enhanced CTA Button */
.cta-container {
    text-align: center;
    margin-top: 2rem;
}

.cta-button.premium-btn {
    font-size: 1.3rem;
    padding: 1.25rem 2.5rem;
    margin-bottom: 1rem;
    animation: pulse-glow 2s infinite;
}

.cta-subtitle {
    color: var(--gold-gradient);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    text-shadow: 0 2px 4px rgba(122, 39, 26, 0.2);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(122, 39, 26, 0.3);
    }
    50% {
        box-shadow: 0 12px 35px rgba(122, 39, 26, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
    }
}

/* Social Media Section */
.social-bar {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--premium-cream) 0%, var(--white) 50%, var(--premium-cream) 100%);
    position: relative;
    overflow: hidden;
}

.social-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23B87333" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%237A271A" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.social-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--luxury-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.social-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 3rem;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: var(--social-gradient);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(122, 39, 26, 0.1);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.social-link:nth-child(1) { animation-delay: 0.1s; }
.social-link:nth-child(2) { animation-delay: 0.2s; }
.social-link:nth-child(3) { animation-delay: 0.3s; }
.social-link:nth-child(4) { animation-delay: 0.4s; }
.social-link:nth-child(5) { animation-delay: 0.5s; }

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--luxury-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.social-link::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--social-gradient);
    border-radius: 16px;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px var(--premium-shadow);
    border-color: var(--premium-gold);
    animation: pulse 1s ease-in-out;
}

.instagram-link:hover {
    box-shadow: 0 20px 40px rgba(255, 45, 146, 0.4);
}

.facebook-link:hover {
    box-shadow: 0 20px 40px rgba(24, 119, 242, 0.4);
}

.youtube-link:hover {
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.4);
}

.whatsapp-link:hover {
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

.twitter-link:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px var(--premium-glow);
}

.brand-logo {
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
}

.social-link:hover .brand-logo {
    transform: scale(1.1) rotate(5deg);
}

.social-text {
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.social-link:hover .social-text {
    color: var(--primary-color);
}

/* Visit Us Section */
.visit-us {
    background: linear-gradient(135deg, var(--background) 0%, rgba(122, 39, 26, 0.05) 100%);
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(122, 39, 26, 0.1);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.location-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.location-badge {
    background: var(--gold-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: badge-pulse 2s infinite;
}

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

.location-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.detail-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.detail-text {
    flex: 1;
}

.detail-text strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.highlight {
    color: var(--primary-light);
    font-weight: 600;
    font-style: italic;
}

.location-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.location-actions .premium-btn {
    flex: 1;
    justify-content: center;
    min-width: 160px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    animation: scaleIn 0.8s ease-out;
    animation-fill-mode: both;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(122, 39, 26, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
    animation: bounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    animation: wiggle 0.8s ease-in-out, bounce 2s ease-in-out infinite;
    transform: scale(1.2);
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Enhanced Container Padding */
.container {
    padding: 0 2rem;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .visit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .social-row {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .social-link {
        padding: 1.5rem 1rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .brand-logo {
        width: 30px;
        height: 30px;
    }
    
    .social-text {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }
    
    .hero-logo-img {
        width: 160px;
        height: 160px;
        border-radius: 32px;
    }
    
    .footer-logo-img {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Premium Footer Styling */
.premium-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.contact-icon {
    font-size: 1.2rem;
    min-width: 1.5rem;
}

.open-status {
    color: #90EE90;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
    border-color: rgba(255, 215, 0, 0.5);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.social-emoji {
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
}
