/* ==========================================
   Restaurants SaaS Landing CSS
   ========================================== */
:root {
    --rest-primary: #0b1b3f;
    --rest-gold: #c5a45c;
    --rest-bg: #f8f9fa;
    --rest-text: #444;
}

.rest-landing { font-family: 'Inter', sans-serif; background: var(--rest-bg); color: var(--rest-text); overflow-x: hidden; }
.social-col { display: none !important; }
.back-to-home-btn {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(197, 164, 92, 0.1); color: var(--rest-primary);
    padding: 10px 20px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: 0.3s;
}
.back-to-home-btn:hover { background: var(--rest-primary); color: #fff; }

/* Hero Section */
.rest-landing .hero { padding: 100px 0; background: var(--rest-primary); color: white; border-bottom: 3px solid var(--rest-gold); }
.rest-landing .hero-container { display: flex; align-items: center; justify-content: space-between; gap: 50px; max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.rest-landing .hero-text { flex: 1; text-align: left; }
.rest-landing .gc-badge { display: inline-block; background: rgba(197, 164, 92, 0.2); color: var(--rest-gold); padding: 6px 18px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.rest-landing .hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
.rest-landing .hero-text h1 span { color: var(--rest-gold); }
.rest-landing .hero-text p { font-size: 1.15rem; color: #cbd5e0; line-height: 1.6; max-width: 550px; }

/* Floating App Mockup */
.rest-landing .hero-visuals { flex: 1; display: flex; justify-content: flex-end; align-items: center; perspective: 1200px; }
.floating-mockup { width: 100%; max-width: 450px; border-radius: 25px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); border: 2px solid rgba(255,255,255,0.05); animation: floatImg 6s ease-in-out infinite; }

@keyframes floatImg { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }

/* Shared Buttons */
.gc-btn-primary { background: var(--rest-gold); color: #fff; border: none; padding: 18px 45px; border-radius: 50px; font-size: 1.1rem; font-weight: 800; cursor: pointer; box-shadow: 0 5px 15px rgba(197, 164, 92, 0.2); transition: all 0.3s ease; }
.gc-btn-primary:hover { background: #fff; color: var(--rest-primary); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(197, 164, 92, 0.4); }

/* Features Grid */
.rest-landing .f-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
.rest-landing .f-item { padding: 30px 20px; border-radius: 16px; border: 1px solid rgba(0,0,0,0.05); text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: 0.3s; background: #fff; }
.rest-landing .f-item:hover { transform: translateY(-5px); border-color: var(--rest-gold); }
.rest-landing .f-icon { width: 60px; height: 60px; background: #fffbf0; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--rest-gold); font-size: 24px; }
.rest-landing .f-item h3 { margin-bottom: 10px; color: var(--rest-primary); font-size: 1.2rem; font-weight: 800; }
.rest-landing .f-item p { color: #666; font-size: 14px; line-height: 1.6; margin: 0; }

/* Pricing Cards */
.rest-landing .p-card { background: white; padding: 40px 30px; border-radius: 20px; border: 1px solid #eee; text-align: center; transition: 0.3s; position: relative; display: flex; flex-direction: column; }
.rest-landing .p-card:hover { border: 2px solid var(--rest-gold); transform: scale(1.02); box-shadow: 0 15px 40px rgba(0,0,0,0.1); z-index: 2; }
.rest-landing .p-features { list-style: none; padding: 0; text-align: left; margin-bottom: 30px; flex-grow: 1; border-top: 1px solid #f4f4f4; padding-top: 20px; }
.rest-landing .p-features li { padding: 10px 0; font-size: 14px; color: #555; display: flex; align-items: center; gap: 10px; }
.rest-landing .p-features li i { color: var(--rest-gold); min-width: 15px; }
.rest-landing .btn-select { width: 100%; padding: 15px; background: var(--rest-primary); color: white; border: none; border-radius: 12px; font-weight: bold; font-size: 16px; cursor: pointer; transition: 0.3s; }
.rest-landing .btn-select:hover { background: var(--rest-gold); color: var(--rest-primary); transform: translateY(-2px); }

/* Responsive */
@media (max-width: 991px) {
    .rest-landing .hero-container { flex-direction: column; text-align: center; gap: 40px; }
    .rest-landing .hero-text { text-align: center; }
    .rest-landing .hero-visuals { justify-content: center; }
    .floating-mockup { max-width: 90%; }
    .rest-landing .f-grid { grid-template-columns: 1fr 1fr; }
    .rest-landing .p-grid, .gc-checkout-grid { grid-template-columns: 1fr; padding: 0 15px; }
    .gc-bulk-section .container { flex-direction: column; text-align: center; gap: 20px; }
}
@media (max-width: 576px) {
    .rest-landing .f-grid { grid-template-columns: 1fr; }
}