/* Variables */
:root {
    --bg-dark: #120e0b;
    --bg-light: #1c1511;
    --accent-orange: #d3542b;
    --accent-hover: #b44522;
    --text-white: #f5eedf;
    --text-muted: #b0a399;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    background: radial-gradient(circle at center top, #1a1410 0%, var(--bg-dark) 100%);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 80px 0; }
.text-center { text-align: center; }
.accent { color: var(--accent-orange); }
.mt-2 { margin-top: 2rem; }

/* Navbar */
.navbar {
    position: fixed; width: 100%; top: 0; z-index: 100;
    background: rgba(18, 14, 11, 0.85); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}
.nav-container {
    width: 90%; max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 0;
}
.logo-box { display: flex; align-items: center; gap: 15px; }
.nav-logo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent-orange); }
.brand-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; transition: var(--transition); }
.nav-links a:hover { color: var(--accent-orange); }
.cart-icon { position: relative; cursor: pointer; font-size: 1.5rem; transition: var(--transition); }
.cart-icon:hover { color: var(--accent-orange); transform: scale(1.1); }
.cart-badge {
    position: absolute; top: -8px; right: -10px; background: var(--accent-orange);
    color: white; font-size: 0.75rem; font-weight: bold; width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
}

/* Hero Section */
.hero {
    height: 100vh; position: relative;
    background-image: url('images/hero-section.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(18, 14, 11, 0.95));
    z-index: 1;
}
/* Hero Smoke Overlay */
.smoke-overlay {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: 
        radial-gradient(circle at 20% 50%, rgba(200, 200, 200, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(200, 200, 200, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(200, 200, 200, 0.03) 0%, transparent 60%);
    animation: floatingSmoke 20s ease-in-out infinite alternate;
}
@keyframes floatingSmoke {
    0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
    50% { transform: scale(1.1) translate(-20px, 15px); opacity: 1; }
    100% { transform: scale(1.05) translate(10px, -10px); opacity: 0.7; }
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 20px; animation: fadeIn 1.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-logo { width: 170px; height: 170px; margin: 0 auto 30px; border-radius: 50%; border: 3px solid var(--accent-orange); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero-title { font-size: 4.5rem; line-height: 1.1; margin-bottom: 10px; text-shadow: 2px 4px 10px rgba(0,0,0,0.8); }
.hero-tagline { font-family: var(--font-body); font-weight: 300; font-style: italic; font-size: 1.8rem; color: #eed5b7; margin-bottom: 25px; }
.hero-desc { font-size: 1.2rem; margin-bottom: 40px; color: var(--text-muted); max-width: 600px; margin-inline: auto; }
.cta-btn {
    display: inline-block; background: var(--accent-orange); color: white;
    padding: 15px 40px; font-size: 1.1rem; font-weight: 600; font-family: var(--font-heading);
    border-radius: 5px; text-transform: uppercase; letter-spacing: 2px;
    transition: var(--transition); cursor: pointer; border: none;
    box-shadow: 0 5px 15px rgba(211, 84, 43, 0.4);
}
.cta-btn:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(211, 84, 43, 0.6); }
.cta-btn.outline { background: transparent; border: 2px solid var(--accent-orange); }
.cta-btn.outline:hover { background: var(--accent-orange); }

/* Timings Bar */
.timings-bar {
    background: var(--bg-light); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 15px 0; display: flex; justify-content: center; gap: 50px; font-size: 1rem; flex-wrap: wrap; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted);
}
.timing-item { display: flex; align-items: center; gap: 10px; }
.timing-item i { color: var(--accent-orange); font-size: 1.3rem; }
.timing-item span { color: var(--text-white); font-weight: 600; }

/* Section Titles */
.section-subtitle { display: block; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 3px; color: var(--accent-orange); font-size: 0.9rem; margin-bottom: 10px; font-weight: 600; }
.section-title { font-size: 3rem; margin-bottom: 25px; }

/* Categories & Badges */
.menu-category { margin-bottom: 80px; }
.sub-category-title { font-size: 1.5rem; color: #eed5b7; font-family: var(--font-heading); margin-bottom: 20px; font-weight: 600; font-style: italic; }
.section-badge-wrapper { text-align: center; margin-bottom: 15px; }
.section-badge { display: inline-block; padding: 5px 20px; border: 1px solid var(--accent-orange); color: var(--accent-orange); border-radius: 50px; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; background: rgba(211, 84, 43, 0.05); }
.category-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-top: -35px; margin-bottom: 40px; font-style: italic; }

.product-img-wrapper { position: relative; overflow: hidden; border-radius: 15px 15px 0 0; }
.product-img-wrapper::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, var(--bg-dark) 100%); pointer-events: none; }
.product-badge { position: absolute; top: 15px; left: 15px; z-index: 2; background: rgba(18, 14, 11, 0.85); border: 1px solid var(--accent-orange); color: var(--accent-orange); padding: 4px 12px; border-radius: 4px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; backdrop-filter: blur(5px); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.product-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 20px; flex-grow: 1; line-height: 1.5; }

/* Product Card Animations */
.product-card {
    background: var(--bg-dark); border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column;
    flex: 0 1 350px; width: 100%;
}
.product-card.visible:hover { transform: translateY(-5px); border-color: rgba(211, 84, 43, 0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.9); }
.product-img { width: 100%; height: 250px; object-fit: cover; object-position: center; transition: transform 0.4s ease; border-radius: 15px 15px 0 0; }
.fried-papad-fix { transform: scale(1.30); transform-origin: center; }
.img-contain { object-fit: contain !important; background: radial-gradient(circle at center, #2a201a 0%, var(--bg-dark) 100%); }
.product-card:hover .product-img { transform: scale(1.05); }
.product-card:hover .fried-papad-fix { transform: scale(1.35); }

/* Buttons & Elements Smoothness */
.add-btn { transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease; }
.add-btn:hover { background: var(--accent-orange); color: white; transform: scale(1.05); box-shadow: 0 0 15px rgba(211, 84, 43, 0.6); }

/* Scroll Anim Classes */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.menu-category.animate-on-scroll { transition: opacity 0.8s ease, transform 0.8s ease; }

/* Our Heritage */
.heritage-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.heritage-image { position: relative; border-radius: 10px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
.heritage-image img { width: 100%; height: auto; transition: var(--transition); }
.heritage-image:hover img { transform: scale(1.05); }
.heritage-image::after { content: ''; position: absolute; inset: 0; border: 2px solid var(--accent-orange); border-radius: 10px; transform: scale(0.95); pointer-events: none; opacity: 0.5; }
.heritage-desc p { margin-bottom: 20px; font-size: 1.1rem; color: var(--text-muted); }

/* Menu Section */
.menu { background: var(--bg-light); position: relative; }
.subsection-title { font-size: 2rem; color: #eed5b7; font-style: italic; margin-bottom: 50px; font-weight: 400; }
.menu-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.product-card {
    background: var(--bg-dark); border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition); border: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-10px); border-color: rgba(211, 84, 43, 0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.8); }
.product-img { width: 100%; height: 250px; object-fit: cover; }
.product-info { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.product-title { font-size: 1.5rem; margin-bottom: 15px; }
.product-options { margin-bottom: 20px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.product-option { display: flex; justify-content: space-between; align-items: center; padding: 10px; background: rgba(255,255,255,0.03); border-radius: 5px; }
.opt-weight { font-weight: 600; color: var(--text-muted); }
.opt-price { color: var(--accent-orange); font-weight: bold; font-family: var(--font-heading); font-size: 1.2rem; }
.opt-action-container { width: 90px; height: 34px; display: flex; justify-content: flex-end; align-items: center; }
.add-btn { width: 100%; height: 100%; background: transparent; border: 1px solid var(--accent-orange); color: var(--accent-orange); border-radius: 5px; cursor: pointer; transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease; font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }
.add-btn:hover { background: var(--accent-orange); color: white; transform: scale(1.05); box-shadow: 0 0 15px rgba(211, 84, 43, 0.6); }

/* How to Order */
.how-to-order { background: linear-gradient(to bottom, var(--bg-dark), var(--bg-light)); }
.order-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px; margin-top: 50px; }
.order-box { text-align: center; padding: 40px 20px; background: rgba(255,255,255,0.02); border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); transition: var(--transition); }
.order-box:hover { background: rgba(255,255,255,0.05); transform: translateY(-5px); }
.order-box i { font-size: 3rem; color: var(--accent-orange); margin-bottom: 20px; }
.order-box h3 { font-size: 1.5rem; margin-bottom: 10px; }
.order-box p { color: var(--text-muted); }

/* Gallery (The Making) */
.gallery-desc { color: var(--text-muted); margin-bottom: 50px; font-size: 1.2rem; }
.masonry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-auto-rows: 250px; gap: 20px; }
.grid-item { border-radius: 10px; overflow: hidden; background: #2a201a; position: relative; }
.grid-item.empty { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.2); font-family: var(--font-body); }
.grid-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.grid-item:hover img { transform: scale(1.1); }
.grid-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.grid-item:nth-child(4) { grid-column: span 2; }

/* Cart Sidebar */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); }
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar {
    position: fixed; top: 0; right: -400px; width: 400px; height: 100vh;
    background: var(--bg-light); z-index: 1000; box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    display: flex; flex-direction: column; transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: 1px solid rgba(255,255,255,0.05);
}
.cart-sidebar.open { right: 0; }
.cart-header { padding: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; }
.cart-header h2 { font-size: 1.8rem; }
.close-cart, .close-checkout { background: transparent; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; transition: var(--transition); }
.close-cart:hover, .close-checkout:hover { color: var(--accent-orange); transform: rotate(90deg); }
.cart-items { flex-grow: 1; overflow-y: auto; padding: 25px; display: flex; flex-direction: column; gap: 20px; }
/* Webkit Scrollbar inside cart */
.cart-items::-webkit-scrollbar { width: 6px; }
.cart-items::-webkit-scrollbar-track { background: var(--bg-light); }
.cart-items::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }
.cart-items::-webkit-scrollbar-thumb:hover { background: var(--accent-orange); }

.cart-item { display: flex; gap: 15px; background: var(--bg-dark); padding: 15px; border-radius: 10px; position: relative; }
.cart-item-info { flex-grow: 1; }
.cart-item-title { font-size: 1.1rem; font-family: var(--font-heading); margin-bottom: 5px; padding-right: 20px;}
.cart-item-weight { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; }
.cart-item-controls { display: flex; justify-content: space-between; align-items: center; }
.cart-item-price { color: var(--accent-orange); font-weight: bold; }
.qty-controls { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); border-radius: 5px; padding: 3px 5px; }
.qty-btn { background: transparent; border: none; color: white; cursor: pointer; padding: 0 5px; font-size: 1.2rem; }
.qty-btn:hover { color: var(--accent-orange); }
.remove-item { position: absolute; top: 10px; right: 10px; background: transparent; border: none; color: var(--text-muted); cursor: pointer; transition: var(--transition); font-size: 1.2rem; }
.remove-item:hover { color: #ff4d4d; }
.cart-footer { padding: 25px; border-top: 1px solid rgba(255,255,255,0.1); background: var(--bg-dark); }
.cart-totals { display: flex; justify-content: space-between; margin-bottom: 20px; font-size: 1.2rem; font-family: var(--font-heading); }
.checkout-btn { width: 100%; background: var(--accent-orange); color: white; border: none; padding: 15px; border-radius: 5px; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.checkout-btn:hover { background: var(--accent-hover); }
.empty-cart-msg { text-align: center; color: var(--text-muted); margin-top: 50px; font-style: italic; }

/* Checkout Modal */
.checkout-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); z-index: 1001; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); }
.checkout-modal-overlay.active { opacity: 1; visibility: visible; }
.checkout-box { background: var(--bg-light); border: 1px solid rgba(255,255,255,0.1); padding: 40px; border-radius: 15px; width: 90%; max-width: 500px; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.9); transform: translateY(20px); transition: var(--transition); }
.checkout-modal-overlay.active .checkout-box { transform: translateY(0); }
.close-checkout { position: absolute; top: 20px; right: 20px; }
.checkout-box h2 { font-size: 2rem; margin-bottom: 25px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group textarea { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); color: white; padding: 12px 15px; border-radius: 5px; font-family: var(--font-body); font-size: 1rem; transition: var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent-orange); background: rgba(255,255,255,0.05); }
.submit-order-btn { width: 100%; background: var(--accent-orange); color: white; border: none; padding: 15px; border-radius: 5px; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; text-transform: uppercase; cursor: pointer; transition: var(--transition); margin-top: 10px; box-shadow: 0 5px 15px rgba(211, 84, 43, 0.4); }
.submit-order-btn:hover { background: var(--accent-hover); transform: translateY(-3px); }

/* Responsive */
@media (max-width: 900px) {
    .heritage-container { grid-template-columns: 1fr; }
    .hero-title { font-size: 3.5rem; }
    .hero-tagline { font-size: 1.4rem; }
}
@media (max-width: 768px) {
    .nav-links a { display: none; }
    .nav-links a.cart-icon { display: block; }
    .order-features { grid-template-columns: 1fr; }
    .masonry-grid { grid-template-columns: 1fr; }
    .grid-item:nth-child(1), .grid-item:nth-child(4) { grid-column: span 1; }
    .timings-bar { flex-direction: column; gap: 15px; align-items: center; }
    .cart-sidebar { width: 100%; right: -100%; border-left: none; }
    .checkout-box { padding: 30px 20px; }
}

/* Add to Cart Popup */
.cart-popup {
    position: fixed; bottom: -100px; left: 50%; transform: translateX(-50%);
    background: var(--bg-light); border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 25px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: flex; align-items: center; gap: 20px; z-index: 1000;
    transition: bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cart-popup.show { bottom: 30px; }
.popup-text { color: var(--text-white); font-weight: 500; font-size: 1rem; }
.popup-btn { background: var(--accent-orange); color: white; border: none; padding: 8px 15px; border-radius: 5px; cursor: pointer; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; transition: var(--transition); }
.popup-btn:hover { background: var(--accent-hover); }
.popup-close { background: transparent; border: none; color: #ff4d4d; font-size: 1.2rem; cursor: pointer; position: absolute; top: -8px; right: -8px; background: var(--bg-light); border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.popup-close:hover { color: #ff1a1a; transform: scale(1.1); }

/* Option Qty Controls (Inline menu) */
.opt-qty-controls { width: 100%; height: 100%; display: flex; justify-content: space-between; align-items: center; background: rgba(211, 84, 43, 0.1); border: 1px solid var(--accent-orange); border-radius: 5px; padding: 0 5px; }
.opt-qty-btn { background: transparent; border: none; color: var(--accent-orange); cursor: pointer; font-size: 1.2rem; font-weight: bold; padding: 0 2px; }
.opt-qty-btn:hover { color: white; }
.opt-qty-text { color: white; font-weight: bold; min-width: 15px; text-align: center; font-size: 0.9rem; }
.action-fade-enter { animation: quickFade 0.2s ease-out; }
@keyframes quickFade { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* Footer */
.footer { background: #0a0806; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 60px; margin-top: 50px; }
.footer-container { padding: 0 0 50px 0; display: flex; justify-content: space-between; gap: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.footer-left { max-width: 400px; display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo { width: 90px; height: 90px; border-radius: 50%; border: 2px solid var(--accent-orange); margin-bottom: 20px; object-fit: cover; }
.footer-title { font-size: 2.3rem; margin-bottom: 10px; }
.footer-tagline { font-size: 1.1rem; color: var(--text-muted); font-style: italic; }
.footer-right { flex: 1; max-width: 500px; display: flex; flex-direction: column; gap: 30px; }
.footer-contact .contact-item { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 15px; }
.footer-contact .contact-item i { font-size: 1.6rem; margin-top: 3px; }
.footer-contact .contact-item p, .footer-contact .contact-item a { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }
.footer-contact .contact-item a { transition: var(--transition); }
.footer-contact .contact-item a:hover { color: var(--accent-orange); }
.dark-map { border-radius: 10px; filter: brightness(80%) contrast(120%) invert(90%) hue-rotate(180deg); opacity: 0.85; transition: var(--transition); border: 2px solid rgba(255,255,255,0.05); }
.dark-map:hover { opacity: 1; filter: brightness(100%) contrast(100%) invert(90%) hue-rotate(180deg); }
.footer-bottom { text-align: center; padding: 30px 20px; }
.coming-soon { color: var(--accent-orange); font-size: 1.1rem; margin-bottom: 10px; font-weight: 500; font-family: var(--font-body); letter-spacing: 1px; }
.copyright { color: var(--text-muted); font-size: 0.9rem; }

@media (max-width: 768px) {
    .cart-popup { bottom: -120px; width: 90%; max-width: 400px; justify-content: space-between; gap: 10px; padding: 15px; }
    .cart-popup.show { bottom: 20px; }
    .footer-container { flex-direction: column; align-items: center; text-align: center; }
    .footer-left { align-items: center; }
    .footer-contact .contact-item { justify-content: center; text-align: center; flex-direction: column; align-items: center; gap: 5px; margin-bottom: 25px; }
    .footer-contact .contact-item i { margin-top: 0; margin-bottom: 5px; }
}
