/* ==========================================================================
   PREMIUM SAAS & FOOD DELIVERY UI (UBEREATS / DELIVEROO STYLE)
   ========================================================================== */
   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

   /* Reset & Scope (To prevent old CSS conflicts) */
   .premium-home {
       --primary: #00CC99; /* Deliveroo/UberEats style vibrant color */
       --primary-dark: #00A67C;
       --primary-light: #E6FAF4;
       --text-dark: #1F2937;
       --text-gray: #4B5563;
       --text-light: #9CA3AF;
       --bg-page: #F9FAFB;
       --bg-white: #FFFFFF;
       --radius-sm: 8px;
       --radius-md: 12px;
       --radius-lg: 20px;
       --radius-pill: 50px;
       --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
       --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
       --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
       --shadow-float: 0 20px 40px rgba(0,0,0,0.15);
       
       font-family: 'Inter', sans-serif !important;
       background-color: var(--bg-page) !important;
       color: var(--text-dark) !important;
       text-align: right;
   }
   
   html[dir="ltr"] .premium-home {
       text-align: left;
   }
   
   .premium-home * {
       font-family: 'Inter', sans-serif;
       box-sizing: border-box;
   }
   
   .premium-home h1, .premium-home h2, .premium-home h3, .premium-home h4 {
       font-family: 'Poppins', sans-serif !important;
       color: var(--text-dark);
       font-weight: 700;
       margin-top: 0;
   }
   
   .premium-home p {
       color: var(--text-gray);
       line-height: 1.6;
   }
   
   .premium-home a {
       text-decoration: none !important;
       transition: all 0.2s ease;
   }
   
   .premium-container {
       max-width: 1280px;
       margin: 0 auto;
       padding: 0 24px;
   }
   
   .premium-section {
       padding: 80px 0;
   }
   
   .section-head {
       display: flex;
       justify-content: space-between;
       align-items: flex-end;
       margin-bottom: 40px;
   }
   
   .section-head h2 {
       font-size: 2.2rem;
       margin-bottom: 8px;
       letter-spacing: -0.5px;
   }
   
   .section-head p {
       font-size: 1.1rem;
       margin: 0;
   }
   
   .btn-primary-new {
       background-color: var(--primary);
       color: #fff !important;
       padding: 14px 28px;
       border-radius: var(--radius-pill);
       font-weight: 600;
       font-size: 1rem;
       display: inline-flex;
       align-items: center;
       gap: 10px;
       border: none;
       box-shadow: 0 4px 12px rgba(0, 204, 153, 0.3);
       cursor: pointer;
   }
   
   .btn-primary-new:hover {
       background-color: var(--primary-dark);
       transform: translateY(-2px);
       box-shadow: 0 6px 16px rgba(0, 204, 153, 0.4);
   }
   
   /* ================= HERO SECTION ================= */
   .hero-wrap {
       position: relative;
       padding: 100px 0 140px;
       background: #fff;
       overflow: hidden;
       border-bottom: 1px solid #f3f4f6;
   }
   
   .hero-wrap::before {
       content: "";
       position: absolute;
       top: -20%;
       right: -10%;
       width: 60%;
       height: 140%;
       background: radial-gradient(circle, var(--primary-light) 0%, rgba(255,255,255,0) 70%);
       z-index: 0;
       opacity: 0.7;
   }
   
   .hero-grid {
       display: grid;
       grid-template-columns: 1fr 1.2fr;
       gap: 40px;
       align-items: center;
       position: relative;
       z-index: 1;
   }
   
   .hero-text h1 {
       font-size: 4rem;
       line-height: 1.1;
       margin-bottom: 24px;
       letter-spacing: -1px;
   }
   
   .hero-text h1 span {
       color: var(--primary);
   }
   
   .hero-text > p {
       font-size: 1.2rem;
       margin-bottom: 40px;
       max-width: 90%;
   }
   
   /* Floating Smart Search inside Hero */
   .hero-search-card {
       background: #fff;
       padding: 10px;
       border-radius: 100px;
       box-shadow: 0 15px 40px rgba(0,0,0,0.08);
       display: flex;
       align-items: center;
       width: 100%;
       max-width: 900px;
       border: 1px solid #f3f4f6;
       margin: 50px auto 0;
       position: relative;
       z-index: 5;
   }
   
   .search-input-wrap {
       flex: 1;
       display: flex;
       align-items: center;
       background: transparent;
       padding: 0 20px;
       height: 60px;
   }
   .search-input-wrap.bordered {
       border-right: 1px solid #e5e7eb;
   }
   html[dir="rtl"] .search-input-wrap.bordered {
       border-right: none;
       border-left: 1px solid #e5e7eb;
   }
   
   .search-input-wrap i.icon-main {
       color: var(--text-dark);
       font-size: 1.4rem;
       margin: 0 12px;
   }
   
   .search-input-wrap input {
       flex: 1;
       min-width: 0;
       border: none;
       background: transparent;
       padding: 0 5px;
       font-size: 1.1rem;
       outline: none;
       font-family: 'Inter', sans-serif;
       color: var(--text-dark);
   }
   
   .search-input-wrap input::placeholder {
       color: #9CA3AF;
       font-weight: 400;
   }
   
   .hero-search-card .btn-primary-new {
       padding: 0 24px;
       height: 56px;
       border-radius: 50px;
       font-size: 1.05rem;
       margin: 0 5px;
       flex-shrink: 0;
   }
   
   .btn-near-me-full {
       display: flex;
       align-items: center;
       gap: 8px;
       padding: 8px 16px;
       background: var(--primary-light);
       color: var(--primary);
       border-radius: var(--radius-pill);
       font-weight: 600;
       cursor: pointer;
       transition: all 0.3s;
       border: none;
       flex-shrink: 0;
   }
   
   .btn-near-me-full:hover {
       background: var(--primary);
       color: #fff;
   }
   
   .hero-image-wrap {
       position: relative;
       display: flex;
       justify-content: center;
   }
   
   .mockup-main {
       position: relative;
       z-index: 2;
       width: 100%;
       max-width: 420px;
       max-height: 500px;
       object-fit: cover;
       border-radius: 30px;
       box-shadow: var(--shadow-float);
       border: 8px solid #fff;
       transform: rotate(-3deg);
       transition: transform 0.5s ease;
   }
   
   .mockup-main:hover {
       transform: rotate(0deg);
   }
   
   .qr-floating-card {
       position: absolute;
       bottom: 20px;
       left: -30px;
       background: #fff;
       padding: 16px;
       border-radius: var(--radius-md);
       box-shadow: var(--shadow-lg);
       z-index: 3;
       display: flex;
       flex-direction: column;
       align-items: center;
       gap: 10px;
       animation: float 6s ease-in-out infinite;
   }
   
   .qr-floating-card img {
       width: 120px;
       height: 120px;
       border-radius: 8px;
   }
   
   .qr-floating-card span {
       font-size: 0.9rem;
       font-weight: 600;
       color: var(--primary);
   }
   
   @keyframes float {
       0% { transform: translateY(0px); }
       50% { transform: translateY(-15px); }
       100% { transform: translateY(0px); }
   }
   
   /* ================= VENDORS (RESTAURANTS) ================= */
   .vendors-grid {
       display: grid;
       grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
       gap: 30px;
   }
   
   .vendor-card-pro {
       background: #fff;
       border-radius: var(--radius-lg);
       overflow: hidden;
       box-shadow: var(--shadow-sm);
       border: 1px solid #f3f4f6;
       transition: all 0.3s ease;
       cursor: pointer;
       position: relative;
   }
   
   .vendor-card-pro:hover {
       box-shadow: var(--shadow-lg);
       transform: translateY(-4px);
   }
   
   .vc-image-wrap {
       position: relative;
       height: 220px;
       width: 100%;
       background-color: #f9fafb;
   }
   
   .vc-image-wrap img.cover-img {
       width: 100%;
       height: 100%;
       object-fit: cover;
   }
   
   .vc-overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.6) 100%);
   }
   
   .vc-tags {
       position: absolute;
       top: 16px;
       right: 16px;
       display: flex;
       gap: 8px;
   }
   
   .vc-tag {
       background: #fff;
       color: var(--text-dark);
       padding: 6px 12px;
       border-radius: var(--radius-pill);
       font-size: 0.75rem;
       font-weight: 700;
       box-shadow: var(--shadow-sm);
   }
   
   .vc-tag.promo {
       background: var(--primary);
       color: #fff;
   }
   
   .vc-time {
       position: absolute;
       bottom: 16px;
       right: 16px;
       background: #fff;
       padding: 6px 14px;
       border-radius: var(--radius-pill);
       font-size: 0.85rem;
       font-weight: 700;
       box-shadow: var(--shadow-md);
       display: flex;
       align-items: center;
       gap: 6px;
       z-index: 2;
   }
   
   .vc-logo {
       position: absolute;
       bottom: -24px;
       left: 20px;
       width: 64px;
       height: 64px;
       border-radius: 50%;
       border: 3px solid #fff;
       background: #fff;
       box-shadow: var(--shadow-sm);
       z-index: 2;
       object-fit: contain;
   }
   
   .vc-content {
       padding: 36px 20px 20px;
   }
   
   .vc-title-row {
       display: flex;
       justify-content: space-between;
       align-items: flex-start;
       margin-bottom: 8px;
   }
   
   .vc-title-row h3 {
       font-size: 1.25rem;
       margin: 0;
       white-space: nowrap;
       overflow: hidden;
       text-overflow: ellipsis;
       color: var(--text-dark);
   }
   
   .vc-rating {
       display: flex;
       align-items: center;
       gap: 6px;
       background: #F3F4F6;
       padding: 4px 10px;
       border-radius: 20px;
       font-size: 0.9rem;
       font-weight: 700;
       color: var(--text-dark);
   }
   
   .vc-rating i {
       color: #FBBF24;
   }
   
   .vc-meta {
       color: var(--text-gray);
       font-size: 0.85rem;
       margin-bottom: 16px;
   }
   
   .vc-meta span {
       display: inline-block;
   }
   
   .vc-meta span::after {
       content: "•";
       margin: 0 6px;
       color: #D1D5DB;
   }
   .vc-meta span:last-child::after {
       display: none;
   }
   
   .vc-footer {
       border-top: 1px solid #F3F4F6;
       padding-top: 16px;
       display: flex;
       align-items: center;
       gap: 8px;
       color: var(--text-gray);
       font-size: 0.85rem;
       font-weight: 500;
   }
   
   .btn-near-me-icon {
       width: 40px;
       height: 40px;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       background: transparent;
       color: var(--primary);
       font-size: 1.2rem;
       cursor: pointer;
       transition: all 0.3s;
       border: none;
   }
   
   .btn-near-me-icon:hover {
       background: var(--primary-light);
   }
   
   /* ================= CITIES SECTION ================= */
   .cities-grid {
       display: grid;
       grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
       gap: 30px;
   }
   
   .city-card-pro {
       position: relative;
       border-radius: var(--radius-lg);
       overflow: hidden;
       height: 320px;
       box-shadow: var(--shadow-sm);
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
       padding: 24px;
       transition: transform 0.3s ease;
       cursor: pointer;
       background: #111;
   }
   
   .city-card-pro:hover {
       transform: translateY(-5px);
       box-shadow: var(--shadow-md);
   }
   
   .city-card-pro img {
       position: absolute;
       top: 0; left: 0;
       width: 100%; height: 100%;
       object-fit: cover;
       opacity: 0.6;
       transition: opacity 0.3s, transform 3s ease;
   }
   
   .city-card-pro:hover img {
       opacity: 0.8;
       transform: scale(1.05);
   }
   
   .city-card-pro::after {
       content: "";
       position: absolute;
       inset: 0;
       background: rgba(0,0,0,0.3);
       z-index: 1;
       transition: background 0.3s;
   }
   
   .city-card-pro:hover::after {
       background: rgba(0,0,0,0.4);
   }
   
   .city-card-pro .city-content {
       position: relative;
       z-index: 2;
       color: #fff;
   }
   
   .city-card-pro .city-content h3 {
       color: #fff !important;
       font-size: 1.5rem;
       margin: 0 0 8px 0;
       text-shadow: 0 2px 8px rgba(0,0,0,0.6);
       letter-spacing: 0.5px;
   }
   
   .city-card-pro .city-content p {
       color: #fff;
       margin: 0;
       font-size: 0.9rem;
       font-weight: 500;
       background: rgba(0,0,0,0.4);
       padding: 4px 16px;
       border-radius: 20px;
       display: inline-block;
       backdrop-filter: blur(8px);
       border: 1px solid rgba(255,255,255,0.1);
   }
   
   /* ================= HOW IT WORKS (STEPS) ================= */
   .steps-wrapper {
       background: #fff;
       border-radius: var(--radius-lg);
       padding: 60px;
       box-shadow: var(--shadow-sm);
   }
   
   .steps-grid-pro {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
       gap: 40px;
       position: relative;
   }
   
   .step-item-pro {
       text-align: center;
   }
   
   .step-icon-pro {
       width: 80px;
       height: 80px;
       background: var(--primary-light);
       color: var(--primary);
       border-radius: 24px;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 2rem;
       margin: 0 auto 24px;
       transform: rotate(-10deg);
       transition: all 0.3s ease;
   }
   
   .step-item-pro:hover .step-icon-pro {
       transform: rotate(0deg) scale(1.1);
       background: var(--primary);
       color: #fff;
   }
   
   .step-item-pro h3 {
       font-size: 1.2rem;
       margin-bottom: 12px;
   }
   
   /* ================= PRICING ================= */
   .pricing-grid-pro {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
       gap: 30px;
       margin-top: 40px;
   }
   
   .price-card-pro {
       background: #fff;
       border-radius: var(--radius-lg);
       padding: 40px;
       border: 1px solid #E5E7EB;
       position: relative;
       transition: all 0.3s;
   }
   
   .price-card-pro.popular {
       border: 2px solid var(--primary);
       box-shadow: var(--shadow-lg);
       transform: scale(1.02);
   }
   
   .price-badge {
       position: absolute;
       top: -14px;
       left: 50%;
       transform: translateX(-50%);
       background: var(--primary);
       color: #fff;
       padding: 6px 16px;
       border-radius: var(--radius-pill);
       font-size: 0.8rem;
       font-weight: 700;
   }
   
   .price-amount {
       font-size: 3.5rem;
       font-family: 'Poppins', sans-serif;
       font-weight: 700;
       color: var(--text-dark);
       margin: 20px 0;
       display: flex;
       align-items:baseline;
       justify-content: center;
   }
   
   .price-amount span {
       font-size: 1rem;
       color: var(--text-gray);
       font-weight: 500;
   }
   
   .price-features {
       list-style: none;
       padding: 0;
       margin: 30px 0;
   }
   
   .price-features li {
       display: flex;
       align-items: center;
       gap: 12px;
       margin-bottom: 16px;
       font-size: 0.95rem;
   }
   
   .price-features li i.fa-check-circle {
       color: var(--primary);
       font-size: 1.2rem;
   }
   
   /* ================= RESPONSIVE ================= */
   @media (max-width: 1024px) {
       .hero-grid { grid-template-columns: 1fr; text-align: center; }
       .hero-text h1 { font-size: 3rem; }
       .hero-text > p { margin: 0 auto 40px; }
       .hero-search-card { margin: 0 auto; }
       .qr-floating-card { display: none; }
       .section-head { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
   }
   
   @media (max-width: 900px) {
       .hero-search-card { flex-direction: column; border-radius: 24px; padding: 20px; gap: 15px; }
       .search-input-wrap { width: 100%; border: 1px solid #e5e7eb !important; border-radius: 12px; height: 56px; }
       .hero-search-card .btn-primary-new { width: 100%; justify-content: center; border-radius: 12px; height: 56px; margin: 0; }
       .price-card-pro.popular { transform: none; }
   }
