/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    /* Cores Principais */
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --light-grey: #E5E5E5;
    --medium-grey: #B0B0B0;
    --dark-grey: #505050;
    --charcoal: #2C2C2C;
    
    /* Azuis do Mar */
    --deep-blue: #1A3A52;
    --ocean-blue: #2C5F7D;
    --light-blue: #5B8FA3;
    --sky-blue: #A8C5D6;
    
    /* Cores de Areia */
    --sand: #D4C5B0;
    --light-sand: #E8DCC8;
    --warm-sand: #C9B299;
    
    /* Azulejos */
    --azulejo-blue: #1E4D7B;
    --azulejo-light: #C8D9E6;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-padding: 0 2rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===========================
/* ===========================
   Language Dropdown
   =========================== */
.language-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: 2px solid var(--light-grey);
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark-grey);
    transition: var(--transition);
}

.lang-dropdown-btn:hover {
    border-color: var(--ocean-blue);
    color: var(--ocean-blue);
}

.lang-icon {
    font-size: 1rem;
}

.current-lang {
    font-size: 0.85rem;
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-dropdown:hover .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-menu li {
    list-style: none;
}

.lang-option {
    width: 100%;
    padding: 10px 20px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-grey);
    transition: var(--transition);
}

.lang-option:hover {
    background: var(--light-grey);
    color: var(--ocean-blue);
}

.lang-option.active {
    background: var(--ocean-blue);
    color: var(--white);
}

/* ===========================
   Sticky Phone Bar (Mobile)
   =========================== */
.sticky-phone-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    padding: 12px 16px;
    background: linear-gradient(135deg, #1A3A52, #2C5F7D);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.sticky-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--sand), var(--warm-sand));
    color: var(--charcoal);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.sticky-phone-btn:active {
    transform: scale(0.98);
}

.phone-icon {
    font-size: 1.5rem;
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

/* ===========================
   Container
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.nav-brand h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--deep-blue);
    font-weight: 700;
}

.nav-brand .logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-brand .subtitle {
    font-size: 0.75rem;
    color: var(--medium-grey);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.nav-menu a {
    font-weight: 500;
    color: var(--dark-grey);
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--ocean-blue);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta-phone {
    display: flex;
    align-items: center;
}

.nav-phone-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--sand), var(--warm-sand));
    color: var(--charcoal);
    border-radius: 25px;
    font-weight: 700;
    transition: var(--transition);
}

.nav-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-phone-btn::after {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deep-blue);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--ocean-blue) 100%);
    overflow: hidden;
}

.azulejo-wall {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('azulejo.png');
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.15;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px);
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 58, 82, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(76, 175, 80, 0.95);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    opacity: 0.95;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-phone-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
    transition: var(--transition);
}

.cta-phone-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.6);
}

.cta-phone-primary .cta-icon {
    font-size: 1.8rem;
}

.cta-phone-primary strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.cta-phone-primary small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 35px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-secondary .cta-icon {
    font-size: 1.5rem;
}

.hero-notice {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--deep-blue);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: var(--sand);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; top: 5px; }
    50% { opacity: 1; top: 12px; }
}

/* ===========================
   Section Titles
   =========================== */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title.centered {
    text-align: center;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean-blue), var(--sand));
    margin-bottom: 2rem;
    border-radius: 2px;
}

.title-underline.centered {
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--medium-grey);
    margin-bottom: 3rem;
    font-style: italic;
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: var(--section-padding);
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--castanho-escuro);
    z-index: -1;
    border-radius: 8px;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--dark-grey);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 0.95rem;
    color: var(--deep-blue);
    font-weight: 600;
}

/* ===========================
   Menu Section
   =========================== */
.menu {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.azulejo-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--azulejo-blue) 2%, transparent 2%),
        radial-gradient(circle at 75% 25%, var(--azulejo-blue) 2%, transparent 2%),
        radial-gradient(circle at 25% 75%, var(--azulejo-blue) 2%, transparent 2%),
        radial-gradient(circle at 75% 75%, var(--azulejo-blue) 2%, transparent 2%);
    background-size: 40px 40px;
    background-position: 0 0, 20px 0, 0 20px, 20px 20px;
}

.menu-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.menu-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--deep-blue), var(--ocean-blue));
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(26, 58, 82, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-view-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ocean-blue), var(--deep-blue));
    transition: left 0.3s ease;
    z-index: 0;
}

.menu-view-btn:hover::before {
    left: 0;
}

.menu-view-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 58, 82, 0.4);
}

.menu-view-btn > * {
    position: relative;
    z-index: 1;
}

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

.menu-view-btn strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.menu-view-btn small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.menu-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.menu-view-btn:hover .menu-arrow {
    transform: translateX(5px);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.menu-category {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--ocean-blue);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-grey);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.item-header h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--charcoal);
    font-weight: 600;
}

.price {
    font-weight: 700;
    color: var(--ocean-blue);
    font-size: 1.1rem;
}

.item-description {
    color: var(--medium-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   Gallery Section
   =========================== */
.gallery {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--off-white), var(--white));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: 250px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: var(--section-padding);
    background: var(--deep-blue);
    color: var(--white);
    position: relative;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.quick-action-btn.phone-primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.quick-action-btn.maps-primary {
    background: linear-gradient(135deg, var(--sand), var(--warm-sand));
    color: var(--charcoal);
}

.quick-action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.action-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.action-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.action-content strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.action-content small {
    font-size: 0.9rem;
    opacity: 0.85;
}

.wood-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.1) 2px, rgba(255,255,255,0.1) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.05) 2px, rgba(255,255,255,0.05) 4px);
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-title {
    color: var(--white);
}

.contact .title-underline {
    background: linear-gradient(90deg, var(--sand), var(--light-sand));
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--sand);
}

.info-item p {
    line-height: 1.8;
    opacity: 0.9;
}

.highlighted-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--sand);
}

.hours-list {
    margin: 1rem 0;
}

.hours-list p {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list p:last-child {
    border-bottom: none;
}

.closed-day {
    opacity: 0.7;
}

.hours-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 8px;
}

.notice-icon {
    font-size: 1.2rem;
}

.hours-notice p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.map-container {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.cta-maps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--sand), var(--warm-sand));
    color: var(--charcoal);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-maps:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, var(--light-sand), var(--sand));
}

.maps-icon {
    font-size: 1.5rem;
}

.special-offer {
    background: linear-gradient(135deg, rgba(212, 197, 176, 0.15), rgba(201, 178, 153, 0.15));
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid var(--sand);
}

.offer-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.badge-emoji {
    font-size: 1.8rem;
}

.offer-badge h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--sand);
    margin: 0;
}

.special-offer p {
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
}

.contact-form-container h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--sand);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sand);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--sand);
    color: var(--deep-blue);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--light-sand);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.footer-cta-block {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-cta-block h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--sand);
}

.footer-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.footer-phone-btn,
.footer-maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.footer-phone-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.footer-maps-btn {
    background: linear-gradient(135deg, var(--sand), var(--warm-sand));
    color: var(--charcoal);
    box-shadow: 0 4px 15px rgba(212, 197, 176, 0.3);
}

.footer-phone-btn:hover,
.footer-maps-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand .footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--medium-grey);
    font-size: 0.9rem;
}

.footer-address {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--ocean-blue);
    transform: translateY(-3px);
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--medium-grey);
    font-size: 0.9rem;
}

/* ===========================
   Image Placeholders
   =========================== */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--sand) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--medium-grey);
    border-radius: 8px;
}

.placeholder-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.image-placeholder p {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sticky-phone-bar {
        display: block;
    }
    
    .nav-right {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 0;
        align-items: stretch;
    }
    
    .nav-right.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .language-dropdown {
        border-top: 1px solid var(--light-grey);
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .lang-dropdown-btn {
        width: 100%;
        justify-content: center;
    }
    
    .lang-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 1rem;
        border: 1px solid var(--light-grey);
    }
    
    .nav-cta-phone {
        margin-top: auto;
        padding-top: 1.5rem;
        border-top: 1px solid var(--light-grey);
    }
    
    .nav-phone-btn {
        width: 100%;
        justify-content: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.tall {
        grid-row: span 1;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .cta-phone-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .footer-ctas {
        flex-direction: column;
    }
    
    .footer-phone-btn,
    .footer-maps-btn {
        width: 100%;
        justify-content: center;
    }
    
    .language-selector {
        top: 10px;
        right: 10px;
        padding: 6px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    :root {
        --section-padding: 4rem 0;
    }


@media (max-width: 480px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image::before {
        display: none;
    }
    
    .menu-category {
        padding: 1.5rem;
    }
}
}