* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: Arial, sans-serif;
    color: #f5e6d3;
    background-color: #003333;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('logo.png');
    background-size: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
}

.navbar {
    background-color: #4d0026;
    border-bottom: 3px solid #000000;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu { 
    list-style: none; 
    display: flex; 
    gap: 30px; 
    flex: 1; 
    align-items: center; 
}

.menu-left { justify-content: flex-start; }
.menu-right { justify-content: flex-end; }

.menu li a {
    text-decoration: none; 
    color: #f5e6d3; 
    font-size: 16px;
    padding: 8px 18px; 
    border-radius: 4px; 
    transition: all 0.3s;
    font-weight: 500;
}

.menu li a:hover, .menu li a.active { 
    background-color: #000000; 
    color: #ffffff; 
}

.logo { 
    flex: 1; 
    text-align: center; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 38px;
}

.logo a { 
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo img { 
    height: 135px;
    width: auto;
    vertical-align: middle; 
}

.hero {
    background: linear-gradient(135deg, rgba(77, 0, 38, 0.7) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 51, 51, 0.7) 100%);
    padding: 100px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.hero h1 {
    font-size: 50px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    color: #f5e6d3;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-button {
    display: inline-block;
    background-color: #4d0026;
    color: #ffffff;
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 2px solid #000000;
}

.hero-button:hover {
    background-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(77, 0, 38, 0.6);
    border-color: #4d0026;
}

.welcome {
    padding: 80px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.welcome-box {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(77, 0, 38, 0.5);
    border-top: 3px solid #4d0026;
}

.welcome h2 {
    font-size: 34px;
    color: #ffffff;
    margin-bottom: 20px;
}

.welcome p {
    font-size: 16px;
    line-height: 1.7;
    color: #f5e6d3;
}

.features {
    padding: 60px 40px 80px 40px;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-card {
    flex: 1;
    min-width: 260px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    padding: 35px 30px;
    border-radius: 12px;
    border-top: 4px solid #4d0026;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(77, 0, 38, 0.5);
    background: rgba(77, 0, 38, 0.55);
    border-top-color: #ffffff;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #f5e6d3;
    font-size: 14px;
    line-height: 1.6;
}

.page-header {
    background: linear-gradient(135deg, #4d0026 0%, #000000 50%, #4d0026 100%);
    padding: 70px 40px;
    text-align: center;
    border-bottom: 3px solid #000000;
}

.page-header h1 {
    font-size: 44px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.content h2 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 35px;
    border-bottom: 2px solid #4d0026;
    padding-bottom: 8px;
    display: inline-block;
}

.content p {
    font-size: 16px;
    line-height: 1.8;
    color: #f5e6d3;
    margin-bottom: 15px;
}

.values {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.value-box {
    flex: 1;
    min-width: 250px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    padding: 30px;
    border-top: 4px solid #4d0026;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.value-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(77, 0, 38, 0.5);
    background: rgba(77, 0, 38, 0.55);
    border-top-color: #ffffff;
}

.value-box h3 { color: #ffffff; font-size: 22px; margin-bottom: 12px; }
.value-box p { font-size: 14px; color: #f5e6d3; line-height: 1.6; }

body.menu-page::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(77, 0, 38, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(77, 0, 38, 0.45) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 60%),
        linear-gradient(180deg, #003d3d 0%, #003333 50%, #001a1a 100%);
    z-index: -3;
}

.sparks {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.spark {
    position: absolute;
    background: #f5e6d3;
    border-radius: 50%;
    box-shadow: 0 0 8px #ffffff, 0 0 14px #4d0026;
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; transform: translateY(95vh) scale(1); }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(0.3); opacity: 0; }
}

.menu-page .navbar {
    background-color: rgba(77, 0, 38, 0.92);
    backdrop-filter: blur(15px);
}

.menu-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 30px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(77, 0, 38, 0.35) 0%, transparent 60%);
    z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-mini-baslik {
    font-size: 16px;
    color: #f5e6d3;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(245, 230, 211, 0.6);
}

.menu-hero h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(180deg, #ffffff 0%, #f5e6d3 30%, #4d0026 70%, #000000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(77, 0, 38, 0.6)); }
    to { filter: drop-shadow(0 0 35px rgba(245, 230, 211, 0.5)); }
}

.hero-decor {
    font-size: 24px;
    margin: 20px auto;
    color: #f5e6d3;
    letter-spacing: 8px;
    text-shadow: 0 0 15px rgba(77, 0, 38, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f5e6d3;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.kategori-bar {
    position: sticky;
    top: 90px;
    background: rgba(77, 0, 38, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    z-index: 99;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
}

.kategori-bar-icerik {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.kategori-link {
    background: rgba(0, 0, 0, 0.5);
    color: #f5e6d3;
    padding: 8px 18px;
    border-radius: 22px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    border: 2px solid #000000;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kategori-link:hover {
    background: linear-gradient(135deg, #4d0026 0%, #000000 100%);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(77, 0, 38, 0.7);
}

.kategori-bolum {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 25px 25px 25px;
    scroll-margin-top: 160px;
}

.kategori-baslik {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 35px;
}

.kategori-baslik h2 {
    font-size: 34px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(180deg, #ffffff 0%, #f5e6d3 50%, #4d0026 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

.kategori-baslik::before, .kategori-baslik::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #4d0026, transparent);
    max-width: 200px;
}

.yemek-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
    perspective: 1000px;
}

.yemek-kart {
    background: linear-gradient(145deg, rgba(77, 0, 38, 0.65) 0%, rgba(0, 0, 0, 0.85) 100%);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(245, 230, 211, 0.15);
    border: 1px solid #4d0026;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
}

.yemek-kart:hover {
    transform: translateY(-10px) scale(1.03) rotateX(4deg);
    box-shadow: 0 20px 45px rgba(77, 0, 38, 0.6), 0 0 30px rgba(0, 0, 0, 0.5);
    border-color: #ffffff;
}

.yemek-foto {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #4d0026 0%, #000000 50%, #4d0026 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.yemek-foto::after {
    content: "🔍";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(0, 0, 0, 0.85);
    color: #f5e6d3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: transform 0.3s ease;
    z-index: 2;
    border: 2px solid #4d0026;
}

.yemek-foto:hover::after { transform: translate(-50%, -50%) scale(1); }
.yemek-bilgi { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.yemek-isim { font-size: 16px; color: #ffffff; margin-bottom: 6px; font-weight: bold; }
.yemek-aciklama { color: #f5e6d3; font-size: 12px; line-height: 1.4; margin-bottom: 12px; flex: 1; }

.yemek-fiyat {
    display: inline-block;
    background: linear-gradient(135deg, #4d0026 0%, #000000 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    align-self: flex-start;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 1px solid #000000;
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(10px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal.aktif { display: flex; }

.modal-icerik {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalZoomIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes modalZoomIn { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.modal-bilgi { text-align: center; margin-top: 10px; }
.modal-bilgi h2 { color: #ffffff; font-size: 26px; margin-bottom: 8px; }
.modal-bilgi p { color: #f5e6d3; font-size: 15px; max-width: 600px; }

.modal-fiyat {
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(135deg, #4d0026 0%, #000000 100%);
    color: #fff;
    padding: 8px 22px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #000000;
}

.modal-kapat {
    position: absolute;
    top: -15px; right: -15px;
    background: #4d0026; color: #fff;
    border: 2px solid #ffffff;
    width: 40px; height: 40px; border-radius: 50%;
    font-size: 20px; cursor: pointer; font-weight: bold;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; z-index: 10;
}
.modal-kapat:hover { background: #000000; transform: rotate(90deg) scale(1.1); }

.services {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 40px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    border: 1px solid #4d0026;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(77, 0, 38, 0.5);
    background: rgba(77, 0, 38, 0.55);
    border-color: #ffffff;
}
.service-number {
    display: inline-block;
    background-color: #4d0026;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid #000000;
}
.service-card h3 { color: #ffffff; font-size: 24px; margin-bottom: 15px; }
.service-card p { color: #f5e6d3; font-size: 14px; line-height: 1.6; margin-bottom: 15px; }
.service-card ul { list-style: none; }
.service-card ul li { color: #f5e6d3; font-size: 14px; padding: 5px 0; padding-left: 20px; position: relative; }
.service-card ul li::before { content: "✓"; color: #ffffff; font-weight: bold; position: absolute; left: 0; }

.cta {
    background: linear-gradient(135deg, #4d0026 0%, #000000 100%);
    padding: 60px 40px; text-align: center;
    border-top: 3px solid #000000; border-bottom: 3px solid #000000;
}
.cta h2 { font-size: 30px; margin-bottom: 15px; color: #ffffff; }
.cta p { font-size: 16px; margin-bottom: 25px; color: #f5e6d3; }
.cta-button {
    display: inline-block; background-color: #4d0026; color: #ffffff;
    padding: 14px 35px; text-decoration: none; border-radius: 30px;
    font-weight: bold; transition: all 0.3s; border: 2px solid #000000;
}
.cta-button:hover { background-color: #000000; border-color: #4d0026; transform: translateY(-2px); }

.contact {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 40px;
}
.contact-wrapper { display: flex; gap: 40px; flex-wrap: wrap; }
.contact-info { flex: 1; min-width: 300px; }
.contact-info h2 { font-size: 28px; color: #ffffff; margin-bottom: 25px; }
.contact-info > p { font-size: 15px; color: #f5e6d3; line-height: 1.7; margin-bottom: 30px; }

.info-item {
    display: flex; align-items: flex-start; gap: 15px; padding: 18px;
    background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(8px);
    border-left: 4px solid #4d0026; border-radius: 6px; margin-bottom: 15px; transition: all 0.3s;
}
.info-item:hover { background: rgba(77, 0, 38, 0.55); border-left-color: #ffffff; }

.info-icon {
    width: 40px; height: 40px; background-color: #4d0026; color: #ffffff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: bold; flex-shrink: 0; border: 2px solid #000000;
}
.info-content h4 { color: #f5e6d3; font-size: 13px; text-transform: uppercase; margin-bottom: 4px; }
.info-content p { color: #ffffff; font-size: 15px; }

.contact-form {
    flex: 1; min-width: 300px; background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px); padding: 35px; border-radius: 12px;
    border-top: 4px solid #4d0026; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.contact-form h2 { color: #ffffff; font-size: 24px; margin-bottom: 8px; }
.contact-form > p { color: #f5e6d3; font-size: 14px; margin-bottom: 20px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; color: #f5e6d3; font-size: 12px; font-weight: bold; text-transform: uppercase; margin-bottom: 6px; }

.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 15px; border: 1px solid #4d0026; border-radius: 6px;
    font-size: 14px; background-color: rgba(0, 0, 0, 0.4); color: #ffffff; transition: all 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: #ffffff; box-shadow: 0 0 0 3px rgba(77, 0, 38, 0.4); }
.form-group select option { background-color: #003333; color: #ffffff; }
.form-group textarea { resize: vertical; min-height: 100px; }

.submit-button {
    width: 100%; background-color: #4d0026; color: #ffffff; padding: 14px;
    border: 2px solid #000000; border-radius: 30px; font-weight: bold; cursor: pointer; transition: all 0.3s;
}
.submit-button:hover { background-color: #000000; border-color: #4d0026; transform: translateY(-2px); }

.footer {
    background-color: #000000; color: #f5e6d3; text-align: center;
    padding: 25px; font-size: 14px; border-top: 3px solid #4d0026;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate { opacity: 0; animation: fadeIn 1s ease-out forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.8s; }

.scroll-fade {
    opacity: 0; transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.scroll-fade.visible { opacity: 1; transform: translateY(0); }

.feature-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 24px;
    background-color: #4d0026;
    color: #f5e6d3;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid #000000;
    transition: all 0.3s;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.feature-btn:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #4d0026;
    transform: scale(1.05);
}

.solutions-page, .contact-page {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 25px;
}
.page-title {
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
}
.info-note {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #4d0026;
    margin-bottom: 40px;
    line-height: 1.7;
    color: #f5e6d3;
}
.solution-category { margin-bottom: 50px; }
.solution-category h2 {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #4d0026;
    padding-bottom: 8px;
    margin-top: 30px;
}
.solution-category h2 i { margin-right: 10px; color: #f5e6d3; }
.category-note { font-size: 13px; color: #f5e6d3; opacity: 0.8; font-style: italic; margin-top: -10px; margin-bottom: 20px; }
.sub-title { color: #ffffff; margin-top: 40px; margin-bottom: 15px; font-size: 20px; }

.solutions-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #4d0026;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}
.solutions-table th, .solutions-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(77, 0, 38, 0.3);
}
.solutions-table th {
    background-color: #4d0026;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}
.solutions-table tr:last-child td { border-bottom: none; }
.solutions-table td strong {
    color: #ffffff;
    background: rgba(77, 0, 38, 0.5);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
}
.package-row {
    background: linear-gradient(145deg, rgba(77, 0, 38, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%) !important;
    font-weight: bold;
}
.package-row td { border-top: 1px solid #4d0026; border-bottom: 1px solid #4d0026; }
.spare-parts { max-width: 700px; }
.spare-parts td { padding: 10px 20px; }

.instagram-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff !important;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
    border: 1px solid #b61368;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.instagram-btn i { 
    margin-right: 7px; 
    font-size: 16px; 
}
.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(204, 35, 102, 0.6);
    filter: brightness(1.1);
}

.contact-card { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.contact-item {
    background: linear-gradient(145deg, rgba(77, 0, 38, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #4d0026;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
}
.contact-item:hover { transform: translateY(-5px); border-color: #ffffff; box-shadow: 0 12px 35px rgba(77, 0, 38, 0.4); }
.contact-item i { font-size: 44px; color: #f5e6d3; margin-bottom: 20px; display: inline-block; }
.contact-item h3 { font-size: 20px; color: #ffffff; margin-bottom: 12px; }
.contact-item p { font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.contact-item p a { color: #ffffff; text-decoration: none; font-weight: bold; border-bottom: 1px dashed #f5e6d3; }

@media (max-width: 768px) {
    .navbar { 
        flex-direction: column; 
        gap: 15px; 
        padding: 20px 15px; 
    }
    
    .menu { 
        flex-direction: row;
        justify-content: center; 
        gap: 10px; 
        width: 100%; 
        flex-wrap: wrap;
    }
    
    .menu-left, .menu-right { 
        justify-content: center; 
    }
    
    .menu li a {
        font-size: 14px;
        padding: 6px 12px;
    }

    .logo {
        position: relative;
        height: auto;
        width: auto;
        order: -1;
        margin-bottom: 10px;
    }
    
    .logo a {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
    
    .logo img {
        height: 120px;
    }

    .hero h1 { 
        font-size: 32px; 
    }
    
    .solutions-page, .contact-page, .services {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    .solution-category {
        overflow-x: hidden;
    }

    .solutions-table {
        display: block;
        width: 100%;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .solutions-table th {
        display: none;
    }

    .solutions-table tbody {
        display: block;
        width: 100%;
    }

    .solutions-table tr {
        display: flex;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        margin-bottom: 15px;
        border: 1px solid #4d0026;
        border-radius: 12px;
        padding: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .package-row {
        background: linear-gradient(145deg, rgba(77, 0, 38, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%) !important;
        border: 1px solid #f5e6d3 !important;
    }

    .solutions-table td {
        display: block;
        width: 100% !important;
        padding: 8px 0;
        text-align: center;
        border-bottom: none;
    }

    .solutions-table td:first-child {
        font-size: 15px;
        font-weight: bold;
        color: #ffffff;
        border-bottom: 1px dashed rgba(245, 230, 211, 0.2);
        padding-bottom: 10px;
    }

    .solutions-table td:nth-child(2) {
        padding: 10px 0;
    }

    .solutions-table td strong {
        display: inline-block;
    }

    .solutions-table td:last-child {
        padding-top: 5px;
    }

    .instagram-btn {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 10px 0;
        font-size: 14px;
    }
}