/* ==========================================================================
   NIKKA MURTHAL DESI PARANTHA AND SNACKS COMPANY - STYLESHEET
   Location: Sector 38C, Chandigarh
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #0a0c10;
    --bg-surface: #11141b;
    --bg-card: rgba(23, 27, 36, 0.75);
    --bg-card-hover: rgba(32, 38, 51, 0.85);
    
    --accent-amber: #f59e0b;
    --accent-gold: #fbbf24;
    --accent-gold-glow: rgba(245, 158, 11, 0.35);
    --accent-crimson: #ef4444;
    --accent-green: #10b981;
    --whatsapp-green: #25d366;
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --glass-bg: rgba(17, 20, 27, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(245, 158, 11, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.25);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-amber { color: var(--accent-amber) !important; }
.text-green { color: var(--accent-green) !important; }
.text-crimson { color: var(--accent-crimson) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-white { color: #ffffff !important; }
.text-center { text-align: center; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 36px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    color: #000000;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #fde047 0%, var(--accent-gold) 100%);
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    color: #000000;
    padding: 16px 32px;
    font-size: 1.05rem;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-amber);
    transform: translateY(-3px);
}

.btn-hero-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-amber);
    padding: 16px 28px;
    font-size: 1rem;
}

.btn-hero-outline:hover {
    background: rgba(245, 158, 11, 0.15);
    transform: translateY(-2px);
}

.btn-whatsapp-checkout {
    background: var(--whatsapp-green);
    color: #ffffff;
    padding: 16px 28px;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-checkout:hover {
    background: #22c55e;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.btn-full { width: 100%; }

.btn-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-icon:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: var(--accent-amber);
    color: var(--accent-gold);
}

/* Glassmorphism Card Base */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
}

/* TOP ANNOUNCEMENT BAR */
.announcement-bar {
    background: linear-gradient(90deg, #b91c1c 0%, #991b1b 50%, #7f1d1d 100%);
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.badge-live {
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-gold);
}

.coupon-code {
    background: #ffffff;
    color: #b91c1c;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
}

.announcement-link {
    color: var(--accent-gold);
    font-weight: 700;
    text-decoration: underline;
}

.announcement-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.insta-announce-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.insta-announce-link:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* NAVBAR */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-wrap {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.logo-icon { width: 26px; height: 26px; }

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.brand-highlight { color: var(--accent-gold); }

.brand-subtext {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--accent-amber);
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-amber);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-trigger { position: relative; }

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent-crimson);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 100px 0 120px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) saturate(1.2);
    transform: scale(1.05);
    animation: zoomSlow 20s infinite alternate linear;
}

@keyframes zoomSlow {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 12, 16, 0.7) 0%,
        rgba(10, 12, 16, 0.85) 60%,
        var(--bg-dark) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 820px;
}

.hero-top-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.6rem;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-feature-tags {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
}

.feature-tag i { color: var(--accent-green); }

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-avatars {
    display: flex;
}

.rating-avatars .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--accent-amber);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.rating-avatars .avatar:first-child { margin-left: 0; }

.rating-info .stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--accent-gold);
}

.star-filled { fill: var(--accent-gold); color: var(--accent-gold); }

.rating-subtext {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* STATS STRIP */
.stats-strip {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-md);
}

.stat-card:hover {
    border-color: var(--accent-amber);
    transform: translateY(-4px);
}

.stat-icon-box {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ABOUT SECTION */
.about-section {
    padding: 60px 0 100px;
}

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

.about-image-wrapper {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
    height: 480px;
    width: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: linear-gradient(135deg, var(--accent-amber) 0%, #b45309 100%);
    color: #ffffff;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid var(--accent-gold);
}

.exp-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    display: block;
    line-height: 1.2;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
}

.paragraph {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.about-highlights-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-item h4 {
    font-size: 1.05rem;
    color: var(--text-primary);
}

.about-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mt-4 { margin-top: 24px; }

/* MENU SECTION */
.menu-section {
    padding: 90px 0;
    background: rgba(17, 20, 27, 0.4);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.menu-controls {
    margin-bottom: 40px;
}

.search-box-wrapper {
    position: relative;
    max-width: 580px;
    margin: 0 auto 20px;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-input {
    width: 100%;
    padding: 16px 48px 16px 52px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.search-input:focus {
    border-color: var(--accent-amber);
    box-shadow: 0 0 20px var(--accent-gold-glow);
}

.search-clear-btn {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    display: none;
}

/* Dietary Filter Bar */
.dietary-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.diet-btn {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.diet-btn.active {
    background: rgba(245, 158, 11, 0.2);
    border-color: var(--accent-amber);
    color: var(--accent-gold);
}

.diet-veg.active {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.diet-nonveg.active {
    background: rgba(239, 68, 68, 0.2);
    border-color: var(--accent-crimson);
    color: var(--accent-crimson);
}

.category-tabs-scroll {
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    min-width: max-content;
}

.tab-btn {
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover, .tab-btn.active {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    color: #000000;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* MENU GRID & CARDS */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 24px;
}

.food-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.food-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-amber);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.food-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.food-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.food-card:hover .food-img {
    transform: scale(1.08);
}

.food-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    color: var(--accent-gold);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid var(--accent-amber);
}

.veg-icon-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.veg-icon-badge.is-veg { border: 2px solid #16a34a; }
.veg-icon-badge.is-nonveg { border: 2px solid #ef4444; }

.veg-dot.dot-veg {
    width: 10px;
    height: 10px;
    background: #16a34a;
    border-radius: 50%;
}

.veg-dot.dot-nonveg {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
}

.food-details {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.food-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.food-name {
    font-size: 1.15rem;
    font-weight: 700;
}

.food-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.food-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
    flex-grow: 1;
}

.food-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.diet-label {
    font-size: 0.82rem;
    font-weight: 700;
}

.add-cart-btn {
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--accent-amber);
    color: var(--accent-gold);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.add-cart-btn:hover {
    background: var(--accent-amber);
    color: #000000;
}

/* HIGHWAY CAR-DINE SECTION */
.cardine-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #151a24 100%);
}

.cardine-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.cardine-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    padding: 18px 24px;
    border-radius: var(--radius-md);
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-detail h4 { font-size: 1.1rem; color: var(--text-primary); }
.step-detail p { font-size: 0.9rem; color: var(--text-muted); }

.cardine-preview-card .inner-preview {
    padding: 32px;
    text-align: center;
}

.preview-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-amber);
    margin-bottom: 20px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}

.car-badge-icon {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-full);
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.preview-image-box {
    margin-top: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 220px;
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESERVATION SECTION */
.reservation-section {
    padding: 90px 0;
    background: rgba(17, 20, 27, 0.3);
}

.reservation-box {
    padding: 50px;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.res-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: var(--text-secondary);
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.form-group.col { flex: 1; }
.res-form .form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 12, 16, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.98rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--accent-amber);
    box-shadow: 0 0 15px var(--accent-gold-glow);
}

/* DIRECT CALL CARD (REPLACED ORDER FORM) */
.direct-call-card {
    background: rgba(17, 20, 27, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 18px;
    box-shadow: var(--glass-shadow);
}

.direct-call-badge {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    border: 2px solid var(--accent-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    box-shadow: 0 0 25px var(--accent-gold-glow);
}

.direct-call-badge i {
    width: 32px;
    height: 32px;
}

.direct-call-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-primary);
}

.direct-call-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 380px;
    line-height: 1.6;
}

.call-number-display {
    background: rgba(10, 12, 16, 0.75);
    border: 1px dashed var(--accent-amber);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.call-number-display .call-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--accent-amber);
}

.call-number-link {
    font-size: 1.65rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.call-number-link:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 12px var(--accent-gold-glow);
}

.direct-call-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 6px;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff !important;
    border: none;
    font-weight: 700;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
    color: #ffffff !important;
}



/* REVIEWS SECTION */
.reviews-section {
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.review-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-amber) 0%, #b45309 100%);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.reviewer-name { font-size: 1.1rem; }
.reviewer-meta { font-size: 0.8rem; color: var(--text-muted); display: block; }
.quote-mark { font-size: 3rem; color: rgba(245, 158, 11, 0.25); line-height: 0.8; }
.review-text { font-size: 0.98rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.review-stars { font-size: 1.1rem; }

/* FOOTER */
.site-footer {
    background: #06080b;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo { margin-bottom: 16px; }
.footer-desc { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 24px; max-width: 320px; }

.social-links { display: flex; gap: 12px; }
.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--accent-amber);
    color: #000;
}

.footer-title { font-size: 1.15rem; margin-bottom: 20px; color: var(--accent-gold); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-secondary); font-size: 0.92rem; }
.footer-links a:hover { color: var(--accent-gold); padding-left: 4px; }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; color: var(--text-secondary); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.developer-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.developer-tag .heart-icon {
    display: inline-block;
    color: #ef4444;
}

.developer-name {
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
}

.developer-name:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* CART DRAWER MODAL */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background: #0f1218;
    z-index: 1001;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--glass-border);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
}

.close-btn:hover { color: var(--accent-gold); }

.cart-body {
    padding: 24px;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    padding: 14px;
    border-radius: var(--radius-md);
}

.cart-item-info h5 { font-size: 0.98rem; margin-bottom: 4px; }
.cart-item-price { color: var(--accent-gold); font-weight: 700; font-size: 0.92rem; }

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-sm);
    padding: 4px 8px;
}

.qty-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 800;
    width: 24px;
    height: 24px;
}

.qty-btn:hover { color: var(--accent-gold); }

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--glass-border);
    background: #0b0d12;
}

.coupon-section { margin-bottom: 18px; }
.input-group { display: flex; gap: 8px; }
.coupon-input { flex-grow: 1; padding: 10px 14px; }
.coupon-message { font-size: 0.8rem; margin-top: 6px; }

.cart-summary { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; font-size: 0.95rem; }
.summary-row { display: flex; justify-content: space-between; color: var(--text-secondary); }
.total-row { font-size: 1.2rem; font-weight: 800; color: var(--text-primary); padding-top: 8px; border-top: 1px solid rgba(255, 255, 255, 0.1); }

/* TOAST NOTIFICATIONS */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #1e2533;
    color: var(--text-primary);
    border: 1px solid var(--accent-amber);
    padding: 14px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastIn 0.3s ease forwards;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .about-grid, .cardine-grid, .reservation-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #0a0c10;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: 0.3s ease;
    }
    
    .nav-menu.active { left: 0; }
    .mobile-toggle { display: block; }
    .hero-title { font-size: 2.3rem; }
    .form-row { grid-template-columns: 1fr; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-btn { display: none; }
    .announcement-content { justify-content: center; text-align: center; gap: 8px; }
    .announcement-actions { gap: 12px; }
}
