/* Variables CSS */
:root {
    --primary-gold: #D4AF37;
    --primary-bronze: #CD7F32;
    --accent-terracotta: #E2725B;
    --bg-primary: #FEFEFE;
    --bg-secondary: #F8F9FA;
    --bg-card: #FFFFFF;
    --text-primary: #2C3E50;
    --text-secondary: #6C757D;
    --text-white: #FFFFFF;
    --border-radius: 12px;
    --border-radius-large: 20px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary-gold), var(--primary-bronze));
    --gradient-whatsapp: linear-gradient(135deg, #25D366, #128C7E);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Header */
.header {
    background: url('imagenes/fondo de pagina.jpg') center/cover;
    background-attachment: fixed;
    color: var(--text-white);
    padding: 25px 0;
    box-shadow: var(--shadow-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    left: 0;
}

.logo-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.logo-image:hover {
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.05);
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text span {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
    font-style: italic;
}

.nav {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-btn:hover,
.nav-btn.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.main {
    padding: 50px 0;
    min-height: calc(100vh - 200px);
}

.menu-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Menu Items */
.menu-item {
    background: var(--bg-card);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 450px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-gold);
}

.menu-item:hover::before {
    transform: scaleX(1);
}

.menu-item-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.08);
}

.menu-item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.menu-item-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-item-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.menu-item-footer {
    margin-top: auto;
}

.price-container {
    text-align: center;
    margin-bottom: 20px;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-bronze);
    font-family: 'Playfair Display', serif;
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(205, 127, 50, 0.1));
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.menu-item-actions {
    display: flex;
    gap: 12px;
}

.btn-customize,
.btn-add-cart {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-customize {
    background: var(--bg-secondary);
    color: var(--primary-bronze);
    border: 2px solid var(--primary-gold);
}

.btn-customize:hover {
    background: var(--primary-gold);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-add-cart {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--primary-bronze), var(--accent-terracotta));
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-cart,
.floating-whatsapp {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-medium);
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.floating-cart {
    background: var(--gradient-primary);
    color: var(--text-white);
    animation: pulse 2s infinite;
}

.floating-whatsapp {
    background: var(--gradient-whatsapp);
    color: var(--text-white);
    animation: whatsappBounce 3s ease-in-out infinite;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: whatsappRipple 2s infinite;
    z-index: -1;
}

.floating-cart:hover,
.floating-whatsapp:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    animation-play-state: paused;
}

.floating-whatsapp:hover {
    animation: whatsappShake 0.6s ease-in-out;
}

.floating-whatsapp:active {
    transform: scale(0.95);
    transition: transform 0.1s;
}

/* Animaciones del botón WhatsApp */
@keyframes whatsappBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-8px) scale(1.05);
    }
    60% {
        transform: translateY(-4px) scale(1.02);
    }
}

@keyframes whatsappRipple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes whatsappShake {
    0%, 100% { transform: scale(1.15) rotate(10deg); }
    10%, 30%, 50%, 70%, 90% { transform: scale(1.15) rotate(15deg); }
    20%, 40%, 60%, 80% { transform: scale(1.15) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Efecto de notificación para WhatsApp */
.floating-whatsapp.notification {
    animation: whatsappNotification 1s ease-in-out;
}

@keyframes whatsappNotification {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2) rotate(-5deg); }
    50% { transform: scale(1.1) rotate(5deg); }
    75% { transform: scale(1.15) rotate(-3deg); }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .floating-whatsapp:hover {
        transform: scale(1.1);
        animation: whatsappMobilePulse 1s ease-in-out infinite;
    }
}

@keyframes whatsappMobilePulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.2); }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: var(--border-radius-large);
    max-width: 550px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px;
    max-height: 450px;
    overflow-y: auto;
}

.cart-items {
    margin-bottom: 20px;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.empty-cart p {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.empty-cart small {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    animation: slideInCart 0.3s ease;
}

@keyframes slideInCart {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
    font-weight: 600;
}

.cart-item-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-btn {
    background: var(--primary-gold);
    color: var(--text-white);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: var(--transition);
    font-size: 1rem;
}

.quantity-btn:hover {
    background: var(--primary-bronze);
    transform: scale(1.1);
}

.quantity {
    font-weight: 700;
    min-width: 25px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.cart-total {
    border-top: 3px solid var(--primary-gold);
    padding-top: 20px;
    margin-top: 20px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

.modal-footer {
    padding: 25px;
    background: var(--bg-secondary);
    display: flex;
    gap: 15px;
}

.btn-clear,
.btn-order {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-clear {
    background: #dc3545;
    color: var(--text-white);
    border: 2px solid transparent;
}

.btn-clear:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.btn-order {
    background: var(--gradient-whatsapp);
    color: var(--text-white);
    border: 2px solid transparent;
}

.btn-order:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 20px 0;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }
    
    .logo {
        gap: 12px;
        position: static;
        justify-content: center;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.8rem;
    }
    
    .logo-text span {
        font-size: 0.9rem;
    }
    
    .nav {
        width: 100%;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .nav-btn {
        padding: 12px 18px;
        font-size: 0.85rem;
        min-width: 120px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .menu-item {
        height: 420px;
    }
    
    .menu-item-image {
        height: 180px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cart,
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        gap: 15px;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .logo-image {
        width: 45px;
        height: 45px;
    }
    
    .logo-text h1 {
        font-size: 1.6rem;
        margin-bottom: 2px;
    }
    
    .logo-text span {
        font-size: 0.8rem;
    }
    
    .nav {
        gap: 8px;
    }
    
    .nav-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        min-width: 110px;
    }
    
    .main {
        padding: 30px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-item {
        height: 400px;
    }
    
    .menu-item-image {
        height: 160px;
    }
    
    .menu-item-content {
        padding: 20px;
    }
    
    .btn-customize,
    .btn-add-cart {
        font-size: 0.8rem;
        padding: 12px 14px;
    }
    
    .modal-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
}

/* Footer Completo */
.footer-complete {
    background: linear-gradient(135deg, var(--text-primary) 0%, #1a252f 100%);
    color: var(--text-white);
    padding: 50px 0 20px;
    margin-top: 60px;
    position: relative;
}

.footer-complete::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand h3 {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand p {
    color: var(--primary-bronze);
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-section h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
}

.info-section p {
    margin: 8px 0;
    color: #e8f0f7;
    font-size: 0.95rem;
    line-height: 1.4;
}

.closed-day {
    color: #ff6b6b !important;
    font-weight: 600;
    font-size: 0.9rem !important;
}

.contact-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #25d366, #128c7e);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin: 10px 0 15px 0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0d47a1);
    color: white;
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #833ab4);
    color: white;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #8fa8b8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-complete {
        padding: 40px 0 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-brand h3 {
        font-size: 1.7rem;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-info {
        gap: 20px;
    }
    
    .info-section h4 {
        font-size: 1.1rem;
        justify-content: center;
    }
    
    .contact-whatsapp {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

.maps-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #4285f4, #34a853);
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 10px 0;
    box-shadow: 0 2px 10px rgba(66, 133, 244, 0.3);
}

.maps-link:hover {
    background: linear-gradient(135deg, #3367d6, #2d8f47);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4);
    color: white;
    text-decoration: none;
}

.directions-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.directions-info p {
    margin: 8px 0;
    font-size: 0.85rem;
    color: #b8d4f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.directions-info i {
    width: 16px;
    color: var(--primary-gold);
}

@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .info-section {
        text-align: center;
    }
    
    .maps-link {
        justify-content: center;
    }
    
    .directions-info p {
        justify-content: center;
    }
}