/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

/* Touch-friendly interactions */
button, .btn-primary, .btn-secondary, .brand-link, .nav-link {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* High-DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-dashboard {
        border: 0.5px solid rgba(255, 255, 255, 0.3);
    }
    
    .capability-card, .brand-card {
        border: 0.5px solid rgba(0, 0, 0, 0.04);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 45px;
    width: 45px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.2);
}

.logo-text h2 {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.logo-text .tagline {
    font-size: 0.8rem;
    color: #666;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e74c3c;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e74c3c;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 140px;
    color: white;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: #ffd700;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e74c3c;
}

.btn-primary:hover {
    background: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-dashboard {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    display: block !important;
}

.dashboard-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}

.dashboard-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #27ae60;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27ae60;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.metrics-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.metric-icon.delivery::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M19 7h-3V4H4v10h2a3 3 0 0 0 6 0h4a3 3 0 0 0 6 0h1v-4l-3-3zM9 17a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm10 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2z"/></svg>') no-repeat center;
    background-size: contain;
}

.metric-icon.efficiency::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>') no-repeat center;
    background-size: contain;
}

.metric-icon.satisfaction::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg>') no-repeat center;
    background-size: contain;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.metric-label {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.performance-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.performance-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
}

.performance-item span:first-child {
    min-width: 120px;
}

.performance-item span:last-child {
    min-width: 40px;
    text-align: right;
    font-weight: 600;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(44, 62, 80, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 4px;
    transition: width 2s ease-out;
}

.hero-overlay {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.feature-badge {
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
    border-left: 4px solid #e74c3c;
}

/* Stats Section */
.stats {
    background: #2c3e50;
    color: white;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Brands Section */
.brands {
    padding: 6rem 0;
    background: #f8f9fa;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.brand-card.featured {
    border: 3px solid #e74c3c;
}

.brand-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-image {
    transform: scale(1.05);
}

.brand-icon {
    font-size: 4rem;
    z-index: 2;
    position: relative;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: brandFloat 3s ease-in-out infinite;
}

.dalchini-logo {
    width: 120px;
    height: auto;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.3));
    animation: brandFloat 3s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.brand-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 0;
}

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

.brand-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.overlay-logo {
    width: 80px;
    height: auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.brand-link:hover .overlay-logo {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

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

.brand-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 50%, white 2px, transparent 2px),
        radial-gradient(circle at 80% 50%, white 2px, transparent 2px),
        radial-gradient(circle at 40% 20%, white 1px, transparent 1px),
        radial-gradient(circle at 60% 80%, white 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 40px 40px, 50px 50px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 60px 60px, -80px 80px, 40px -40px, -50px 50px; }
}

/* Cuisine-specific backgrounds */
.dalchini-bg {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ff6b35);
}

.bella-bg {
    background: linear-gradient(135deg, #27ae60, #ffffff, #e74c3c);
}

.dragon-bg {
    background: linear-gradient(135deg, #e74c3c, #f39c12, #e74c3c);
}

.casa-bg {
    background: linear-gradient(135deg, #27ae60, #ffffff, #e74c3c, #f39c12);
    background-size: 100% 300%;
    animation: mexicanFlag 4s ease-in-out infinite;
}

@keyframes mexicanFlag {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
}

.brand-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.brand-status.active {
    background: #27ae60;
    color: white;
}

.brand-status.coming {
    background: #f39c12;
    color: white;
}

.delivery-time {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(39, 174, 96, 0.95);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    z-index: 3;
}

.popular-items {
    margin-bottom: 1.5rem;
}

.popular-items h4 {
    font-size: 0.9rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.item-tag {
    background: #e8f5e8;
    color: #27ae60;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
    display: inline-block;
}

.brand-metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.metric {
    font-size: 0.8rem;
    color: #666;
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border-left: 3px solid #e74c3c;
}

.delivery-platforms {
    margin-bottom: 1.5rem;
}

.platform {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.brand-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.brand-link:hover {
    transform: translateY(-5px);
}

.brand-link:hover .brand-card {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.brand-cta {
    margin-top: 1rem;
    text-align: center;
}

.cta-text {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.brand-link:hover .cta-text {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.brand-content {
    padding: 2rem;
}

.brand-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.brand-type {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.brand-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.brand-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.brand-btn {
    background: #e74c3c;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.brand-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.brand-btn.disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

.brand-btn.disabled:hover {
    background: #bdc3c7;
    transform: none;
}

.coming-soon {
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.what-we-do, .why-choose {
    margin: 2rem 0 1.5rem 0;
}

.what-we-do h3, .why-choose h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-left: 4px solid #e74c3c;
    padding-left: 1rem;
}

.vision-statement {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.vision-statement p {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-style: italic;
    line-height: 1.6;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature i {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    margin: 0;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}





/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: 50%;
    filter: brightness(1.2);
    background: rgba(255, 255, 255, 0.1);
    padding: 2px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #e74c3c;
    margin: 0;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e74c3c;
    transform: translateY(-2px);
}

.social-icon.disabled {
    width: 40px;
    height: 40px;
    background: #5a6c7d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #95a5a6;
    cursor: not-allowed;
    opacity: 0.6;
    transition: none;
}

.social-icon.disabled:hover {
    background: #5a6c7d;
    transform: none;
    opacity: 0.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* High-Resolution Mobile Optimization (iPhone 14 Pro Max and similar) */
@media (max-width: 430px) and (min-height: 900px) {
    .hero {
        padding-top: 120px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-dashboard {
        height: auto;
        min-height: 350px;
        padding: 1.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .metric-card {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brand-card {
        margin: 0;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .capability-card {
        padding: 2rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .franchise-highlight {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .benefit-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-content {
        padding: 1rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        min-height: 48px;
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-icon {
        font-size: 3rem;
    }
    
    .dalchini-logo {
        width: 100px;
        padding: 0.8rem;
    }
    
    .brand-image {
        height: 200px;
    }
    
    .brand-image {
        height: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-dashboard {
        padding: 1rem;
    }
    
    .dashboard-header h3 {
        font-size: 1.1rem;
    }
    
    .metric-number {
        font-size: 1.4rem;
    }
    
    .performance-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .performance-item span:first-child,
    .performance-item span:last-child {
        min-width: auto;
    }
    
    .feature-badge {
        width: 90%;
        text-align: center;
    }
    
    .brand-icon {
        font-size: 2.5rem;
    }
    
    .dalchini-logo {
        width: 80px;
        padding: 0.6rem;
    }
    
    .overlay-logo {
        width: 60px;
        padding: 0.6rem;
    }
    
    .brand-image {
        height: 180px;
    }
    
    .delivery-time,
    .brand-status {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
    
    .logo-img {
        height: 38px;
        width: 38px;
    }
    
    .logo-text h2 {
        font-size: 1.5rem;
    }
    
    .logo-text .tagline {
        font-size: 0.7rem;
    }
    
    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-logo-img {
        height: 32px;
        width: 32px;
    }
}
    
    .hero-overlay {
        position: static;
        margin-top: 1rem;
        align-items: center;
        transform: none;
        flex-direction: column;
    }
    
    .hero-dashboard {
        padding: 1.5rem;
        height: auto;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .metric-card {
        padding: 1rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Kitchen Capabilities Styles */
.capabilities {
    padding: 100px 0;
    background: #f5f7fa;
}

.capabilities .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.capabilities .section-header h2 {
    color: #4a5568;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.capabilities .section-header p {
    color: #718096;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 0 auto;
    max-width: 1200px;
}

/* Layout matching the image: 3 cards on top, 1 centered below */
@media (min-width: 768px) {
    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1000px;
    }
    
    .capability-card:nth-child(4) {
        grid-column: 2 / 3;
        justify-self: center;
    }
}

@media (min-width: 1024px) {
    .capabilities-grid {
        gap: 2.5rem;
    }
}

.capability-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.capability-icon {
    width: 80px;
    height: 80px;
    background: #D73527;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(215, 53, 39, 0.3);
}

.capability-card h3 {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.capability-card p {
    color: #718096;
    line-height: 1.7;
    font-size: 1rem;
}

.kitchen-features {
    margin-top: 5rem;
}

.feature-highlight {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-highlight h3 {
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 600;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    padding: 1.5rem;
    background: #f5f7fa;
    border-radius: 12px;
    border-left: 4px solid #D73527;
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateX(4px);
}

.feature-item strong {
    color: #4a5568;
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

/* Franchise Highlight Styles */
.franchise-highlight {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.franchise-highlight h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.franchise-highlight p {
    margin-bottom: 1.5rem;
    color: white;
    opacity: 1;
}

.franchise-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.benefit-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.benefit-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Technology Section Styles */
.technology {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.technology .section-header h2,
.technology .section-header p {
    color: white;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.tech-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.tech-feature h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.tech-feature p {
    opacity: 0.9;
    line-height: 1.6;
}

.tech-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-stat {
    text-align: center;
}

.tech-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.tech-stat .stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Capabilities */
@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-highlight {
        padding: 1.5rem;
    }
    
    .franchise-highlight {
        padding: 1.5rem;
    }
    
    .franchise-benefits {
        justify-content: center;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .tech-stat .stat-number {
        font-size: 2rem;
    }
}

/* Catering Services Section */
.catering {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.catering-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.catering-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.catering-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.catering-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.catering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.15);
    border-color: #e74c3c;
}

.catering-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.catering-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.catering-card > p {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.catering-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.catering-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.catering-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.catering-capacity {
    text-align: center;
    padding: 0.8rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 8px;
    font-weight: 500;
}

.catering-offerings {
    margin: 4rem 0;
}

.catering-offerings h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.menu-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.menu-option {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.menu-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.menu-option.coming-soon {
    opacity: 0.5;
    background: #f5f5f5;
}

.menu-option.coming-soon:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    cursor: not-allowed;
}

.menu-option.coming-soon h4 {
    color: #999;
}

.menu-option.coming-soon p {
    color: #999;
}

.menu-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.menu-option.coming-soon .menu-icon {
    filter: grayscale(100%);
    opacity: 0.6;
}

.menu-option h4 {
    color: #e74c3c;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.menu-option p {
    color: #666;
    line-height: 1.6;
}

.catering-benefits {
    margin: 4rem 0;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.catering-benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-item i {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.benefit-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.catering-packages {
    margin: 4rem 0;
}

.catering-packages h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #e74c3c;
}

.package-card.featured {
    border-color: #e74c3c;
}

.package-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.package-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 2rem;
    text-align: center;
}

.package-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
}

.package-includes {
    list-style: none;
    padding: 2rem;
}

.package-includes li {
    padding: 0.6rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.package-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.package-includes li:last-child {
    border-bottom: none;
}

.package-note {
    text-align: center;
    padding: 1rem 2rem 2rem;
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

.catering-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 20px;
    text-align: center;
    color: white;
}

.catering-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.catering-cta > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn-primary {
    background: white;
    color: #e74c3c;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #e74c3c;
}

.catering-note {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Catering Responsive Styles */
@media (max-width: 768px) {
    .catering-types {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .catering-benefits {
        padding: 2rem 1.5rem;
    }
    
    .catering-cta {
        padding: 2rem 1.5rem;
    }
    
    .catering-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
