:root {
    --im-primary: #be1e2d; /* Logo Red */
    --im-secondary: #003399; /* Logo Blue */
    --im-accent: #f8f9fa;
    --im-text: #1a1a1a;
    --im-text-light: #6c757d;
    --im-white: #ffffff;
    --im-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --im-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --im-radius: 20px;
    --im-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Base resets with prefix scope to avoid WP conflicts if possible */
.im-site-wrapper {
    font-family: 'Outfit', sans-serif;
    color: var(--im-text);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #fff;
}

.im-site-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Typography */
.im-h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.im-h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.2rem; }
.im-h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.im-p { font-size: 1.1rem; color: var(--im-text-light); margin-bottom: 1.5rem; }

/* Layout */
.im-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.im-section {
    padding: 50px 0;
    position: relative;
}

/* Header */
.im-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--im-transition);
}

.im-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.im-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.im-logo img {
    height: 80px;
    width: auto;
    transition: var(--im-transition);
}

.im-header.scrolled .im-logo img {
    height: 65px;
}

.im-nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

@media (max-width: 992px) {
    .im-nav-links { display: none; }
    .im-btn-phone {justify-content: center;}
    .im-feature-row {margin-bottom: 0 !important;}
    #im-contact {padding-top: 0;}

}

.im-nav-link {
    text-decoration: none;
    color: var(--im-text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--im-transition);
    opacity: 0.8;
}

.im-nav-link:hover {
    opacity: 1;
    color: var(--im-primary);
}

.im-btn-phone {
    background: var(--im-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(190, 30, 45, 0.25);
    transition: var(--im-transition);
}

.im-btn-phone:hover {
    background: var(--im-secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 51, 153, 0.3);
}

/* Hero */
.im-hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.im-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .im-hero-grid { grid-template-columns: 1fr; text-align: center; }
}

.im-hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(190, 30, 45, 0.1);
    color: var(--im-primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.im-hero-visual {
    position: relative;
    z-index: 1;
}

.im-hero-img-wrap {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--im-shadow-lg);
    transform: rotate(2deg);
    transition: var(--im-transition);
}

.im-hero-img-wrap:hover {
    transform: rotate(0deg) scale(1.02);
}

.im-hero-img-wrap img {
    width: 100%;
    display: block;
}

.im-blob {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(190, 30, 45, 0.05) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

/* Info Cards */
.im-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.im-card {
    background: var(--im-white);
    padding: 45px 35px;
    border-radius: var(--im-radius);
    box-shadow: var(--im-shadow);
    transition: var(--im-transition);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
}

.im-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--im-shadow-lg);
    border-color: rgba(190, 30, 45, 0.1);
}

.im-card-icon {
    width: 80px;
    height: 80px;
    background: #fff5f5;
    color: var(--im-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: var(--im-transition);
}

.im-card:hover .im-card-icon {
    background: var(--im-primary);
    color: white;
    transform: rotate(10deg);
}

/* Features */
.im-feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.im-feature-row:nth-child(even) { flex-direction: row-reverse; }

.im-feature-visual {
    flex: 1;
    position: relative;
}

.im-feature-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--im-shadow-lg);
}

.im-feature-text { flex: 1; }

@media (max-width: 992px) {
    .im-feature-row, .im-feature-row:nth-child(even) { flex-direction: column; gap: 40px; }
}

/* Delivery Section */
.im-delivery {
    background: #0f172a;
    color: white;
    border-radius: 50px;
    padding: 80px 50px;
    margin: 50px 0;
    overflow: hidden;
    position: relative;
}

.im-delivery-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.im-delivery-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 576px) {
    .im-delivery-btns { flex-direction: column; }
}

.im-btn-delivery {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--im-transition);
}

.im-btn-efood { background: #ffffff; color: #e31b23; border: 1px solid #eee; }
.im-btn-efood:hover { background: #fdfdfd; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

.im-btn-delivery:hover { transform: scale(1.05); filter: brightness(1.1); }

/* Map */
.im-map-frame {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--im-shadow-lg);
    border: 8px solid white;
}

/* Footer */
.im-footer {
    background: #f8f9fa;
    padding: 80px 0 10px;
}

.im-footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 60px;
}

@media (max-width: 768px) {
    .im-footer-grid { grid-template-columns: 1fr; text-align: center; padding:20px 0; }
}

.im-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .im-social { justify-content: center; }
}

.im-social-link {
    width: 45px;
    height: 45px;
    background: white;
    box-shadow: var(--im-shadow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--im-text);
    text-decoration: none;
    transition: var(--im-transition);
}

.im-social-link:hover {
    background: var(--im-primary);
    color: white;
    transform: translateY(-5px);
}

/* Responsive Adjustments & Mobile Menu */
.im-mobile-only { display: none; }
.im-header-actions { display: flex; align-items: center; gap: 15px; }

.im-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.im-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--im-text);
    border-radius: 10px;
    transition: var(--im-transition);
}

@media (max-width: 992px) {
    .im-menu-toggle { display: flex; }
    .im-hide-mobile { display: none; }
    .im-mobile-only { display: block; }

    .im-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width:100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: var(--im-transition);
        z-index: 1000;
        display: flex;
        padding: 80px 30px;
    }

    .im-nav-links.active {
        right: 0;
    }

    .im-menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .im-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .im-menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .im-section { padding: 60px 0; }
    .im-h1 { font-size: 2.5rem; }
    .im-h2 { font-size: 2rem; }
}

@media (max-width: 992px) {
    .im-hero { height: auto; padding: 120px 0 60px; }
    .im-hero-grid { grid-template-columns: 1fr; }
    .im-hero-visual { order: -1; margin-bottom: 30px; }
    .im-hero-img-wrap { transform: rotate(0); margin: 0 auto; }
    
    .im-info-grid { grid-template-columns: 1fr; }
    .im-card { padding: 30px 20px; }

    .im-delivery { padding: 40px 20px; border-radius: 30px; }
    .im-delivery-btns { flex-direction: column; width: 100%; }
    .im-btn-delivery { width: 100%; }
    
    .im-map-frame { height: 350px; border-radius: 20px; border-width: 4px; }
    
    .im-footer { padding: 40px 0 20px; }
    .im-footer-grid { gap: 40px; }
}

@media (max-width: 480px) {
    .im-h1 { font-size: 2.2rem; }
    .im-container { padding: 0 20px; }
    .im-hero-tag { font-size: 0.75rem; padding: 6px 15px; }
}

/* Scroll Animation Overlay Fix */
body.menu-open {
    overflow: hidden;
}


/* Scroll Animation Styles */
[data-im-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-im-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

.copyright-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media(max-width:576px){
    .copyright-section {
        flex-direction: column;
        gap: 10px;
    }
    .copyright-section div {
        margin-top:5px;
    }
}

.im-footer-grid {padding-bottom:40px;}


/* Premium Floating Cookie Banner */
.im-cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    transform: translateX(-120%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-radius: 28px;
    padding: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.im-cookie-banner.show {
    transform: translateX(0);
}

.im-cookie-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.im-cookie-icon {
    width: 50px;
    height: 50px;
    background: #fff5f5;
    color: var(--im-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: cookie-float 3s ease-in-out infinite;
}

@keyframes cookie-float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-5px) rotate(10deg); }
}

.im-cookie-content {
    flex: 1;
}

.im-cookie-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--im-text);
    margin-bottom: 8px;
    display: block;
}

.im-cookie-text {
    font-size: 0.95rem;
    color: var(--im-text-light);
    line-height: 1.6;
    margin: 0;
}

.im-cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.im-btn-accept {
    background: var(--im-primary);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--im-transition);
}

.im-btn-decline {
    background: transparent;
    color: var(--im-text-light);
    border: 1px solid #eee;
    padding: 14px 20px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--im-transition);
}

.im-btn-accept:hover {
    background: var(--im-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 51, 153, 0.2);
}

.im-btn-decline:hover {
    background: #f8f9fa;
    color: var(--im-text);
}

@media (max-width: 576px) {
    .im-cookie-banner {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }
}