:root {
    /* Colors */
    --navy-blue: #0A192F;
    --navy-blue-light: #112240;
    --gold: #D4AF37;
    --gold-hover: #FADB5F;
    --red-accent: #C8102E;
    --bg-cream: #FCFCFA;
    --bg-gray: #F5F6F8;
    --text-dark: #1F2937;
    --text-light: #FFFFFF;
    --text-muted: #6B7280;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Variables */
    --section-padding: 100px 0;
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.6;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-gray);
}

.text-gold {
    color: var(--gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--navy-blue);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.btn-outline-dark:hover {
    background-color: var(--navy-blue);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline-nav {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn-outline-nav:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    background-color: transparent;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gold);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a:not(.btn) {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--gold);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 650px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    display: block;
    color: var(--red-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.title-separator {
    color: var(--gold);
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    opacity: 0.8;
}

.title-separator::before,
.title-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: var(--gold);
}

.title-separator::before {
    right: 180%;
}

.title-separator::after {
    left: 180%;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(10, 25, 47, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    top: 0;
}

.card:hover {
    top: -10px;
    box-shadow: 0 25px 50px rgba(10, 25, 47, 0.1);
}

.card-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: var(--navy-blue-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

.pending-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(10, 25, 47, 0.85);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    border: 1px solid var(--gold);
    backdrop-filter: blur(4px);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img {
    transform: scale(1.06);
}

.card-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--gold);
    color: var(--navy-blue);
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.card-content {
    padding: 35px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--navy-blue);
}

.card-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-text {
    color: var(--red-accent);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 1.05rem;
}

.btn-text i {
    transition: transform 0.3s ease;
}

.btn-text:hover {
    color: var(--navy-blue);
}

.btn-text:hover i {
    transform: translateX(6px);
}

/* Menú Diario Section */
.container-menu {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
}

.menu-info {
    padding-right: 10px;
}

.menu-info .section-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.menu-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.menu-price-box {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    color: var(--text-light);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.2);
}

.menu-price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background-color: var(--gold);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 15px;
}

.price-amount .cents {
    font-size: 2.5rem;
    vertical-align: super;
}

.price-includes {
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.9);
}

.includes-badge {
    background-color: rgba(0, 0, 0, 0.25);
    color: var(--text-light);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.includes-badge i {
    color: var(--gold);
    font-size: 0.9rem;
}

.includes-badge:hover {
    border-color: var(--gold);
    background-color: rgba(0, 0, 0, 0.4);
}

.promo-box {
    background-color: var(--red-accent);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
    border: 2px dashed rgba(255,255,255,0.3);
}

.menu-tabs-wrapper {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
}

.location-switcher-premium {
    display: flex;
    background-color: var(--navy-blue);
    padding: 8px;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 14px;
    border-radius: 12px;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.location-btn.active {
    background-color: var(--gold);
    color: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.location-btn:not(.active):hover {
    background-color: rgba(212, 175, 55, 0.1);
}

/* Global Location Switcher - Sliding Toggle Premium */
.global-location-switcher {
    position: relative;
    display: inline-flex;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 4px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    min-width: 280px;
}

.switcher-bg {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background-color: var(--gold);
    border-radius: 36px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.global-location-switcher[data-active="madrid"] .switcher-bg {
    transform: translateX(100%);
}

.location-btn {
    position: relative;
    z-index: 2;
    flex: 1;
    background: transparent !important;
    border: none !important;
    padding: 10px 24px !important;
    color: var(--text-light) !important;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    box-shadow: none !important;
    white-space: nowrap;
    font-size: 0.85rem;
}

.location-btn.active {
    color: var(--navy-blue) !important;
}

.location-btn:not(.active):hover {
    color: var(--gold) !important;
}

/* Cross-Promotion Alert */
.cross-promo-alert {
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px dashed var(--gold);
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--navy-blue);
    animation: fadeIn 1s ease;
}

.cross-promo-alert i {
    margin-right: 8px;
}

#breakfast-cross-promo {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#breakfast-cross-promo.show {
    display: block;
    opacity: 1;
}

.alert-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(212, 175, 55, 0.1);
    padding: 18px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    animation: fadeInDown 0.6s ease forwards;
}

.alert-premium i {
    color: var(--gold);
    font-size: 1.4rem;
}

.alert-premium p {
    color: var(--navy-blue);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tabs-header {
    display: flex;
    background-color: var(--navy-blue-light);
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 24px 10px;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.tab-btn:hover {
    color: var(--text-light);
    background-color: rgba(255,255,255,0.05);
}

.tab-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background-color: rgba(255,255,255,0.05);
}

.tabs-content {
    padding: 50px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-category {
    margin-bottom: 40px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

/* Breakfast Specific styling */
#desayunos .menu-category {
    background-color: var(--bg-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 0;
    transition: var(--transition);
}

#desayunos .menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.dish-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#breakfast-menu-container {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#breakfast-menu-container.expanded {
    display: grid;
    opacity: 1;
}

#toggle-breakfast-btn.active i {
    transform: rotate(180deg);
}

.dish-price {
    font-weight: 700;
    color: var(--gold);
    background-color: var(--bg-gray);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    min-width: fit-content;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.menu-category h4 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px dotted #E5E7EB;
    padding-bottom: 10px;
    display: inline-block;
}

.menu-list {
    list-style: none;
}

.menu-list li {
    padding: 16px 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 1.15rem;
    font-weight: 500;
    position: relative;
    padding-left: 28px;
    color: var(--text-dark);
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-list li::before {
    content: '\2693\FE0E';
    position: absolute;
    left: 0;
    top: 18px;
    font-size: 0.85rem;
    color: var(--navy-blue);
    opacity: 0.7;
}

.menu-list li span {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 6px;
}
.menu-list li .small {
    font-size: 0.85rem;
    display: inline;
    margin-left: 6px;
}

/* Footer */
.footer {
    background-color: var(--navy-blue);
    color: rgba(255,255,255,0.8);
    padding: 100px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    margin-bottom: 24px;
    display: inline-flex;
}

.footer-desc {
    color: #9CA3AF;
    margin-bottom: 30px;
    max-width: 350px;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-4px);
}

.footer-heading {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.location-name {
    display: block;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-list, .hours-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    align-items: flex-start;
    font-size: 1.05rem;
}

.contact-list li i {
    color: var(--gold);
    margin-top: 5px;
    font-size: 1.2rem;
}

.contact-list li small {
    color: #9CA3AF;
    display: block;
    margin-top: 6px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 12px;
    font-size: 1.05rem;
}

.footer-bottom {
    background-color: var(--navy-blue-light);
    padding: 30px 0;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container-menu {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }
    .logo {
        flex: 1;
    }
    .mobile-menu-btn {
        display: block;
        order: 2;
    }
    .global-location-switcher {
        order: 3;
        width: 100%;
        margin-top: 15px;
        display: flex;
        justify-content: center;
    }
    .hero {
        align-items: flex-start;
    }
    .hero-content {
        padding-top: 180px; 
    }
    .navbar {
        background-color: rgba(10, 25, 47, 0.98) !important;
        padding: 15px 0 20px 0 !important;
    }
    .badge {
        font-size: 0.85rem;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 30px;
    }
    .nav-links {
        display: none;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    .tabs-header {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        box-shadow: inset -20px 0 20px -20px rgba(0,0,0,0.5);
    }
    .tabs-header::-webkit-scrollbar {
        display: none;
    }
    .tab-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 15px 20px;
    }
    .tabs-content {
        padding: 30px 20px;
    }
    .section {
        padding: 60px 0;
    }
    .menu-info {
        padding-right: 0;
    }
    .menu-info .section-title {
        font-size: 2.5rem;
    }
    .price-amount {
        font-size: 3.5rem;
    }
    .price-amount .cents {
        font-size: 1.8rem;
    }
    .menu-price-box {
        padding: 30px 20px;
    }
    .alert-premium {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }
    .cross-promo-alert {
        margin: 20px 20px 0 20px !important;
    }
}

/* Modal Selector de Llamada */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: var(--border-radius);
    max-width: 450px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border: 1px solid var(--gold);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

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

.modal-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.5;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-modal-call {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: var(--bg-gray);
    color: var(--navy-blue);
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    transition: var(--transition);
}

.btn-modal-call:hover {
    background-color: var(--navy-blue);
    color: var(--text-light);
    transform: translateX(5px);
    border-color: var(--navy-blue);
}

.loc-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.loc-phone {
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
}

.btn-modal-call i {
    color: var(--gold);
    font-size: 0.9rem;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 40px 25px;
    }
    
    .btn-modal-call {
        padding: 15px 20px;
    }
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--navy-blue);
    z-index: 9999;
    padding: 80px 40px;
    transition: right 0.4s ease-in-out;
    box-shadow: -10px 0 50px rgba(0,0,0,0.5);
    visibility: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
    visibility: visible;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
}

.drawer-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.drawer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.drawer-link:hover {
    color: var(--gold);
    padding-left: 10px;
}
