/* =========================================
   BANKE BIHARI RASOI - PREMIUM CSS
   Modern Indian Restaurant Design
   ========================================= */

   @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

   :root {
       /* Color Palette - Indian Spice Theme */
       --primary-color: #721816;      /* Logo Dark Red */
       --primary-dark: #5a1310;       /* Darker Red */
       --secondary-color: #2C5530;    /* Rich Green */
       --accent-color: #F4A940;       /* Golden Yellow */
       --text-dark: #1A1A1A;          /* Deep Charcoal */
       --text-light: #666666;         /* Medium Gray */
       --bg-light: #FAFAF8;           /* Warm White */
       --bg-white: #FFFFFF;           /* Pure White */
       --border-color: #E8E4DC;       /* Soft Taupe */
       
       /* Typography */
       --font-display: 'Playfair Display', serif;
       --font-accent: 'Poppins', sans-serif;
       --font-body: 'Inter', sans-serif;
       
       /* Spacing */
       --spacing-xs: 0.5rem;
       --spacing-sm: 1rem;
       --spacing-md: 1.5rem;
       --spacing-lg: 2rem;
       --spacing-xl: 3rem;
       --spacing-2xl: 4rem;
       --spacing-3xl: 5rem;
       
       /* Shadows */
       --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
       --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
       --shadow-lg: 0 16px 40px rgba(0,0,0,0.15);
   }
   
   /* =========================================
      GLOBAL STYLES
      ========================================= */
   
   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }
   
   html {
       scroll-behavior: smooth;
   }
   
   body {
       font-family: var(--font-body);
       color: var(--text-dark);
       background-color: var(--bg-light);
       line-height: 1.6;
       overflow-x: hidden;
   }
   
   /* =========================================
      TYPOGRAPHY SYSTEM
      ========================================= */
   
   h1, h2, h3, h4, h5, h6 {
       font-family: var(--font-display);
       font-weight: 700;
       line-height: 1.2;
       color: var(--text-dark);
       margin-bottom: var(--spacing-md);
   }
   
   h1 {
       font-size: 3.5rem;
       letter-spacing: -0.02em;
       font-weight: 800;
   }
   
   h2 {
       font-size: 2.8rem;
       letter-spacing: -0.01em;
   }
   
   h3 {
       font-size: 2rem;
       letter-spacing: -0.01em;
   }
   
   h4 {
       font-size: 1.5rem;
       font-family: var(--font-accent);
       font-weight: 600;
   }
   
   h5 {
       font-size: 1.1rem;
       font-family: var(--font-accent);
       font-weight: 600;
   }
   
   p {
       color: var(--text-light);
       margin-bottom: var(--spacing-md);
       font-size: 1rem;
       line-height: 1.8;
   }
   
   .lead {
       font-size: 1.25rem;
       line-height: 1.8;
       color: var(--text-dark);
       font-weight: 500;
   }
   
   /* =========================================
      NAVIGATION BAR
      ========================================= */
   
   .navbar {
       background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
      
       box-shadow: var(--shadow-md);
       position: fixed;
       width: 100%;
       top: 0;
       z-index: 1000;
   }
   
   .navbar-brand {
       font-family: var(--font-display);
       font-size: 1.5rem;
       letter-spacing: -0.01em;
       color: var(--bg-white) !important;
       font-weight: 700;
       transition: transform 0.3s ease;
   }
   
   .navbar-brand:hover {
       transform: scale(1.05);
   }
   
   .navbar-nav .nav-link {
       color: rgba(255, 255, 255, 0.85) !important;
       font-family: var(--font-accent);
       font-weight: 500;
       font-size: 0.95rem;
       margin-left: var(--spacing-md);
       transition: all 0.3s ease;
       position: relative;
   }
   
   .navbar-nav .nav-link:hover {
       color: var(--accent-color) !important;
   }
   
   .navbar-nav .nav-link.active {
       color: var(--accent-color) !important;
       font-weight: 600;
   }
   
   .navbar-nav .nav-link.active::after {
       content: '';
       position: absolute;
       bottom: -5px;
       left: 0;
       width: 30%;
       height: 3px;
       background: var(--accent-color);
       border-radius: 2px;
   }
   
   @media (max-width: 991px) {
       .navbar-nav .nav-link {
           margin-left: 0;
           padding: var(--spacing-sm) 0;
       }
   }
   
   /* Add padding to body for fixed navbar */
   body {
       padding-top: 80px;
   }
   
   /* =========================================
      HERO SECTION
      ========================================= */
   
   .hero-section {
       background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
       color: var(--bg-white);
       padding: var(--spacing-3xl) 0;
       position: relative;
       overflow: hidden;
   }
   
   .hero-section::before {
       content: '';
       position: absolute;
       top: 0;
       right: 0;
       width: 500px;
       height: 500px;
       background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
       border-radius: 50%;
       pointer-events: none;
   }
   
   .hero-section h1 {
       color: var(--bg-white);
       font-size: 3.5rem;
       margin-bottom: var(--spacing-md);
       animation: slideInUp 0.8s ease-out;
   }
   
   .hero-section > p {
       color: rgba(255, 255, 255, 0.9);
       font-size: 1.2rem;
       margin-bottom: var(--spacing-2xl);
       max-width: 600px;
       animation: slideInUp 0.8s ease-out 0.2s backwards;
   }
   
   .hero-section .btn {
       animation: slideInUp 0.8s ease-out 0.4s backwards;
   }
   
   @keyframes slideInUp {
       from {
           opacity: 0;
           transform: translateY(30px);
       }
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }
   
   /* =========================================
      BUTTONS
      ========================================= */
   
   .btn {
       font-family: var(--font-accent);
       font-weight: 600;
       font-size: 0.95rem;
       padding: var(--spacing-sm) var(--spacing-lg);
       border-radius: 6px;
       transition: all 0.3s ease;
       letter-spacing: 0.3px;
       border: 2px solid transparent;
   }
   
   .btn-primary {
       background-color: var(--primary-color);
       color: var(--bg-white);
       border-color: var(--primary-color);
   }
   
   .btn-primary:hover {
       background-color: var(--primary-dark);
       border-color: var(--primary-dark);
       transform: translateY(-3px);
       box-shadow: var(--shadow-lg);
   }
   
   .btn-outline-light {
       color: var(--bg-white);
       border-color: var(--bg-white);
       border-width: 2px;
   }
   
   .btn-outline-light:hover {
       background-color: var(--accent-color);
       border-color: var(--accent-color);
       color: var(--text-dark);
   }
   
   .btn-outline-primary {
       color: var(--primary-color);
       border-color: var(--primary-color);
       border-width: 2px;
   }
   
   .btn-outline-primary:hover {
       background-color: var(--primary-color);
       color: var(--bg-white);
   }
   
   .btn-light {
       background-color: var(--bg-white);
       color: var(--primary-color);
       border: none;
       font-weight: 700;
   }
   
   .btn-light:hover {
       background-color: var(--accent-color);
       transform: translateY(-3px);
       box-shadow: var(--shadow-lg);
   }
   
   .btn-lg {
       padding: 0.8rem 2rem;
       font-size: 1rem;
   }
   
   /* =========================================
      SECTION HEADING
      ========================================= */
   
   .section-heading {
       text-align: center;
      
       animation: fadeInUp 0.8s ease-out;
   }
   
   .section-heading h2 {
       position: relative;
       display: inline-block;
       padding-bottom: var(--spacing-md);
   }
   
   .section-heading h2::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 50%;
       transform: translateX(-50%);
       width: 80px;
       height: 4px;
       background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
       border-radius: 2px;
   }
   
   .section-heading p {
       font-size: 1.1rem;
       color: var(--text-light);
       margin-top: var(--spacing-md);
       max-width: 500px;
       margin-left: auto;
       margin-right: auto;
   }
   
   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(20px);
       }
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }
   
   /* =========================================
      MENU SECTION / GENERAL SECTIONS
      ========================================= */
   
   .menu-section {
       padding: var(--spacing-3xl) 0;
       background-color: var(--bg-white);
   }
   
   .menu-section:nth-child(even) {
       background-color: var(--bg-light);
   }
   
   .about-section {
       padding: var(--spacing-3xl) 0;
       background-color: var(--bg-white);
   }
   
   /* =========================================
      FOOD CARDS
      ========================================= */
   
   .food-card {
       border: none;
       border-radius: 12px;
       overflow: hidden;
       transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
       box-shadow: var(--shadow-sm);
       height: 100%;
       position: relative;
       display: flex;
       flex-direction: column;
   }
   
   .food-card:hover {
       box-shadow: var(--shadow-lg);
       transform: translateY(-10px);
   }
   
   .food-card .veg-badge {
       position: absolute;
       top: var(--spacing-md);
       right: var(--spacing-md);
       background-color: var(--secondary-color);
       color: var(--bg-white);
       padding: 6px 12px;
       border-radius: 20px;
       font-size: 0.75rem;
       font-weight: 700;
       letter-spacing: 1px;
       z-index: 10;
       box-shadow: var(--shadow-md);
   }
   
   .food-card .card-img-top {
       height: 250px;
       object-fit: cover;
       transition: transform 0.4s ease;
   }
   
   .food-card:hover .card-img-top {
       transform: scale(1.08);
   }
   
   .food-card .card-body {
       padding: var(--spacing-lg);
       display: flex;
       flex-direction: column;
       flex-grow: 1;
   }
   
   .food-card .card-title {
       font-family: var(--font-display);
       font-size: 1.4rem;
       color: var(--text-dark);
       margin-bottom: var(--spacing-sm);
   }
   
   .food-card .card-text {
       color: var(--text-light);
       flex-grow: 1;
       margin-bottom: var(--spacing-md);
   }
   
   .food-card .price {
       font-family: var(--font-display);
       font-size: 1.8rem;
       color: var(--primary-color);
       font-weight: 700;
   }
   
   .card-img-top.img-placeholder {
       display: flex;
       align-items: center;
       justify-content: center;
       background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
       font-size: 4rem;
       color: #ccc;
   }
   
   /* =========================================
      BLOG CARDS
      ========================================= */
   
   .blog-card {
       border: none;
       border-radius: 12px;
       overflow: hidden;
       box-shadow: var(--shadow-sm);
       transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
       height: 100%;
       display: flex;
       flex-direction: column;
   }
   
   .blog-card:hover {
       box-shadow: var(--shadow-lg);
       transform: translateY(-8px);
   }
   
   .blog-card .card-img-top {
       height: 200px;
       object-fit: cover;
       transition: transform 0.4s ease;
   }
   
   .blog-card:hover .card-img-top {
       transform: scale(1.08);
   }
   
   .blog-card .card-body {
       padding: var(--spacing-lg);
       display: flex;
       flex-direction: column;
       flex-grow: 1;
   }
   
   .blog-meta {
       display: flex;
       flex-wrap: wrap;
       gap: var(--spacing-md);
       font-size: 0.9rem;
       color: var(--text-light);
       margin-bottom: var(--spacing-md);
       padding-bottom: var(--spacing-md);
       border-bottom: 1px solid var(--border-color);
   }
   
   .blog-card .card-title {
       font-family: var(--font-display);
       font-size: 1.3rem;
       margin-bottom: var(--spacing-md);
       color: var(--text-dark);
   }
   
   .blog-card .card-text {
       flex-grow: 1;
       margin-bottom: var(--spacing-md);
       color: var(--text-light);
   }
   
   /* =========================================
      CONTACT SECTION
      ========================================= */
   
   .contact-section {
       padding: var(--spacing-3xl) 0;
       background-color: var(--bg-white);
   }
   
   .contact-section .card {
       border: none;
       border-radius: 12px;
       box-shadow: var(--shadow-md);
   }
   
   .contact-section .form-control,
   .contact-section .form-select {
       border: 1px solid var(--border-color);
       border-radius: 8px;
       padding: var(--spacing-md);
       font-family: var(--font-body);
       transition: all 0.3s ease;
   }
   
   .contact-section .form-control:focus,
   .contact-section .form-select:focus {
       border-color: var(--primary-color);
       box-shadow: 0 0 0 3px rgba(212, 105, 44, 0.1);
   }
   
   .contact-section .form-label {
       font-family: var(--font-accent);
       font-weight: 600;
       color: var(--text-dark);
       margin-bottom: var(--spacing-sm);
       font-size: 0.95rem;
   }
   
   .contact-info {
       background-color: var(--bg-light);
       padding: var(--spacing-2xl);
       border-radius: 12px;
   }
   
   .contact-info h4 {
       font-family: var(--font-display);
       color: var(--text-dark);
   }
   
   .contact-info i {
       color: var(--primary-color);
       font-size: 1.5rem;
       margin-bottom: var(--spacing-sm);
   }
   
   .contact-info h5 {
       color: var(--text-dark);
       margin-bottom: var(--spacing-sm);
   }
   
   .contact-info p {
       margin-bottom: 0;
       color: var(--text-light);
   }
   
   /* =========================================
      ALERT MESSAGES
      ========================================= */
   
   .alert {
       border: none;
       border-radius: 8px;
       margin-bottom: var(--spacing-xl);
   }
   
   .alert-success {
       background-color: #E8F5E9;
       color: #2C5530;
   }
   
   .alert-danger {
       background-color: #FBE4E6;
       color: #D32F2F;
   }
   
   .alert-info {
       background-color: #E3F2FD;
       color: #1565C0;
   }
   
   /* =========================================
      FOOTER
      ========================================= */
   
   footer {
       background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
       color: var(--bg-white);
       padding: var(--spacing-3xl) 0 var(--spacing-lg);
   }
   
   footer h5 {
       color: var(--bg-white);
       margin-bottom: var(--spacing-lg);
       font-family: var(--font-accent);
   }
   
   footer p {
       color: rgba(255, 255, 255, 0.75);
       margin-bottom: var(--spacing-md);
   }
   
   footer a {
       color: rgba(255, 255, 255, 0.75);
       transition: all 0.3s ease;
       text-decoration: none;
   }
   
   footer a:hover {
       color: var(--accent-color);
       transform: translateX(4px);
   }
   
   footer .text-white-50 {
       color: rgba(255, 255, 255, 0.7) !important;
   }
   
   footer hr {
       border-color: rgba(255, 255, 255, 0.2);
   }
   
   /* =========================================
      RESPONSIVE DESIGN
      ========================================= */
   
   @media (max-width: 1200px) {
       h1 {
           font-size: 3rem;
       }
       
       h2 {
           font-size: 2.4rem;
       }
       
       .hero-section h1 {
           font-size: 2.8rem;
       }
       
       .spacing-3xl {
           padding: var(--spacing-2xl) 0;
       }
   }
   
   @media (max-width: 768px) {
       :root {
           --spacing-3xl: 3.5rem;
           --spacing-2xl: 3rem;
       }
       
       h1 {
           font-size: 2.4rem;
       }
       
       h2 {
           font-size: 2rem;
       }
       
       h3 {
           font-size: 1.6rem;
       }
       
       .hero-section h1 {
           font-size: 2.2rem;
       }
       
       .hero-section > p {
           font-size: 1rem;
       }
       
       .lead {
           font-size: 1.1rem;
       }
       
       .section-heading h2 {
           font-size: 2rem;
       }
       
       .contact-info {
           margin-top: var(--spacing-xl);
       }
       
       .food-card .card-img-top {
           height: 200px;
       }
       
       .blog-card .card-img-top {
           height: 150px;
       }
   }
   
   @media (max-width: 576px) {
       body {
           padding-top: 70px;
       }
       
       h1 {
           font-size: 2rem;
       }
       
       h2 {
           font-size: 1.6rem;
       }
       
       h3 {
           font-size: 1.3rem;
       }
       
       .hero-section h1 {
           font-size: 1.8rem;
       }
       
       .section-heading {
           margin-bottom: var(--spacing-2xl);
       }
       
       .section-heading h2::after {
           width: 60px;
       }
       
       .hero-section::before {
           width: 300px;
           height: 300px;
       }
       
       .btn-lg {
           padding: 0.7rem 1.5rem;
           font-size: 0.9rem;
       }
   }
   
   /* =========================================
      UTILITY CLASSES
      ========================================= */
   
   .img-placeholder {
       background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
       display: flex;
       align-items: center;
       justify-content: center;
       color: #ccc;
       border-radius: 8px;
   }
   
   .text-danger {
       color: #D32F2F !important;
   }
   
   .text-success {
       color: var(--secondary-color) !important;
   }
   
   .text-primary {
       color: var(--primary-color) !important;
   }
   
   .mb-3 {
       margin-bottom: var(--spacing-md) !important;
   }
   
   .mb-4 {
       margin-bottom: var(--spacing-lg) !important;
   }
   
   .mt-3 {
       margin-top: var(--spacing-md) !important;
   }
   
   .mt-4 {
       margin-top: var(--spacing-lg) !important;
   }
   
   .mt-5 {
       margin-top: var(--spacing-xl) !important;
   }
   
   .me-2 {
       margin-right: var(--spacing-xs) !important;
   }
   
   .me-3 {
       margin-right: var(--spacing-md) !important;
   }
   
   .ms-3 {
       margin-left: var(--spacing-md) !important;
   }
   
   .ms-auto {
       margin-left: auto !important;
   }
   
   .text-center {
       text-align: center;
   }
   
   .d-flex {
       display: flex;
   }
   
   .justify-content-between {
       justify-content: space-between;
   }
   
   .align-items-center {
       align-items: center;
   }
   
   .list-unstyled li {
       color: var(--text-light);
       margin-bottom: var(--spacing-md);
   }
   
   /* =========================================
      ANIMATIONS & TRANSITIONS
      ========================================= */
   
   @keyframes fadeIn {
       from {
           opacity: 0;
       }
       to {
           opacity: 1;
       }
   }
   
   @keyframes slideInLeft {
       from {
           opacity: 0;
           transform: translateX(-30px);
       }
       to {
           opacity: 1;
           transform: translateX(0);
       }
   }
   
   /* Smooth scrolling for sections */
   .row {
       margin-bottom: var(--spacing-lg);
   }
   
   .col-md-4,
   .col-md-6,
   .col-lg-4,
   .col-lg-6,
   .col-lg-8 {
       margin-bottom: var(--spacing-lg);
   }
   
   /* =========================================
      ACCESSIBILITY
      ========================================= */
   
   :focus {
       outline: none;
   }
   
   button:focus,
   a:focus {
       outline: 2px solid var(--primary-color);
       outline-offset: 2px;
   }
   
   /* Print styles */
   @media print {
       body {
           padding-top: 0;
       }
       
       .navbar,
       footer {
           display: none;
       }
   }






   /* =========================================
   ENHANCED STYLES - ADDITIONAL SECTIONS
   ========================================= */

/* =========================================
   HERO SECTION ENHANCEMENT
   ========================================= */

.hero-section {
    position: relative;
    
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(212, 105, 44, 0.6) 100%);
    z-index: 2;
}

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

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    animation: slideInUp 0.6s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--bg-white);
    margin-bottom: var(--spacing-md);
    animation: slideInUp 0.8s ease-out 0.1s backwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-2xl);
    max-width: 500px;
    line-height: 1.8;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-md);
    animation: slideInUp 0.8s ease-out 0.3s backwards;
}

.hero-ctas .btn {
    font-size: 1.05rem;
    padding: 0.95rem 2.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .hero-ctas .btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================================
   STATS SECTION
   ========================================= */

.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
   
    color: var(--bg-white);
    
    position: relative;
    z-index: 4;
}

.stat-item {
    padding: var(--spacing-xl);
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: var(--accent-color);
    animation: bounceIn 0.8s ease-out;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-weight: 500;
}

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

/* =========================================
   SECTION BADGE
   ========================================= */

.section-badge {
    display: inline-block;
    background-color: rgba(244, 169, 64, 0.15);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

/* =========================================
   FOOD CARD ENHANCEMENT
   ========================================= */

.food-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.food-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
}

.food-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

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

.food-card:hover .food-image {
    transform: scale(1.1);
}

.food-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.food-card:hover .food-overlay {
    opacity: 1;
}

.veg-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.food-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.food-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.food-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.food-price {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--primary-color);
    font-weight: 700;
}

.card-img-top.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    font-size: 4rem;
    color: #ccc;
    height: 280px;
}

/* No items message */
.no-items-message {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-xl);
}

.no-items-message i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: var(--spacing-lg);
}

.no-items-message p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* =========================================
   ABOUT SECTION ENHANCEMENT
   ========================================= */

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: slideInLeft 0.8s ease-out;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-image-badge {
    position: absolute;
    bottom: var(--spacing-lg);
    left: var(--spacing-lg);
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-lg);
    animation: slideInUp 0.8s ease-out 0.3s backwards;
}

.about-image-badge i {
    font-size: 1.5rem;
}

.about-content {
    animation: slideInRight 0.8s ease-out;
}

.about-content h2 {
    margin-bottom: var(--spacing-lg);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin: var(--spacing-2xl) 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 1.05rem;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================
   REVIEWS SLIDER SECTION
   ========================================= */

.reviews-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-light);
}

.reviews-slider-wrapper {
    position: relative;
    margin-top: var(--spacing-2xl);
}

.reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
    scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(33.333% - 11px);
    background-color: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary-color);
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.reviewer-info {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.reviewer-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.reviewer-title {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.review-rating {
    display: flex;
    gap: 3px;
}

.review-rating i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
}

/* Slider Navigation */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: -30px;
}

.slider-next {
    right: -30px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-lg);
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(212, 105, 44, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Mobile slider adjustment */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 8px);
    }
    
    .slider-prev {
        left: -20px;
    }
    
    .slider-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 100%;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
}

/* =========================================
   VIDEO REVIEWS SECTION
   ========================================= */

.video-reviews-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-white);
}

.video-review-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.video-review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 12px 12px 0 0;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.video-review-card:hover .video-thumbnail {
    filter: brightness(0.8);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--bg-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: var(--shadow-lg);
}

.play-button:hover {
    background-color: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.15);
}

.video-info {
    padding: var(--spacing-lg);
    background-color: var(--bg-white);
}

.video-info h5 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.video-reviewer {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.video-rating {
    display: flex;
    gap: 4px;
}

.video-rating i {
    color: var(--accent-color);
    font-size: 0.95rem;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    padding: var(--spacing-2xl);
    overflow-y: auto;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .video-modal {
        padding: var(--spacing-lg);
    }
    
    .video-modal-content iframe {
        height: 300px !important;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
    }
}

/* =========================================
   FAQ SECTION
   ========================================= */

.faq-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, rgba(244, 169, 64, 0.05) 0%, rgba(212, 105, 44, 0.05) 100%);
}

.faq-container {
    margin-top: var(--spacing-2xl);
}

.faq-item {
    margin-bottom: var(--spacing-lg);
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-lg);
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background-color: rgba(244, 169, 64, 0.08);
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.faq-item.active .faq-question {
    background-color: rgba(212, 105, 44, 0.1);
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* =========================================
   BLOG SECTION ENHANCEMENT
   ========================================= */

.blog-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-light);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    border-radius: 8px 8px 0 0;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.08);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border-color);
}

.blog-date,
.blog-author {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

/* =========================================
   CTA SECTION
   ========================================= */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: var(--spacing-3xl) 0;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    font-size: 2.8rem;
    margin-bottom: var(--spacing-lg);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-2xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* =========================================
   GENERAL ENHANCEMENTS
   ========================================= */

.g-5 {
    --bs-gutter-y: var(--spacing-xl);
    --bs-gutter-x: var(--spacing-xl);
}

/* Smooth scrolling animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .review-card {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-section {
        padding: var(--spacing-2xl) 0;
        margin-top: -40px;
    }
    
    .stat-item {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .review-card {
        flex: 0 0 100%;
    }
    
    .food-card {
        margin-bottom: var(--spacing-lg);
    }
    
    .about-image-wrapper {
        margin-bottom: var(--spacing-xl);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .food-image-wrapper,
    .card-img-top.img-placeholder {
        height: 200px;
    }
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

/* About Hero Section */
.about-hero-section {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
  
}

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

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(212, 105, 44, 0.5) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.about-hero-text h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    animation: slideInUp 0.8s ease-out;
}

.about-hero-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

/* Our Story Section */
.our-story-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-white);
}

.story-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.story-image-wrapper:hover .story-image {
    transform: scale(1.05);
}

.story-image-overlay {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.story-content h2 {
    margin-bottom: var(--spacing-lg);
}

.story-content p {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    line-height: 1.8;
}

/* Our Mission Section */
.our-mission-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-light);
}

.mission-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mission-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.mission-image-wrapper:hover .mission-image {
    transform: scale(1.05);
}

.mission-image-badge {
    position: absolute;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-lg);
}

.mission-image-badge i {
    font-size: 1.3rem;
}

.mission-content h2 {
    margin-bottom: var(--spacing-lg);
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.mission-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mission-text h5 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.mission-text p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Core Values Section */
.core-values-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-white);
}

.value-card {
    background-color: var(--bg-light);
    padding: var(--spacing-2xl);
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
    height: 100%;
}

.value-card:hover {
    border-top-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 105, 44, 0.1) 0%, rgba(244, 169, 64, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 2.5rem;
    color: var(--primary-color);
}

.value-card h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Timeline Section */
.timeline-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, rgba(244, 169, 64, 0.05) 0%, rgba(212, 105, 44, 0.05) 100%);
}

.timeline-wrapper {
    position: relative;
    padding: var(--spacing-3xl) var(--spacing-lg);
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: var(--spacing-3xl);
    width: 50%;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
    padding-right: var(--spacing-2xl);
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    text-align: left;
    padding-left: var(--spacing-2xl);
}

.timeline-marker {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-white);
}

.timeline-content {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    margin-top: var(--spacing-lg);
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.timeline-content h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-white);
}

.team-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 350px;
    background: #f0f0f0;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 105, 44, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: var(--spacing-lg);
}

.team-social a {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.team-info {
    padding: var(--spacing-lg);
    text-align: center;
}

.team-info h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

.team-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Achievements Section */
.achievements-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-light);
}

.achievement-card {
    background-color: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.achievement-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 2rem;
    color: var(--bg-white);
}

.achievement-card h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.achievement-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-white);
}

.why-card {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    padding: var(--spacing-lg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.why-card:hover {
    background-color: rgba(244, 169, 64, 0.08);
    transform: translateX(10px);
}

.why-icon {
    flex-shrink: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 3px;
}

.why-card h5 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.why-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Contact Information Section */
.contact-info-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.05) 0%, rgba(212, 105, 44, 0.05) 100%);
}

.contact-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: var(--spacing-2xl);
    text-align: center;
}

.contact-card-header h3 {
    color: var(--bg-white);
    margin-bottom: var(--spacing-sm);
}

.contact-card-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    padding: var(--spacing-2xl);
}

.contact-detail {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(212, 105, 44, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-detail-content h5 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.contact-detail-content p,
.contact-detail-content a {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-detail-content a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-content a:hover {
    color: var(--primary-color);
}

.contact-card-footer {
    padding: var(--spacing-xl) var(--spacing-2xl);
    background-color: var(--bg-light);
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card-footer .btn {
    flex: 1;
    min-width: 200px;
}

/* Responsive Timeline */
@media (max-width: 1024px) {
    .timeline-wrapper::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        margin-left: 0;
        text-align: left;
        padding-left: var(--spacing-3xl);
        padding-right: 0;
    }

    .timeline-marker {
        left: 0;
        transform: translateX(-50%);
    }
}

/* Responsive About Page */
@media (max-width: 768px) {
    .about-hero-section {
        height: 350px;
    }

    .about-hero-text h1 {
        font-size: 2.5rem;
    }

    .story-image-overlay,
    .mission-image-badge {
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .timeline-item {
        margin-bottom: var(--spacing-2xl);
    }

    .timeline-marker {
        width: 80px;
        height: 80px;
        font-size: 1.1rem;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .contact-card-footer {
        flex-direction: column;
    }

    .contact-card-footer .btn {
        width: 100%;
    }

    .team-image-wrapper {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        height: 300px;
    }

    .about-hero-text h1 {
        font-size: 2rem;
    }

    .about-hero-text p {
        font-size: 1rem;
    }

    .mission-list,
    .why-choose-us-section .row {
        flex-direction: column;
    }

    .mission-item {
        flex-direction: column;
        text-align: center;
    }

    .mission-icon {
        margin: 0 auto var(--spacing-md);
    }

    .timeline-wrapper {
        padding: var(--spacing-2xl) var(--spacing-sm);
    }

    .timeline-item {
        padding-left: var(--spacing-2xl);
    }

    .timeline-marker {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }

    .team-card,
    .achievement-card,
    .value-card {
        margin-bottom: var(--spacing-lg);
    }
}

/* =========================================
   MENU PAGE STYLES
   ========================================= */

/* Menu Hero Section */
.menu-hero-section {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
  
}

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

.menu-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.menu-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(212, 105, 44, 0.6) 100%);
    z-index: 2;
}

.menu-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.menu-hero-content h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.menu-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Menu Controls Section */
.menu-controls-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.search-box {
    position: relative;
}

.search-input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    padding-left: 3rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 105, 44, 0.1);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.sort-label {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.sort-select {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    background-color: var(--bg-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 105, 44, 0.1);
}

/* Category Tabs */
.category-tabs-wrapper {
    margin-top: var(--spacing-2xl);
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: var(--spacing-lg);
}

.category-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.category-tabs {
    display: flex;
    gap: var(--spacing-md);
    white-space: nowrap;
    min-width: min-content;
}

.category-tab {
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.category-tab.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

/* Menu Items Section */
.menu-items-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-white);
}

.menu-category {
    margin-bottom: var(--spacing-3xl);
    animation: fadeInUp 0.6s ease-out;
}

.menu-category:first-child {
    margin-top: 0;
}

.category-header {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 3px solid var(--primary-color);
}

.category-header-content h2 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.category-header-content h2::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.category-header-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

/* Menu Item Card */
.menu-item-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-item-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.menu-item-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.menu-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-item-card:hover .menu-item-image {
    transform: scale(1.1);
}

.menu-item-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}

.menu-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item-card:hover .menu-item-overlay {
    opacity: 1;
}

.veg-badge-small {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 5;
}

.menu-item-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.menu-item-description {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    line-height: 1.5;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* No Results Message */
.no-results-message {
    padding: var(--spacing-3xl) var(--spacing-lg);
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 12px;
    margin: var(--spacing-2xl) 0;
}

.no-results-message i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: var(--spacing-lg);
}

.no-results-message h3 {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.no-results-message p {
    color: var(--text-light);
    margin-bottom: 0;
}

.no-menu-message {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-lg);
    background-color: var(--bg-light);
    border-radius: 12px;
}

.no-menu-message i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: var(--spacing-lg);
}

.no-menu-message h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.no-menu-message p {
    color: var(--text-light);
}

/* Menu Info Section */
.menu-info-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-light);
}

.menu-info-card {
    background-color: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.menu-info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.menu-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 2.5rem;
    color: var(--bg-white);
}

.menu-info-card h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.menu-info-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive Menu */
@media (max-width: 1024px) {
    .menu-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .menu-hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .menu-hero-section {
        height: 300px;
        margin-top: 70px;
    }

    .menu-hero-content h1 {
        font-size: 2.2rem;
    }

    .menu-hero-content p {
        font-size: 1rem;
    }

    .menu-controls-section {
        padding: var(--spacing-2xl) 0;
    }

    .sort-controls {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }

    .sort-select {
        flex: 1;
        min-width: 150px;
    }

    .menu-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: var(--spacing-md);
    }

    .menu-item-image-wrapper {
        height: 180px;
    }

    .menu-item-name {
        font-size: 1rem;
    }

    .menu-item-price {
        font-size: 1.3rem;
    }

    .category-tabs {
        gap: var(--spacing-sm);
    }

    .category-tab {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .menu-hero-section {
        height: 250px;
        margin-top: 60px;
    }

    .menu-hero-content h1 {
        font-size: 1.8rem;
    }

    .menu-controls-section {
        padding: var(--spacing-lg) 0;
    }

    .search-input {
        padding: var(--spacing-sm) var(--spacing-md);
        padding-left: 2.5rem;
        font-size: 0.9rem;
    }

    .menu-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: var(--spacing-sm);
    }

    .menu-item-image-wrapper {
        height: 150px;
    }

    .menu-item-content {
        padding: var(--spacing-md);
    }

    .menu-item-name {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .menu-item-description {
        font-size: 0.75rem;
        margin-bottom: var(--spacing-sm);
    }

    .menu-item-price {
        font-size: 1.1rem;
    }

    .category-tabs {
        gap: 6px;
    }

    .category-tab {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .menu-info-section {
        padding: var(--spacing-2xl) 0;
    }

    .menu-info-card {
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }

    .menu-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: var(--spacing-md);
    }

    .menu-info-card h4 {
        font-size: 1.1rem;
    }
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
   
}

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

.contact-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(212, 105, 44, 0.6) 100%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero-content h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.contact-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Quick Info Section */
.contact-quick-info {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-white);
   
    position: relative;
    z-index: 4;
}

.quick-info-card {
    background-color: var(--bg-light);
    padding: var(--spacing-2xl);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.quick-info-card:hover {
    border-top-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.quick-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 2rem;
    color: var(--bg-white);
}

.quick-info-card h5 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.quick-info-card p,
.quick-info-card a {
    color: var(--text-light);
    margin-bottom: 0;
    text-decoration: none;
}

.quick-info-card a:hover {
    color: var(--primary-color);
}

/* Contact Main Section */
.contact-main-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-light);
}

/* Contact Sidebar */
.contact-sidebar {
    animation: slideInLeft 0.8s ease-out;
}

.contact-sidebar-section {
    margin-bottom: var(--spacing-3xl);
}

.contact-sidebar-section h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.contact-sidebar-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.contact-detail-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 105, 44, 0.1) 0%, rgba(244, 169, 64, 0.1) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-detail-content h5 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-size: 1.05rem;
}

.contact-detail-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-detail-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-content a:hover {
    color: var(--primary-color);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    animation: slideInRight 0.8s ease-out;
}

.contact-form-wrapper h2 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: var(--spacing-2xl);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.required {
    color: #D32F2F;
}

.form-control {
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 105, 44, 0.1);
}

.form-control::placeholder {
    color: #999;
}

.form-text {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Order Info Banner */
.order-info-banner {
    background: linear-gradient(135deg, rgba(212, 105, 44, 0.1) 0%, rgba(244, 169, 64, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: var(--spacing-lg);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
}

.order-info-content {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.order-info-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.order-info-content strong {
    color: var(--text-dark);
}

.order-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Submit Button */
.btn-submit {
    align-self: flex-start;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: var(--spacing-md);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Contact Map Section */
.contact-map-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-white);
}

.contact-map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map-container iframe {
    border-radius: 12px;
}

/* Why Contact Section */
.why-contact-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, rgba(244, 169, 64, 0.05) 0%, rgba(212, 105, 44, 0.05) 100%);
}

.why-contact-card {
    background-color: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid transparent;
}

.why-contact-card:hover {
    border-top-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.why-contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 2.5rem;
    color: var(--bg-white);
}

.why-contact-card h5 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.why-contact-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Alert Styling */
.alert {
    border: none;
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    border-left: 4px solid;
}

.alert-success {
    background-color: #E8F5E9;
    color: #2C5530;
    border-left-color: #2C5530;
}

.alert-danger {
    background-color: #FBE4E6;
    color: #D32F2F;
    border-left-color: #D32F2F;
}

.alert-content {
    display: flex;
    align-items: center;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-hero-content h1 {
        font-size: 2.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        height: 300px;
        margin-top: 70px;
    }

    .contact-hero-content h1 {
        font-size: 2.2rem;
    }

    .contact-hero-content p {
        font-size: 1rem;
    }

    .contact-quick-info {
        margin-top: -40px;
    }

    .contact-main-section {
        padding: var(--spacing-2xl) 0;
    }

    .contact-form-wrapper {
        padding: var(--spacing-lg);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .contact-map-container iframe {
        height: 350px !important;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        height: 250px;
        margin-top: 60px;
    }

    .contact-hero-content h1 {
        font-size: 1.8rem;
    }

    .contact-hero-content p {
        font-size: 0.95rem;
    }

    .quick-info-card {
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-md);
    }

    .quick-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: var(--spacing-md);
    }

    .quick-info-card h5 {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }

    .contact-form-wrapper h2 {
        font-size: 1.5rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-control {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }

    .form-row {
        gap: var(--spacing-sm);
    }

    .btn-submit {
        width: 100%;
        align-self: stretch;
    }

    .contact-map-container iframe {
        height: 250px !important;
    }

    .why-contact-card {
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }

    .why-contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: var(--spacing-md);
    }

    .contact-detail-item {
        gap: var(--spacing-md);
    }

    .contact-detail-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/* =========================================
   PRODUCT DETAILS PAGE STYLES
   ========================================= */

.product-hero-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-light);
    margin-top: 80px;
}

.breadcrumb { background-color: transparent; padding: 0; }
.breadcrumb-item { font-size: 0.9rem; }
.breadcrumb-item a { color: var(--primary-color); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--primary-dark); }

.product-details-section { padding: var(--spacing-3xl) 0; background-color: var(--bg-white); }
.product-image-section { animation: slideInLeft 0.8s ease-out; }

.product-main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.main-product-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-main-image:hover .main-product-image { transform: scale(1.05); }
.product-image-placeholder { font-size: 5rem; color: #ccc; }

.veg-badge-large {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.product-info { animation: slideInRight 0.8s ease-out; }
.product-badges { display: flex; gap: var(--spacing-md); flex-wrap: wrap; }

.badge { padding: 8px 12px; border-radius: 20px; font-family: var(--font-accent); font-weight: 500; font-size: 0.85rem; border: none; }
.badge-veg { background: linear-gradient(135deg, rgba(44, 85, 48, 0.15) 0%, rgba(44, 85, 48, 0.1) 100%); color: var(--secondary-color); }
.badge-category { background: linear-gradient(135deg, rgba(212, 105, 44, 0.15) 0%, rgba(212, 105, 44, 0.1) 100%); color: var(--primary-color); }
.badge-subcategory { background: linear-gradient(135deg, rgba(3, 169, 244, 0.15) 0%, rgba(3, 169, 244, 0.1) 100%); color: #0288D1; }

.product-title { font-family: var(--font-display); font-size: 2.5rem; color: var(--text-dark); margin-bottom: var(--spacing-md); line-height: 1.2; }
.product-rating { display: flex; align-items: center; gap: var(--spacing-sm); margin-bottom: var(--spacing-lg); }
.product-rating i { color: var(--accent-color); font-size: 1.1rem; }
.rating-text { color: var(--text-light); font-size: 0.9rem; margin-left: var(--spacing-sm); }

.product-price-section {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(212, 105, 44, 0.1) 0%, rgba(244, 169, 64, 0.1) 100%);
    border-radius: 8px;
    margin-bottom: var(--spacing-2xl);
    display: flex;
    align-items: baseline;
    gap: var(--spacing-md);
}

.product-price { font-family: var(--font-display); font-size: 2.5rem; color: var(--primary-color); font-weight: 800; }
.price-note { color: var(--text-light); font-size: 0.9rem; }
.product-description { font-size: 1rem; line-height: 1.8; color: var(--text-light); }

.quantity-selector { padding: var(--spacing-lg); background-color: var(--bg-light); border-radius: 8px; }
.quantity-label { display: block; font-weight: 600; margin-bottom: var(--spacing-sm); color: var(--text-dark); }
.quantity-controls { display: flex; align-items: center; gap: var(--spacing-md); margin-bottom: var(--spacing-lg); }

.qty-btn {
    width: 40px; height: 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none; border-radius: 6px;
    font-weight: 700; font-size: 1.2rem;
    cursor: pointer; transition: all 0.3s ease;
}
.qty-btn:hover { background-color: var(--primary-dark); transform: scale(1.1); }

.qty-input { width: 60px; padding: 10px; border: 2px solid var(--border-color); border-radius: 6px; text-align: center; font-weight: 600; font-size: 1rem; }
.qty-input:focus { outline: none; border-color: var(--primary-color); }

.order-form { display: flex; flex-direction: column; gap: var(--spacing-md); }
.btn-order { padding: 14px 28px; font-size: 1.05rem; font-weight: 700; transition: all 0.3s ease; }
.btn-order:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.product-features { display: flex; flex-direction: column; gap: var(--spacing-md); padding-top: var(--spacing-2xl); border-top: 2px solid var(--border-color); }
.feature-item { display: flex; align-items: center; gap: var(--spacing-md); color: var(--text-dark); }
.feature-item i { color: var(--secondary-color); font-size: 1.2rem; flex-shrink: 0; }

.product-tabs-section { padding: var(--spacing-3xl) 0; background-color: var(--bg-light); }
.tabs-header { display: flex; gap: var(--spacing-md); border-bottom: 2px solid var(--border-color); margin-bottom: var(--spacing-2xl); }

.tab-button { background: none; border: none; padding: var(--spacing-md) var(--spacing-lg); font-family: var(--font-accent); font-weight: 600; color: var(--text-light); cursor: pointer; position: relative; transition: color 0.3s ease; }
.tab-button:hover { color: var(--primary-color); }
.tab-button.active { color: var(--primary-color); }
.tab-button.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 3px; background-color: var(--primary-color); }

.tab-content { display: none; animation: fadeInUp 0.4s ease; }
.tab-content.active { display: block; }

.detail-card { background-color: var(--bg-white); padding: var(--spacing-2xl); border-radius: 8px; margin-bottom: var(--spacing-lg); }
.detail-card h5 { color: var(--text-dark); margin-bottom: var(--spacing-lg); border-bottom: 2px solid var(--primary-color); padding-bottom: var(--spacing-md); }
.detail-item { display: flex; justify-content: space-between; padding: var(--spacing-md) 0; border-bottom: 1px solid var(--border-color); }
.detail-label { font-weight: 600; color: var(--text-dark); }
.detail-value { color: var(--text-light); }

.detail-list { list-style: none; padding: 0; }
.detail-list li { padding: var(--spacing-sm) 0; color: var(--text-light); display: flex; align-items: center; gap: var(--spacing-md); }
.detail-list li:before { content: '✓'; color: var(--secondary-color); font-weight: 700; font-size: 1.1rem; }

.nutrition-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--spacing-lg); margin-bottom: var(--spacing-2xl); }
.nutrition-card { background-color: var(--bg-white); padding: var(--spacing-2xl); border-radius: 8px; text-align: center; transition: all 0.3s ease; border-top: 4px solid transparent; }
.nutrition-card:hover { border-top-color: var(--primary-color); box-shadow: var(--shadow-md); transform: translateY(-5px); }

.nutrition-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 2rem; color: var(--bg-white);
}

.nutrition-info h6 { color: var(--text-dark); margin-bottom: var(--spacing-sm); }
.nutrition-info p { color: var(--text-light); margin-bottom: 0; }

.allergen-alert { background: linear-gradient(135deg, rgba(212, 105, 44, 0.1) 0%, rgba(244, 169, 64, 0.1) 100%); padding: var(--spacing-lg); border-radius: 8px; border-left: 4px solid var(--primary-color); display: flex; gap: var(--spacing-lg); }
.allergen-alert i { color: var(--primary-color); font-size: 1.5rem; flex-shrink: 0; }
.allergen-alert h5 { color: var(--text-dark); margin-bottom: var(--spacing-sm); }
.allergen-list, .allergen-note-box { background-color: var(--bg-light); padding: var(--spacing-lg); border-radius: 8px; }
.allergen-item { display: flex; align-items: center; gap: var(--spacing-md); padding: var(--spacing-sm) 0; color: var(--text-light); }

.related-products-section { padding: var(--spacing-3xl) 0; background-color: var(--bg-white); }
.related-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--spacing-lg); }
.related-product-card { background-color: var(--bg-light); border-radius: 12px; overflow: hidden; transition: all 0.4s ease; box-shadow: var(--shadow-sm); }
.related-product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); }

.related-image-wrapper { position: relative; height: 180px; overflow: hidden; background: #f0f0f0; }
.related-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.related-product-card:hover .related-image { transform: scale(1.1); }
.related-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: #ccc; }

.related-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.related-product-card:hover .related-overlay { opacity: 1; }

.related-info { padding: var(--spacing-lg); }
.related-name { font-family: var(--font-display); font-size: 1rem; color: var(--text-dark); margin-bottom: var(--spacing-sm); }
.related-description { font-size: 0.8rem; color: var(--text-light); margin-bottom: var(--spacing-md); }
.related-footer { display: flex; justify-content: space-between; align-items: center; }
.related-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--primary-color); font-weight: 700; }

.product-cta-section { background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); padding: var(--spacing-3xl) 0; color: var(--bg-white); text-align: center; }
.cta-content h2 { color: var(--bg-white); margin-bottom: var(--spacing-lg); }
.cta-content p { color: rgba(255, 255, 255, 0.9); margin-bottom: var(--spacing-2xl); }

@media (max-width: 1024px) {
    .product-title { font-size: 2rem; }
    .product-price { font-size: 2rem; }
    .product-main-image { height: 400px; }
}

@media (max-width: 768px) {
    .product-hero-section { padding: var(--spacing-lg) 0; margin-top: 70px; }
    .product-details-section { padding: var(--spacing-2xl) 0; }
    .product-main-image { height: 300px; }
    .product-title { font-size: 1.8rem; }
    .product-price { font-size: 1.8rem; }
    .related-products-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--spacing-md); }
    .tabs-header { flex-wrap: wrap; }
    .nutrition-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .product-badges { margin-bottom: var(--spacing-lg); }
    .product-title { font-size: 1.4rem; }
    .product-price-section { flex-direction: column; align-items: flex-start; }
    .product-price { font-size: 1.5rem; }
    .product-main-image { height: 250px; }
    .veg-badge-large { padding: 6px 10px; font-size: 0.7rem; }
    .quantity-controls { width: 100%; }
    .btn-order { width: 100%; }
    .related-products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-sm); }
    .related-image-wrapper { height: 120px; }
    .related-name { font-size: 0.85rem; }
    .related-price { font-size: 1rem; }
    .tabs-header { gap: var(--spacing-sm); }
    .tab-button { padding: var(--spacing-sm) var(--spacing-md); font-size: 0.85rem; }
    .nutrition-grid { grid-template-columns: 1fr; }
    .allergen-alert { flex-direction: column; gap: var(--spacing-md); }
}

/* =========================================
   BLOG PAGE STYLES
   ========================================= */

.blog-hero-section {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
   
}

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

.blog-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(212, 105, 44, 0.6) 100%);
    z-index: 2;
}

.blog-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.blog-hero-content h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.blog-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Post Section */
.featured-post-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-light);
}

.featured-post-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

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

.featured-image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.featured-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    font-size: 4rem;
    color: #ccc;
}

.featured-badge {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
}

.featured-content {
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.featured-meta {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.meta-item {
    color: var(--text-light);
    font-size: 0.9rem;
}

.featured-excerpt {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-2xl);
}

/* Blog Grid Section */
.blog-grid-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-white);
}


.blog-post-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.blog-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-post-card:hover .blog-overlay {
    opacity: 1;
}

.blog-content {
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-bar {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-light);
}

.meta-date, .meta-author, .meta-views {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.read-more-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.no-posts-message {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-lg);
    background-color: var(--bg-light);
    border-radius: 12px;
}

.no-posts-message i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: var(--spacing-lg);
}

.no-posts-message h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.no-posts-message p {
    color: var(--text-light);
}

/* Blog Pagination */
.blog-pagination {
    margin-top: var(--spacing-3xl);
    padding-top: var(--spacing-2xl);
    border-top: 2px solid var(--border-color);
}

.pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-item {
    display: flex;
}

.pagination-link {
    padding: 10px 16px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.pagination-link:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.pagination-link.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.sidebar-widget {
    background-color: var(--bg-light);
    padding: var(--spacing-2xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 3px solid var(--primary-color);
}

.search-widget {
    position: relative;
}

.search-input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    padding-left: 2.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 105, 44, 0.1);
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.recent-post-item {
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-item h6 {
    margin-bottom: var(--spacing-sm);
}

.recent-post-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-item a:hover {
    color: var(--primary-color);
}

.recent-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.category-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    width: fit-content;
}

.category-tag:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.about-widget {
    background: linear-gradient(135deg, rgba(212, 105, 44, 0.1) 0%, rgba(244, 169, 64, 0.1) 100%);
}

.about-widget p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Blog CTA Section */
.blog-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: var(--spacing-3xl) 0;
    color: var(--bg-white);
}

.blog-cta-content {
    text-align: center;
}

.blog-cta-content h2 {
    color: var(--bg-white);
    margin-bottom: var(--spacing-lg);
}

.blog-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
}

.blog-subscribe-form {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
}

.subscribe-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* Responsive Blog */
@media (max-width: 1024px) {
    .blog-hero-content h1 {
        font-size: 2.8rem;
    }

    .featured-image-wrapper {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        height: 300px;
        margin-top: 70px;
    }

    .blog-hero-content h1 {
        font-size: 2.2rem;
    }

    .blog-hero-content p {
        font-size: 1rem;
    }

    .featured-post-card .row {
        flex-direction: column;
    }

    .featured-image-wrapper {
        height: 250px;
    }

    .featured-content {
        padding: var(--spacing-lg);
    }

    .blog-image-wrapper {
        height: 200px;
    }

    .blog-title {
        font-size: 1.2rem;
    }

    .pagination-list {
        gap: var(--spacing-sm);
    }

    .pagination-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .blog-hero-section {
        height: 250px;
        margin-top: 60px;
    }

    .blog-hero-content h1 {
        font-size: 1.8rem;
    }

    .blog-hero-content p {
        font-size: 0.95rem;
    }

    .featured-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .featured-content {
        padding: var(--spacing-lg);
    }

    .featured-meta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .blog-content {
        padding: var(--spacing-lg);
    }

    .blog-image-wrapper {
        height: 150px;
    }

    .blog-title {
        font-size: 1rem;
    }

    .blog-excerpt {
        font-size: 0.9rem;
    }

    .blog-sidebar {
        gap: var(--spacing-lg);
    }

    .sidebar-widget {
        padding: var(--spacing-lg);
    }

    .pagination-list {
        gap: 4px;
    }

    .pagination-link {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .blog-subscribe-form {
        flex-direction: column;
    }

    .subscribe-input {
        min-width: 100%;
    }

    .search-input {
        font-size: 0.9rem;
    }

/* Blog Grid Section */
.blog-grid-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-white);
}

.blog-cards-wrapper {
    display: flex;
    flex-direction: column;
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

/* Blog Card - 3 per row */
.blog-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid var(--border-color);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    border-color: var(--primary-color);
}

.blog-card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.1);
}

.blog-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.blog-card-date-badge {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    min-width: 55px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.date-day {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
}

.blog-card-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--text-light);
}

.card-author, .card-views {
    display: flex;
    align-items: center;
    gap: 3px;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.blog-card-read-more:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* No posts message */
.no-posts-message {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-lg);
    background-color: var(--bg-light);
    border-radius: 12px;
    grid-column: 1 / -1;
}

.no-posts-message i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: var(--spacing-lg);
}

.no-posts-message h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.no-posts-message p {
    color: var(--text-light);
}

/* Responsive Blog Cards */
@media (max-width: 1200px) {
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .blog-card-image-wrapper {
        height: 180px;
    }

    .blog-card-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .blog-card-image-wrapper {
        height: 150px;
    }

    .blog-card-content {
        padding: var(--spacing-md);
    }

    .blog-card-title {
        font-size: 0.95rem;
    }

    .blog-card-excerpt {
        font-size: 0.85rem;
    }

    .blog-card-date-badge {
        top: 8px;
        left: 8px;
        padding: 6px 8px;
        min-width: 50px;
    }

    .date-day {
        font-size: 1.1rem;
    }

    .date-month {
        font-size: 0.65rem;
    }
}

/* =========================================
   BLOG PAGE STYLES - 3 CARDS PER ROW
   ========================================= */

.blog-hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

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

.blog-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(212, 105, 44, 0.6) 100%);
    z-index: 2;
}

.blog-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.blog-hero-content h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.blog-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Section */
.blog-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-white);
}

/* Blog Grid - 3 per row */
.blog-section .blog-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-bottom: var(--spacing-3xl);
    width: 100%;
    grid-auto-rows: auto;
    margin-top: 40px;
}

.blog-section .blog-grid .blog-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
    max-width: 100%;
}

/* Blog Card */
.blog-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid var(--border-color);
    width: 100%;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    border-color: var(--primary-color);
}

.blog-card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.1);
}

.blog-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.blog-card-date-badge {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    min-width: 55px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.date-day {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
}

.blog-card-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--text-light);
}

.card-author, .card-views {
    display: flex;
    align-items: center;
    gap: 3px;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.blog-card-read-more:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* No Posts Message */
.no-posts-message {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-lg);
    background-color: var(--bg-light);
    border-radius: 12px;
    grid-column: 1 / -1;
}

.no-posts-message i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: var(--spacing-lg);
}

.no-posts-message h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.no-posts-message p {
    color: var(--text-light);
}

/* Blog Pagination */
.blog-pagination {
    margin-top: var(--spacing-3xl);
    padding-top: var(--spacing-2xl);
    border-top: 2px solid var(--border-color);
}

.pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-item {
    display: flex;
}

.pagination-link {
    padding: 10px 16px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.pagination-link:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.pagination-link.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

/* Responsive Blog Grid */
@media (max-width: 992px) {
    .blog-section .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        height: 300px;
        margin-top: 70px;
    }

    .blog-hero-content h1 {
        font-size: 2.2rem;
    }

    .blog-hero-content p {
        font-size: 1rem;
    }

    .blog-section .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .blog-card-image-wrapper {
        height: 180px;
    }

    .blog-card-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .blog-hero-section {
        height: 250px;
        margin-top: 60px;
    }

    .blog-hero-content h1 {
        font-size: 1.8rem;
    }

    .blog-hero-content p {
        font-size: 0.95rem;
    }

    .blog-card-image-wrapper {
        height: 150px;
    }

    .blog-card-content {
        padding: var(--spacing-md);
    }

    .blog-card-title {
        font-size: 0.95rem;
    }

    .blog-card-excerpt {
        font-size: 0.85rem;
    }

    .blog-card-date-badge {
        top: 8px;
        left: 8px;
        padding: 6px 8px;
        min-width: 50px;
    }

    .date-day {
        font-size: 1.1rem;
    }

    .date-month {
        font-size: 0.65rem;
    }

    .pagination-list {
        gap: var(--spacing-sm);
    }

    .pagination-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}