:root {
    --primary: #D4A853;
    --primary-dark: #B8912E;
    --primary-light: #F0D48A;
    --dark: #1A1A1A;
    --darker: #111111;
    --dark-brown: #2C1810;
    --warm-gray: #3A3A3A;
    --light: #F5F0E8;
    --cream: #FFF8EE;
    --white: #FFFFFF;
    --text: #E0D6C8;
    --text-muted: #8A8279;
    --red: #C0392B;
    --green: #27AE60;
    --orange: #E67E22;
    --shadow: 0 10px 40px rgba(0,0,0,0.3);
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
ul {
    list-style: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.gold {
    color: var(--primary);
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: 0.5s;
}
.btn:hover::before {
    left: 100%;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.5);
}
.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--primary);
    transform: translateY(-3px);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}
.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}
.btn-full {
    width: 100%;
    justify-content: center;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}
#loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    text-align: center;
}
.fire-icon {
    font-size: 4rem;
    color: var(--primary);
    animation: pulse 1s ease-in-out infinite;
}
.loader-content p {
    margin-top: 20px;
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
#navbar.scrolled {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}
.logo-icon {
    font-size: 1.6rem;
    color: var(--primary);
    animation: flicker 3s ease-in-out infinite;
}
@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links a {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}
.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}
.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1558030006-450675393462?w=1920&h=1080&fit=crop') center/cover no-repeat;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(17, 17, 17, 0.7) 0%,
        rgba(44, 24, 16, 0.8) 50%,
        rgba(17, 17, 17, 0.95) 100%
    );
}
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: float-up linear infinite;
}
@keyframes float-up {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 1; }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 20px 0;
    max-width: 900px;
}
.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 500;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
}
.hero-title .line1 {
    display: block;
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: var(--white);
}
.hero-title .line2 {
    display: block;
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: var(--white);
}
.hero-title .line3 {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    color: var(--primary);
    margin-top: 5px;
}
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}
.stat-plus {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
}
.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(212, 168, 83, 0.3);
}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    color: var(--text-muted);
}
.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(212, 168, 83, 0.5);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}
.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}
.scroll-indicator p {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
#about {
    padding: 120px 0;
    background: var(--darker);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s;
}
.about-img-main:hover img {
    transform: scale(1.05);
}
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--darker);
    box-shadow: var(--shadow);
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.4);
    animation: rotate-slow 20s linear infinite;
}
@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}
.badge-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-text {
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}
.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}
.feature h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 3px;
}
.feature p {
    font-size: 0.82rem;
    color: var(--text-muted);
}
#specialties-banner {
    position: relative;
    padding: 25px 0;
    background: linear-gradient(135deg, var(--dark-brown), var(--dark));
    overflow: hidden;
    border-top: 1px solid rgba(212, 168, 83, 0.2);
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}
.specialties-track {
    display: flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}
.specialties-scroll {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
    white-space: nowrap;
    flex-shrink: 0;
}
.specialty-item {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.specialty-item i {
    color: var(--primary);
}
.specialty-divider {
    color: var(--primary);
    font-size: 0.8rem;
    opacity: 0.5;
    flex-shrink: 0;
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.specialties-track:hover {
    animation-play-state: paused;
}
#menu {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}
.menu-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 28px;
    border: 2px solid rgba(212, 168, 83, 0.3);
    background: transparent;
    color: var(--text);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.menu-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
}
.menu-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: rgba(212, 168, 83, 0.3);
}
.menu-card.hidden {
    display: none;
}
.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    letter-spacing: 0.5px;
}
.card-badge.bestseller {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
}
.card-badge.popular {
    background: linear-gradient(135deg, var(--green), #1E8449);
    color: var(--white);
}
.card-badge.special {
    background: linear-gradient(135deg, var(--red), #922B21);
    color: var(--white);
}
.card-badge.fiesta {
    background: linear-gradient(135deg, var(--orange), #D35400);
    color: var(--white);
}
.card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.menu-card:hover .card-image img {
    transform: scale(1.1);
}
.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.menu-card:hover .card-overlay {
    opacity: 1;
}
.btn-card-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: var(--transition);
}
.menu-card:hover .btn-card-order {
    transform: translateY(0);
}
.btn-card-order:hover {
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}
.card-content {
    padding: 25px;
}
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.card-top h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}
.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}
.card-content > p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 18px;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.card-info {
    display: flex;
    gap: 15px;
}
.card-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
.card-info span i {
    color: var(--primary);
    font-size: 0.7rem;
}
.card-rating {
    display: flex;
    gap: 2px;
}
.card-rating i {
    color: var(--primary);
    font-size: 0.75rem;
}
.card-rating i.far {
    color: var(--text-muted);
}
#process {
    padding: 120px 0;
    background: var(--darker);
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary), transparent);
    opacity: 0.3;
}
.process-step {
    text-align: center;
    position: relative;
    padding: 0 15px;
}
.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 168, 83, 0.08);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}
.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 168, 83, 0.1);
    border: 2px solid rgba(212, 168, 83, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.process-step:hover .step-icon {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.3);
}
.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}
.process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}
#gallery {
    padding: 120px 0;
    background: var(--dark);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item-lg {
    grid-column: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    font-size: 1.5rem;
    color: var(--primary);
}
.gallery-overlay span {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}
#testimonials {
    padding: 120px 0;
    background: var(--darker);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 35px;
    transition: var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(212, 168, 83, 0.1);
    position: absolute;
    top: 10px;
    right: 25px;
    line-height: 1;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 168, 83, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}
.testimonial-stars i {
    color: var(--primary);
    font-size: 0.9rem;
}
.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 25px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}
.testimonial-author h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.testimonial-author span {
    color: var(--primary);
    font-size: 0.8rem;
}
#cta {
    position: relative;
    padding: 100px 0;
    background: url('https://images.pexels.com/photos/8250702/pexels-photo-8250702.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
    text-align: center;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.92), rgba(17, 17, 17, 0.92));
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 15px;
}
.cta-content p {
    color: var(--text);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
}
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
#contact {
    padding: 120px 0;
    background: var(--dark);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    transition: var(--transition);
}
.contact-card:hover {
    border-color: rgba(212, 168, 83, 0.3);
    transform: translateX(5px);
}
.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}
.contact-card h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 3px;
}
.contact-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
}
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}
.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}
.contact-form-wrapper {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 40px;
}
.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 25px;
}
.form-group {
    position: relative;
    margin-bottom: 18px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px 14px 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}
.form-group select {
    appearance: none;
    cursor: pointer;
}
.form-group select option {
    background: var(--dark);
    color: var(--white);
}
.form-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
}
.form-group textarea + i {
    top: 18px;
    transform: none;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
#footer {
    padding: 80px 0 30px;
    background: var(--darker);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-brand p {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--dark);
}
.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.footer-newsletter h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 600;
}
.footer-newsletter p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 20px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: bounce-gentle 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}
@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 45px;
    height: 45px;
    background: rgba(212, 168, 83, 0.2);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}
[data-aos]:not(.aos-animate) {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-aos="fade-right"]:not(.aos-animate) {
    transform: translateX(-30px);
}
[data-aos="fade-left"]:not(.aos-animate) {
    transform: translateX(30px);
}
[data-aos="zoom-in"]:not(.aos-animate) {
    transform: scale(0.9);
}
[data-aos].aos-animate {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-aos].aos-done {
    opacity: 1;
    transform: none;
    transition: none;
}
@media (max-width: 1024px) {
    .about-grid {
        gap: 50px;
    }
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .process-timeline::before {
        display: none;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        transition: var(--transition);
        z-index: 999;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.1rem;
    }
    .hamburger {
        display: flex;
        z-index: 1000;
    }
    .btn-order {
        display: none;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-img-main img {
        height: 350px;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item-lg {
        grid-column: span 2;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .hero-stats {
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .process-timeline {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 480px) {
    .hero-title .line1,
    .hero-title .line2 {
        font-size: 2.2rem;
    }
    .hero-title .line3 {
        font-size: 2.5rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item-lg {
        grid-column: span 1;
    }
}
