:root {
    --primary: #f59e0b;
    --transport-color: #3b82f6; /* Blue for transport */
    --food-color: #ef4444; /* Red for food */
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --gray: #94a3b8;
    --glass-bg: rgba(15, 23, 42, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Mukta', sans-serif; /* Great for Marathi and English */
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 70px; /* Space for bottom action bar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

.section-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
}

.gradient-text {
    background: linear-gradient(to right, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel, .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.25rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    background: var(--primary);
    color: var(--darker);
}
.btn-primary:hover { transform: scale(1.05); filter: brightness(1.1); }

/* Bottom Action Bar (Mobile Only) */
.bottom-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    z-index: 2000;
    padding: 0.5rem;
    gap: 0.5rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.call-btn { background: #3b82f6; color: white; }
.wa-btn { background: #25D366; color: white; }

@media (min-width: 769px) {
    .bottom-action-bar { display: none; }
    body { padding-bottom: 0; }
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo { display: flex; flex-direction: row !important; align-items: center; gap: 0.75rem; text-decoration: none; cursor: pointer; flex-wrap: nowrap; }
.nav-logo-img { object-fit: contain; background: white; border-radius: 0.3rem; padding: 2px; }
.logo-text-wrapper { display: flex; flex-direction: column; line-height: 1.1; justify-content: center; }
.brand-text { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 800; }
.brand-text .highlight { color: var(--primary); }
.location-tag { font-size: 0.75rem; color: var(--gray); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.location-tag i { color: #ef4444; }

.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }

.mobile-menu-btn { display: none; cursor: pointer; width: 30px; height: 20px; position: relative; }
.hamburger, .hamburger::before, .hamburger::after {
    width: 100%; height: 2px; background: white; position: absolute; transition: 0.3s;
}
.hamburger { top: 50%; transform: translateY(-50%); }
.hamburger::before { content: ''; top: -8px; }
.hamburger::after { content: ''; bottom: -8px; }

.mobile-menu-btn.active .hamburger { background: transparent; }
.mobile-menu-btn.active .hamburger::before { top: 0; transform: rotate(45deg); }
.mobile-menu-btn.active .hamburger::after { bottom: 0; transform: rotate(-45deg); }

/* Hero */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.hero-bg-slider { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg-slider .slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.5s ease-in-out;
}
.hero-bg-slider .slide.active { opacity: 1; }

.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(2,6,23,0.95) 0%, rgba(2,6,23,0.6) 100%);
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 900px; width: 100%; padding: 0 1.5rem;
}

.punekar-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.1); padding: 0.5rem 1.5rem;
    border-radius: 2rem; font-weight: 600; color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3); margin-bottom: 1.5rem;
}

.main-title { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.2; margin-bottom: 1rem; }
.hero-text { font-size: clamp(1rem, 2vw, 1.25rem); color: #cbd5e1; margin-bottom: 3rem; max-width: 600px; margin-inline: auto; }

/* Dual CTA */
.dual-cta-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

.cta-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem; padding: 1.5rem 1rem; display: flex; flex-direction: column;
    align-items: center; gap: 1rem; transition: var(--transition); backdrop-filter: blur(10px);
}

.cta-card:hover { transform: translateY(-5px); }
.transport-cta:hover { background: rgba(59, 130, 246, 0.15); border-color: var(--transport-color); }
.food-cta:hover { background: rgba(239, 68, 68, 0.15); border-color: var(--food-color); }

.cta-icon {
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 1.8rem;
}
.transport-cta .cta-icon { background: rgba(59, 130, 246, 0.2); color: var(--transport-color); }
.food-cta .cta-icon { background: rgba(239, 68, 68, 0.2); color: var(--food-color); }

.cta-text h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.cta-text p { font-size: 0.85rem; color: #94a3b8; }

/* About Section */
.about-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3rem; align-items: center;
}

.about-content h2 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.proprietor-tag { color: var(--primary); font-weight: 600; margin-bottom: 1.5rem; font-size: 0.9rem; }
.lead-text { font-size: 1.2rem; color: white; font-weight: 500; margin-bottom: 1rem; }
.about-content p { color: #cbd5e1; margin-bottom: 1rem; }

.image-composition { position: relative; height: 400px; }
.main-img { width: 80%; height: 80%; object-fit: cover; border-radius: 1rem; position: absolute; right: 0; top: 0; z-index: 1; border: 4px solid var(--darker); }
.sub-img { position: absolute; border-radius: 1rem; border: 4px solid var(--darker); object-fit: cover; z-index: 2; }
.img-1 { width: 50%; height: 50%; left: 0; bottom: 10%; }
.img-2 { width: 40%; height: 40%; right: 10%; bottom: -5%; }

/* Business Sections (Transport & Food) */
.business-section { position: relative; }
.business-header { text-align: center; margin-bottom: 4rem; }
.icon-wrap { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 1rem; }

.transport-theme .icon-wrap { background: rgba(59, 130, 246, 0.1); color: var(--transport-color); }
.transport-theme h2 { color: var(--transport-color); font-size: 2.5rem; }

.food-theme .icon-wrap { background: rgba(239, 68, 68, 0.1); color: var(--food-color); }
.food-theme h2 { color: var(--food-color); font-size: 2.5rem; }

.business-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.service-details { padding: 2.5rem; }
.service-details h3 { font-size: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.5rem; }

.detailed-list li { margin-bottom: 1rem; display: flex; gap: 1rem; align-items: flex-start; }
.transport-theme .detailed-list i { color: var(--transport-color); margin-top: 4px; }
.food-theme .detailed-list i { color: var(--food-color); margin-top: 4px; }

.transport-grid, .food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.lightbox-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.lightbox-img:hover {
    transform: scale(1.05);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 1rem;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

@keyframes zoomIn {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.feature-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 2rem; border-radius: 1rem; text-align: center; }
.f-icon { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }

/* Removed Masonry Gallery */

/* Contact Section */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; padding: 0; overflow: hidden; }
.contact-details { padding: 4rem; }
.info-blocks { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.info-block { display: flex; gap: 1rem; align-items: flex-start; }
.ib-icon { width: 45px; height: 45px; background: rgba(245,158,11,0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.ib-text strong { display: block; font-size: 1.1rem; margin-bottom: 0.2rem; }
.ib-text p, .ib-text a { color: #cbd5e1; }

.contact-map { background: rgba(0,0,0,0.2); padding: 4rem; display: flex; align-items: center; justify-content: center; }
.map-card { background: rgba(255,255,255,0.05); padding: 3rem; border-radius: 1rem; text-align: center; width: 100%; border: 1px solid rgba(255,255,255,0.1); }
.map-icon { font-size: 3rem; color: #ef4444; margin-bottom: 1rem; }
.qr-container { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }
.qr-container img { width: 100px; height: 100px; border-radius: 0.5rem; border: 2px solid rgba(255,255,255,0.2); background: white; padding: 4px; }

/* Footer */
footer { background: #020617; padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 2rem; }
.footer-brand h2 { font-size: 1.8rem; }
.footer-brand span { color: var(--primary); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 45px; height: 45px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: 0.3s; }
.footer-social a:hover { background: var(--primary); color: var(--darker); transform: translateY(-3px); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; color: var(--gray); font-size: 0.9rem; }

/* Animations */
@keyframes scrollVert { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

/* Mobile Responsiveness & Ultra Mobile-Friendly Adjustments */
@media (max-width: 992px) {
    .about-wrapper { grid-template-columns: 1fr; padding: 2rem; }
    .image-composition { height: 300px; margin-top: 2rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-details, .contact-map { padding: 2rem; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px);
        background: rgba(2,6,23,0.98); backdrop-filter: blur(10px);
        flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 3rem;
        gap: 2rem; transition: 0.3s ease;
    }
    .nav-links.active { left: 0; }
    .nav-links a { font-size: 1.5rem; }
    .nav-contact { display: none; }
    .mobile-menu-btn { display: block; }
    
    .dual-cta-container { grid-template-columns: 1fr; }
    .business-grid { grid-template-columns: 1fr; gap: 2rem; }
    .reverse-mobile .service-details { order: -1; } /* Text first on mobile for Food */
    
    .service-details { padding: 1.5rem; }
    .business-header { margin-bottom: 2rem; }
    .business-header h2 { font-size: 2rem; }
    
    .transport-grid, .food-grid { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); }
    .lightbox-img { height: 100px; }
    
    .nav-logo-img { width: 45px; height: 45px; }
    .brand-text { font-size: 1.3rem; }
    .location-tag { font-size: 0.7rem; }
    
    .footer-top { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .main-title { font-size: 2.2rem; }
    .hero-text { font-size: 0.95rem; }
    .nav-logo-img { width: 40px; height: 40px; }
    .brand-text { font-size: 1.1rem; }
    .logo { gap: 0.5rem; }
}
