* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fefefe;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.7rem 0;
    background: white;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 600;
    color: #4a5568 !important;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: #10b981 !important;
    transform: translateY(-2px);
}

.btn-primary-custom {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-outline-custom {
    border: 2px solid #10b981;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    color: #10b981;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.search-box {
    background: white;
    border-radius: 60px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.search-box input {
    border: none;
    padding: 15px 20px;
    border-radius: 60px;
    font-size: 1rem;
    height: 100%;
    line-height: 1.5;
}

.search-box input:focus {
    outline: none;
    box-shadow: none;
}

.search-box button {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    height: 100%;
}

.hero-image {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: #10b981;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    transform: scale(1.1);
}

.category-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Restaurant Card */
.restaurant-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
    position: relative;
}

.restaurant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.restaurant-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.restaurant-card:hover .restaurant-img img {
    transform: scale(1.1);
}

.restaurant-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hygiene-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.restaurant-info {
    padding: 20px;
}

.restaurant-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.restaurant-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #6c757d;
}

.restaurant-meta i {
    color: #10b981;
    margin-right: 5px;
}

.price-comparison {
    background: #f9fafb;
    padding: 12px;
    border-radius: 12px;
    margin: 12px 0;
}

.menu-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.total-price {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 2px solid #e5e7eb;
    font-weight: 700;
    font-size: 1.1rem;
    color: #10b981;
}

.place-order-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 12px;
    padding: 10px;
    width: 100%;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Step Cards */
.step-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    position: relative;
}

.step-card.active-step {
    border: 2px solid #10b981;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    transform: scale(1.02);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 20px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f3f4f6;
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: #10b981;
    color: white;
}

/* App Download Section */
.app-download {
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 30px;
    padding: 60px;
    color: white;
    margin: 60px 0;
}

/* Progress Bar */
.progress-container {
    margin: 30px 0;
    text-align: center;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e5e7eb;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: white;
    flex: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: #e5e7eb;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: #10b981;
    color: white;
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.2);
}

.step.completed .step-circle {
    background: #10b981;
    color: white;
}

.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #6c757d;
}

.step.active .step-label {
    color: #10b981;
    font-weight: 700;
}

/* Modal Styles */
.order-modal .modal-content {
    border-radius: 20px;
    border: none;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #a0a0a0;
    padding: 60px 0 30px;
    margin-top: 20px;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #10b981;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #10b981;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .app-download {
        padding: 30px;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .progress-steps::before {
        display: none;
    }
    
    .search-box .row {
        flex-direction: column;
    }
    
    .search-box .col-9, .search-box .col-3 {
        width: 100%;
    }
    
    .search-box button {
        margin-top: 10px;
    }
}

.bg-light {
    background-color: #f9fafb !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.text-white {
    color: white !important;
}