      :root {
        --primary-color: #001c69;
        --primary-light: #2a4a9c;
        --orange-color: #ff8c00;
        --orange-light: #ffa940;
        --light-gray: #f8f9fa;
        --medium-gray: #e9ecef;
        --dark-gray: #6c757d;
        --text-color: #333;
        --border-radius: 8px;
        --transition: all 0.3s ease;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.05);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        background-color: #fafafa;
        color: var(--text-color);
      }

     /* Header Styles */
.main-header {
    background-color: white;
    border-bottom: 1px solid var(--medium-gray);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    padding: 15px 80px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo Section */
.logo-section {
    flex: 0 0 160px;
}

.logo-section img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-section:hover img {
    transform: scale(1.03);
}

/* Center Section - Date & Time Inputs - FIXED */
.center-section {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: 10px 15px;
    min-width: 180px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.input-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 28, 105, 0.1);
}

.input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 28, 105, 0.15);
}

.input-wrapper i,
.input-wrapper img {
    color: var(--dark-gray);
    font-size: 18px;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.input-wrapper:focus-within i,
.input-wrapper:focus-within img {
    color: var(--primary-color);
}

.input-wrapper input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-color);
    width: 100%;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.input-wrapper input::placeholder {
    color: var(--dark-gray);
}

.help-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-gray);
}

.help-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Right Section - Actions */
.right-section {
    flex: 0 0 220px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.traiteur-link {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.traiteur-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange-color);
    transition: var(--transition);
}

.traiteur-link:hover {
    color: var(--orange-color);
}

.traiteur-link:hover:before {
    width: 100%;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 22px;
    transition: var(--transition);
    padding: 8px;
    border-radius: 50%;
    position: relative;
}

.icon-btn:hover {
    color: var(--orange-color);
    background-color: rgba(0, 28, 105, 0.05);
    transform: translateY(-2px);
}

.icon-btn:active {
    transform: translateY(0);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--orange-color);
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Language Switch */
.language-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: var(--border-radius);
    background-color: rgba(0, 28, 105, 0.05);
}

.lang-text {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}
       /* Modal Styles */
        .bluecolor-txt {
            color: var(--primary-color);
        }

        .login-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background: white;
            transition: var(--transition);
        }

        .login-btn:hover {
            background-color: #f8f9fa;
        }

        .password-container {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: var(--dark-gray);
        }

        .email-hover {
            color: var(--primary-color);
            text-decoration: none;
        }

        .email-hover:hover {
            text-decoration: underline;
        }

        .description {
            font-size: 14px;
        }

        .subheading {
            font-size: 14px;
        }

      /* ========== MOBILE REDESIGN ========== */
      /* Hide mobile elements by default */
      .mobile-inputs-container,
      .mobile-menu-btn,
      .mobile-menu-panel,
      .mobile-menu-overlay {
        display: none;
      }

      @media (max-width: 992px) {
        .main-header {
          box-shadow: var(--shadow);
          padding: 0;
        }

        .header-container {
          padding: 12px 16px;
          flex-wrap: wrap;
          position: relative;
        }

        /* Mobile Top Row */
        .mobile-top-row {
          display: flex;
          justify-content: space-between;
          align-items: center;
          width: 100%;
        }

        .logo-section {
          flex: 0 0 auto;
        }

        .logo-section img {
          height: 42px;
        }

        /* Hide desktop elements */
        .center-section {
          display: none !important;
        }

        .traiteur-link {
          display: none;
        }

        /* Show mobile elements */
        .mobile-inputs-container,
        .mobile-menu-btn {
          display: block;
        }

        /* Mobile Right Section */
        .right-section {
          flex: 0 0 auto;
          gap: 16px;
          margin-left: auto;
        }

        .icon-btn {
          font-size: 20px;
          padding: 6px;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          width: 40px;
          height: 40px;
          background: none;
          border: none;
          cursor: pointer;
          padding: 0;
        }

        .menu-line {
          width: 22px;
          height: 2px;
          background-color: var(--primary-color);
          margin: 2px 0;
          transition: var(--transition);
          border-radius: 2px;
        }

        .mobile-menu-btn.active .menu-line:nth-child(1) {
          transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active .menu-line:nth-child(2) {
          opacity: 0;
        }

        .mobile-menu-btn.active .menu-line:nth-child(3) {
          transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile Inputs Row */
        .mobile-inputs-container {
          width: 100%;
          padding: 0 16px 12px;
        }

        .mobile-inputs-row {
          display: flex;
          gap: 12px;
          width: 100%;
        }

        .input-wrapper {
          flex: 1;
          padding: 12px 15px;
          min-width: auto;
        }

        .input-wrapper input {
          font-size: 14px;
        }

        .help-icon {
          display: none;
        }

        /* Mobile Menu Panel */
        .mobile-menu-panel {
          display: block;
          position: fixed;
          top: 0;
          right: -100%;
          width: 280px;
          height: 100vh;
          background: white;
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
          z-index: 1001;
          transition: var(--transition);
          padding: 80px 20px 20px;
          overflow-y: auto;
        }

        .mobile-menu-panel.active {
          right: 0;
        }

        .mobile-menu-overlay {
          display: block;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.5);
          z-index: 1000;
          opacity: 0;
          visibility: hidden;
          transition: var(--transition);
        }

        .mobile-menu-overlay.active {
          opacity: 1;
          visibility: visible;
        }

        .mobile-nav {
          list-style: none;
          padding: 0;
          margin-bottom: 30px;
        }

        .mobile-nav-item {
          border-bottom: 1px solid var(--medium-gray);
        }

        .mobile-nav-link {
          display: block;
          padding: 15px 0;
          text-decoration: none;
          color: var(--text-color);
          font-weight: 500;
          transition: var(--transition);
        }

        .mobile-nav-link:hover {
          color: var(--primary-color);
        }

        .mobile-nav-link i {
          margin-right: 10px;
          width: 20px;
          text-align: center;
        }

        .mobile-traiteur-link {
          display: block;
          text-align: center;
          background: var(--primary-color);
          color: white;
          text-decoration: none;
          padding: 12px;
          border-radius: var(--border-radius);
          font-weight: 600;
          margin-top: 20px;
          transition: var(--transition);
        }

        .mobile-traiteur-link:hover {
          background: var(--primary-light);
          color: white;
        }

        /* Language Switch Mobile */
        .mobile-language-switch {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 15px;
          margin-top: 30px;
          padding-top: 20px;
          border-top: 1px solid var(--medium-gray);
        }

        .mobile-lang-text {
          font-size: 16px;
          font-weight: 600;
          color: var(--primary-color);
        }

        .mobile-switch {
          width: 60px;
          height: 30px;
        }

        .mobile-slider:before {
          height: 22px;
          width: 22px;
        }

        input:checked + .mobile-slider:before {
          transform: translateX(30px);
        }
      }

      @media (max-width: 576px) {
        .header-container {
          padding: 10px 16px;
        }

        .logo-section img {
          height: 38px;
        }

        .right-section {
          gap: 12px;
        }

        .mobile-inputs-row {
          flex-direction: column;
          gap: 10px;
        }

        .input-wrapper {
          width: 100%;
        }

        .language-switch {
          padding: 4px 8px;
        }

        .switch {
          width: 44px;
          height: 22px;
        }

        .slider:before {
          height: 16px;
          width: 16px;
        }

        input:checked + .slider:before {
          transform: translateX(22px);
        }
      }

      /* Hero Section */
      .hero-section {
        position: relative;
        width: 100%;
        height: 500px;
        background-image: url("/assets/img/hero_banner.png");
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0 80px;
        margin-top: 80px;
      }

      .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
      }

      .hero-card {
        position: relative;
        z-index: 10;
        background: white;
        padding: 40px 50px;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        text-align: center;
        max-width: 650px;
        margin-left: 10px; /* Move card to the right */
      }

      .hero-card h2 {
        color: var(--primary-color);
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.4;
      }

      .hero-card p {
        color: #555;
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
      }

      .hero-btn {
        background: var(--orange-color);
        color: white;
        border: none;
        padding: 12px 40px;
        border-radius: 25px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
      }

      .hero-btn:hover {
        background: #ff9a1a;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
      }

      @media (max-width: 992px) {
        .hero-section {
          padding: 0 40px;
        }
      }

      @media (max-width: 768px) {
        .hero-section {
          height: 400px;
          margin-top: 130px;
          padding: 0 20px;
          justify-content: center;
        }

        .hero-card {
          padding: 30px 25px;
          max-width: 100%;
        }

        .hero-card h2 {
          font-size: 20px;
        }

        .hero-card p {
          font-size: 14px;
        }

        .hero-btn {
          padding: 10px 30px;
          font-size: 14px;
        }
      }

      /* Why Section */
      .why-section {
        background: white;
        padding: 60px 20px;
      }

      .why-container {
        max-width: 1200px;
        margin: 0 auto;
      }

      .why-title {
        text-align: center;
        color: var(--primary-color);
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 40px;
      }

      .why-content {
        text-align: center;
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        max-width: 900px;
        margin: 0 auto;
      }

      .why-content p {
        margin-bottom: 15px;
      }

      @media (max-width: 768px) {
        .hero-section {
          height: 400px;
          margin-top: 130px;
        }

        .hero-card {
          padding: 30px 25px;
          margin: 0 15px;
        }

        .hero-card h2 {
          font-size: 20px;
        }

        .hero-card p {
          font-size: 14px;
        }

        .hero-btn {
          padding: 10px 30px;
          font-size: 14px;
        }

        .why-title {
          font-size: 26px;
        }

        .why-content {
          font-size: 14px;
        }
      }

      /* Feature Cards Section */
      .features-section {
        padding: 80px 20px;
        background-color: #f5f5f5;
      }

      .features-container {
        max-width: 1200px;
        margin: 0 auto;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 40px;
      }

      .feature-card {
        background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
        border-radius: 12px;
        padding: 50px 35px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .feature-card::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.1) 0%,
          transparent 70%
        );
        transition: all 0.5s ease;
      }

      .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
      }

      .feature-card:hover::before {
        top: -60%;
        right: -60%;
      }

      .feature-icon {
        width: 100px;
        height: 100px;
        background-color: #001c69;
        border-radius: 12px;
        margin: 0 auto 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        box-shadow: 0 5px 20px rgba(0, 28, 105, 0.3);
      }

      .feature-icon svg {
        width: 50px;
        height: 50px;
        fill: white;
      }

      .feature-title {
        color: #001c69;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
      }

      .feature-description {
        color: #333;
        font-size: 15px;
        line-height: 1.6;
        position: relative;
        z-index: 1;
      }

      /* Responsive */
      @media (max-width: 768px) {
        .features-section {
          padding: 60px 20px;
        }

        .features-grid {
          grid-template-columns: 1fr;
          gap: 30px;
        }

        .feature-card {
          padding: 40px 25px;
        }

        .feature-icon {
          width: 80px;
          height: 80px;
          margin-bottom: 25px;
        }

        .feature-icon svg {
          width: 40px;
          height: 40px;
        }

        .feature-title {
          font-size: 18px;
        }

        .feature-description {
          font-size: 14px;
        }
      }

      /* Menu Section */
      .menu-section {
        padding: 60px 20px;
        background-color: white;
      }

      .menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        border-bottom: 3px solid var(--primary-color);
        padding-bottom: 15px;
      }

      .menu-title {
        color: var(--primary-color);
        font-size: 28px;
        font-weight: 700;
        margin: 0;
      }

      .filter-btn {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 18px;
        transition: all 0.3s;
      }

      .filter-btn:hover {
        background-color: #003399;
      }

      /* Category Badge */
      .category-badge {
        background-color: var(--green-color);
        color: white;
        padding: 8px 20px;
        border-radius: 4px;
        font-weight: 600;
        font-size: 16px;
        display: inline-block;
        margin-bottom: 30px;
      }

      /* Food Cards Grid */
      .food-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 20px;
      }

      .food-card {
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      }

      .food-card:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(-5px);
      }

      .food-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        background-color: #f5e6d3;
      }

      .food-content {
        padding: 20px;
      }

      .food-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
      }

      .food-price {
        color: var(--primary-color);
        font-size: 22px;
        font-weight: 700;
      }

      .add-btn {
        background-color: var(--orange-color);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
      }

      .add-btn:hover {
        background-color: #ff9a1a;
        transform: scale(1.1);
      }

      .food-name {
        color: var(--primary-color);
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
      }

      .food-tag {
        background-color: var(--green-color);
        color: white;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 13px;
        display: inline-block;
      }

      /* Sidebar */
      .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
      }

      .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
      }

      .sidebar {
        position: fixed;
        top: 0;
        left: -450px;
        width: 400px;
        height: 100vh;
        background-color: white;
        z-index: 1000;
        transition: all 0.3s;
        overflow-y: auto;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
      }

      .sidebar.active {
        left: 0;
      }

      .sidebar-content {
        padding: 30px;
      }

      .sidebar-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: #666;
      }

      .sidebar-image {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        margin: 0 auto 30px;
        display: block;
        object-fit: cover;
        background-color: #f5e6d3;
      }

      .sidebar-title-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
      }

      .flag-icon {
        width: 30px;
        height: 20px;
        border-radius: 3px;
      }

      .sidebar-title {
        color: var(--primary-color);
        font-size: 22px;
        font-weight: 700;
        margin: 0;
      }

      .rating-stars {
        color: #ffc107;
        margin-bottom: 5px;
      }

      .rating-stars i {
        font-size: 16px;
      }

      .rating-text {
        color: #666;
        font-size: 14px;
        margin-bottom: 20px;
      }

      .detail-section {
        margin-bottom: 25px;
      }

      .detail-heading {
        color: var(--primary-color);
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
      }

      .detail-text {
        color: #333;
        font-size: 15px;
        line-height: 1.6;
      }

      .nutrition-circles {
        display: flex;
        gap: 20px;
        margin-top: 15px;
      }

      .nutrition-item {
        text-align: center;
      }

      .nutrition-circle {
        width: 70px;
        height: 70px;
        border: 3px solid var(--primary-color);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px;
      }

      .nutrition-value {
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-color);
      }

      .nutrition-unit {
        font-size: 12px;
        color: var(--primary-color);
      }

      .nutrition-label {
        font-size: 14px;
        color: #666;
      }

      .add-to-cart-btn {
        background-color: var(--orange-color);
        color: white;
        border: none;
        padding: 15px;
        border-radius: 8px;
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 30px;
      }

      .add-to-cart-btn:hover {
        background-color: #ff9a1a;
      }

      /* Filter Dropdown */
      .filter-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        border: 1px solid #ddd;
        border-radius: 6px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 10px;
        min-width: 150px;
        display: none;
        z-index: 100;
      }

      .filter-dropdown.active {
        display: block;
      }

      .filter-option {
        padding: 10px 15px;
        cursor: pointer;
        transition: all 0.3s;
        border-radius: 4px;
        position: relative;
      }

      .filter-option:hover {
        background-color: #f0f0f0;
      }

      .filter-option.active {
        background-color: var(--primary-color);
        color: white;
        font-weight: 600;
      }

      .filter-option.active::after {
        content: "✓";
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
      }

      @media (max-width: 768px) {
        .sidebar {
          width: 100%;
          left: -100%;
        }

        .sidebar.active {
          left: 0;
        }

        .food-grid {
          grid-template-columns: 1fr;
        }

        .menu-header {
          flex-direction: column;
          gap: 15px;
          align-items: flex-start;
        }
      }

      /* Service Features Section */
      .service-features {
        padding: 80px 20px;
        background-color: white;
      }

      .features-container {
        max-width: 1200px;
        margin: 0 auto;
      }

      .features-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* gap: 40px; */
        /* margin-bottom: 40px; */
      }

      /* Feature Card */
      .feature-item {
        display: grid;
        grid-template-rows: 1fr 1fr;
        height: 800px;
      }

      .feature-item.reverse .feature-image-wrapper {
        order: 1;
      }

      .feature-item.reverse .feature-content {
        order: 2;
      }

      /* Feature Image */
      .feature-image-wrapper {
        position: relative;
        border-radius: 0;
        overflow: hidden;
        box-shadow: none;
        height: 100%;
      }

      .feature-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      .feature-image-wrapper:hover .feature-image {
        transform: scale(1.05);
      }

      /* Feature Content */
      .feature-content {
        background-color: white;
        padding: 00px 50px;
        border-radius: 0;
        box-shadow: none;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
      }

      .feature-title {
        color: #001c69;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.3;
      }

      .feature-subtitle {
        color: #333;
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 25px;
      }

      .feature-description {
        color: #666;
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
      }

      /* CTA Button */
      .cta-button {
        background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
        color: white;
        border: none;
        padding: 15px 40px;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .cta-button:hover {
        background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
      }

      .cta-button:active {
        transform: translateY(-1px);
      }

      /* Responsive */
      @media (max-width: 992px) {
        .features-row {
          grid-template-columns: 1fr;
          gap: 60px;
        }

        .feature-item.reverse {
          flex-direction: column;
        }

        .feature-image {
          height: 350px;
        }

        .feature-content {
          padding: 30px;
        }

        .feature-title {
          font-size: 24px;
        }
      }

      @media (max-width: 576px) {
        .service-features {
          padding: 60px 15px;
        }

        .feature-image {
          height: 280px;
        }

        .feature-content {
          padding: 25px 20px;
        }

        .feature-title {
          font-size: 22px;
        }

        .feature-subtitle,
        .feature-description {
          font-size: 14px;
        }

        .cta-button {
          padding: 12px 30px;
          font-size: 14px;
        }

        .purple-badge {
          width: 40px;
          height: 40px;
          font-size: 16px;
          top: 15px;
          right: 15px;
        }
      }

      

       /* Testimonial Heading Section */
        .testimonial-heading-section {
            background-color: #f5f5f5;
            padding: 80px 20px;
            text-align: center;
        }

        .testimonial-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .main-heading {
            color: var(--primary-color);
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 25px;
            letter-spacing: 0.5px;
            line-height: 1.3;
            text-transform: uppercase;
        }

        .sub-heading {
            color: #333;
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 1px;
            line-height: 1.6;
            text-transform: uppercase;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .testimonial-heading-section {
                padding: 60px 20px;
            }

            .main-heading {
                font-size: 28px;
            }

            .sub-heading {
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            .testimonial-heading-section {
                padding: 50px 15px;
            }

            .main-heading {
                font-size: 24px;
                margin-bottom: 20px;
            }

            .sub-heading {
                font-size: 14px;
                letter-spacing: 0.5px;
            }
        }


     /* Clients Carousel Section */
        .clients-carousel-section {
            padding: 80px 20px;
            background-color: white;
        }

        .carousel-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .carousel-card {
            background: white !important;
            border-radius: 12px !important;
            overflow: hidden !important;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
            transition: all 0.3s ease;
            height: 100%;
            margin: 0 10px !important;
        }

        .carousel-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .carousel-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .carousel-card-content {
            padding: 25px;
        }

        .carousel-card-title {
            color: var(--primary-color);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            min-height: 50px;
        }

        .carousel-card-text {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
        }

        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }

        .carousel-control-prev {
            left: -60px;
        }

        .carousel-control-next {
            right: -60px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            background-color: var(--orange-color);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 20px;
            height: 20px;
        }

        /* Carousel Indicators */
        .carousel-indicators {
            margin-bottom: -50px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary-color);
            border: none;
            opacity: 0.5;
        }

        .carousel-indicators button.active {
            opacity: 1;
            background-color: var(--orange-color);
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .clients-carousel-section {
                padding: 60px 20px;
            }

            /* Mobile: One card per slide */
            .carousel-inner .row {
                display: flex;
                flex-wrap: nowrap;
            }
            
            .carousel-inner .col-md-4 {
                flex: 0 0 100%;
                max-width: 100%;
                width: 100%;
            }
            
            /* Smaller arrows for mobile */
            .carousel-control-prev,
            .carousel-control-next {
                width: 35px;
                height: 35px;
                background-color: var(--primary-color);
            }
            
            .carousel-control-prev {
                left: 5px;
            }
            
            .carousel-control-next {
                right: 5px;
            }
            
            .carousel-control-prev-icon,
            .carousel-control-next-icon {
                width: 15px;
                height: 15px;
            }
            
            .carousel-card {
                margin: 0 20px;
            }
            
            .carousel-card-title {
                font-size: 18px;
                min-height: auto;
            }

            .carousel-img {
                height: 200px;
            }

            .carousel-card-content {
                padding: 20px;
            }
        }

        @media (min-width: 769px) and (max-width: 992px) {
            /* Tablet: Show two cards per slide */
            .carousel-inner .col-md-4 {
                flex: 0 0 50%;
                max-width: 50%;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 45px;
                height: 45px;
            }
            
            .carousel-control-prev {
                left: -25px;
            }
            
            .carousel-control-next {
                right: -25px;
            }
        }

        @media (max-width: 576px) {
            .carousel-img {
                height: 180px;
            }

            .carousel-card-title {
                font-size: 16px;
            }

            .carousel-card-text {
                font-size: 14px;
            }
            
            /* Even smaller arrows for very small screens */
            .carousel-control-prev,
            .carousel-control-next {
                width: 30px;
                height: 30px;
            }
            
            .carousel-control-prev-icon,
            .carousel-control-next-icon {
                width: 12px;
                height: 12px;
            }
            
            .carousel-card {
                margin: 0 15px;
            }
          }

/* Trust Section with Circular Design */
.trust-section {
    padding: 50px 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.trust-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
}

.trust-logo-section {
    padding: 70px 20px;
    background-color: white;
    overflow: hidden;
}

.logos-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-10px);
}

.logo-circle {
    width: 130px;
    height: 130px;
    /* background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3); */
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.logo-item:hover .logo-circle {
    /* box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5); */
    transform: scale(1.05);
}

.logo-circle-inner {
    width: 105px;
    height: 105px;
    /* background: white; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-logo-icon {
    width: 140px !important;
    height: 100px !important;
    object-fit: contain;
}

.logo-text {
    font-size: 11px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.logo-subtext {
    font-size: 10px;
    font-weight: 600;
    color: #666;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.logo-item:nth-child(1) { animation-delay: 0.1s; }
.logo-item:nth-child(2) { animation-delay: 0.2s; }
.logo-item:nth-child(3) { animation-delay: 0.3s; }
.logo-item:nth-child(4) { animation-delay: 0.4s; }
.logo-item:nth-child(5) { animation-delay: 0.5s; }
.logo-item:nth-child(6) { animation-delay: 0.6s; }
.logo-item:nth-child(7) { animation-delay: 0.7s; }

/* Responsive */
@media (max-width: 992px) {
    .logos-wrapper {
        gap: 30px;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .logo-circle-inner {
        width: 86px;
        height: 86px;
    }

    .trust-logo-icon {
        width: 140px !important;
        height: 100px !important;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 50px 20px;
    }

    .trust-heading {
        font-size: 24px;
        margin-bottom: 40px;
    }
.logos-wrapper {
        flex-wrap: nowrap;           
        overflow-x: auto;           
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 15px 0 25px 0;
        gap: 25px;
        justify-content: flex-start;
    }

    .logo-circle {
        width: 90px;
        height: 90px;
    }

    .logo-circle-inner {
        width: 78px;
        height: 78px;
    }

    .trust-logo-icon {
        width: 140px !important;
        height: 100px !important;
        object-fit: contain;
    }

    .logo-text {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .trust-heading {
        font-size: 20px;
        margin-bottom: 30px;
    }

.logos-wrapper {
        flex-wrap: nowrap;           
        overflow-x: auto;           
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 15px 0 25px 0;
        gap: 25px;
        justify-content: flex-start;
    }

    .logo-circle {
        width: 80px;
        height: 80px;
    }

    .logo-circle-inner {
        width: 70px;
        height: 70px;
    }

  .trust-logo-icon {
        width: 140px !important;
        height: 100px !important;
        object-fit: contain;
    }

    .logo-text {
        font-size: 9px;
    }

    .logo-subtext {
        font-size: 8px;
    }
}

/*new style*/
/* Updated Navigation Arrows for Mobile */
      .custom-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background-color: #3b5998;
        border: none;
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: opacity 0.3s;
      }

      .custom-nav.prev {
        left: 5px;
        /* Moved inside slightly for mobile tap space */
      }

      .custom-nav.next {
        right: 5px;
      }

      /* Desktop override for arrows */
      @media (min-width: 992px) {
        .custom-nav.prev {
          left: -25px;
        }

        .custom-nav.next {
          right: -25px;
        }
      }

      /* Ensure the carousel doesn't cut off shadows */
      .carousel-inner {
        padding: 15px 0;
      }

      /* Custom Time Dropdown Styling */
      .custom-time-dropdown {
        position: relative;
        width: 100%;
        font-family: 'Inter', sans-serif;
      }

      .time-trigger {
        display: flex;
        align-items: center;
        cursor: pointer;
        width: 100%;
        color: #001c69;
        font-weight: 500;
        justify-content: space-between;
        /* Ensure arrow pushes to right if needed, but flex settings below might override */
      }

      /* Adjust selected time spacing */
      .selected-time {
        margin-left: 10px;
        margin-right: auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .arrow-icon {
        font-size: 12px;
        transition: transform 0.3s ease;
      }

      .custom-time-dropdown.active .arrow-icon {
        transform: rotate(180deg);
      }

      .time-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 300px;
        margin-top: 10px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        display: none;
        z-index: 1000;
        overflow: hidden;
        padding: 10px 0;
        border: 1px solid #eee;
      }

      .custom-time-dropdown.active .time-dropdown-menu {
        display: block;
        animation: fadeIn 0.2s ease;
      }

      .time-option {
        padding: 12px 20px;
        cursor: pointer;
        color: #001c69;
        font-weight: 600;
        font-size: 15px;
        transition: background 0.2s;
        display: flex;
        align-items: center;
      }

      .time-option:hover {
        background-color: #f8f9fa;
      }

      .price {
        font-weight: 700;
        margin-left: 5px;
      }

      .dropdown-info-text {
        padding: 15px 20px;
        font-size: 13px;
        color: #6c757d;
        background-color: #f8f9fa;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        line-height: 1.4;
        margin: 5px 0;
      }

      .relais-option {
        font-style: italic;
        justify-content: space-between;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Adjust wrapper to allow absolute dropdown to overflow */
      .input-wrapper.custom-time-wrapper {
        overflow: visible !important;
        cursor: pointer;
      }

      /* Creneaux Section */
      .creneaux-section {
        padding: 40px 0;
        background-color: #fff;
        border-bottom: 1px solid var(--medium-gray);
      }

      .creneaux-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
      }

      .date-selector-wrapper {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 10px;
        overflow: hidden;
        position: relative;
        min-width: 300px; /* Ensure it doesn't shrink too much */
      }

      .date-strip {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 5px 0;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
      }

      .date-strip::-webkit-scrollbar {
        display: none;
      }

      .date-card {
        min-width: 100px;
        height: 80px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        user-select: none;
      }

      .date-card:hover {
        border-color: var(--primary-color);
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      }

      .date-card.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
        box-shadow: 0 4px 12px rgba(0, 28, 105, 0.2);
      }

      .date-card .day {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 5px;
      }

      .date-card .date {
        font-size: 18px;
        font-weight: 700;
      }

      .scroll-btn {
        background: white;
        border: 1px solid #e9ecef;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--primary-color);
        transition: all 0.3s ease;
        z-index: 2;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      }

      .scroll-btn:hover {
        background: var(--primary-color);
        color: white;
      }

      /* Time Selector */
      .time-selector-wrapper {
        flex: 0 0 300px;
      }

      .custom-select-wrapper {
        position: relative;
        user-select: none;
        width: 100%;
      }

      .custom-select-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        font-size: 16px;
        font-weight: 500;
        color: var(--text-color);
        height: 60px;
        background: white;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .custom-select-trigger:hover {
        border-color: var(--primary-color);
      }

      .custom-select-trigger i {
        color: var(--primary-color);
      }

      .custom-options {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #e9ecef;
        border-top: none;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 100;
        max-height: 250px;
        overflow-y: auto;
      }

      .custom-select.open .custom-options {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateY(0);
      }

      .custom-option {
        padding: 15px 20px;
        font-size: 15px;
        color: var(--text-color);
        cursor: pointer;
        transition: all 0.2s ease;
        border-bottom: 1px solid #f8f9fa;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .custom-option:last-child {
        border-bottom: none;
      }

      .custom-option:hover {
        background: #f8f9fa;
        color: var(--primary-color);
      }

      .custom-option.selected {
        background: rgba(0, 28, 105, 0.05);
        color: var(--primary-color);
        font-weight: 600;
      }

      .option-price {
        font-weight: 600;
        color: var(--orange-color);
      }

      /* Delivery Search Bar (Header Center) */
      .delivery-search-container {
        display: flex;
        align-items: center;
        background: #fff;
        border-radius: 8px; /* Slightly rounded */
        /* padding: 5px; */
        gap: 10px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }

      .input-wrapper.address-wrapper {
        min-width: 250px;
        border-right: none;
        border-radius: 4px;
        box-shadow: none;
        border: 1px solid #e0e0e0;
      }
      
      .input-wrapper.custom-dropdown-wrapper {
        min-width: 140px;
        cursor: pointer;
        position: relative;
        border-radius: 4px;
        box-shadow: none;
        border: 1px solid #e0e0e0;
        padding: 5px 15px;
        height: 50px;
        display: flex;
        align-items: center;
      }

      .input-wrapper.custom-dropdown-wrapper:hover {
         border-color: var(--primary-color);
      }

      .dropdown-trigger {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        font-size: 14px;
        font-weight: 600;
        color: var(--text-color);
      }
      
      .selected-text {
        margin: 0 5px;
        white-space: nowrap;
      }

      .custom-dropdown-menu {
        position: absolute;
        top: 110%;
        left: 0;
        background: white;
        border: 1px solid #eee;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        min-width: 280px; /* Increased width for longer text */
        max-height: 300px; /* Scrollable */
        overflow-y: auto;
        padding: 5px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 1100;
      }

      .custom-dropdown-wrapper.active .custom-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .dropdown-item {
        padding: 10px 20px;
        cursor: pointer;
        font-size: 14px;
        color: #333;
        transition: background 0.2s;
      }

      .dropdown-item:hover {
        background: #f8f9fa;
        color: var(--primary-color);
      }

      .dropdown-info {
        padding: 10px 20px;
        font-size: 12px;
        color: #666;
        background: #f9f9f9;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin: 5px 0;
      }

      /* Mobile styles for the search bar */
      @media (max-width: 992px) {

        
        .mobile-inputs-row {
          display: flex;
          gap: 10px;
          padding: 10px 0;
        }

        .input-wrapper.custom-dropdown-wrapper {
           flex: 1;
           min-width: auto;
           padding: 5px 10px;
           height: 48px;
           justify-content: center;
        }
        
        /* Align last dropdown to the right to prevent overflow */
        .mobile-inputs-row .input-wrapper:last-child .custom-dropdown-menu {
            left: auto;
            right: 0;
        }

        .dropdown-trigger {
           justify-content: center;
           width: 100%;
        }
        
        .dropdown-trigger .selected-text {
           font-size: 13px;
           white-space: nowrap;
           overflow: hidden;
           text-overflow: ellipsis;
        }
        
        .dropdown-trigger i {
           font-size: 16px;
           margin-right: 5px;
        }
        
        .dropdown-trigger .arrow-icon {
           display: none;
        }
      }