* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f4f7fb;
  color: #131c29;
}

.container {
  max-width: 420px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

h1 {
  margin: 8px 0 8px;
  color: #1c355e;
  font-size: 32px;
  font-weight: 700;
}

h2 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
}

.subtitle {
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 8px;
}

.hero {
    
  width: 160px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  
  display: block;
  
margin:0 auto 8px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card {
  padding: 25px 15px;
  border-radius: 16px;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
}

.card-link {
  text-decoration: none;
  color: white;
  display: block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.icon {
  font-size: 30px;
  margin-bottom: 8px;
}

.card p {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.blue {
  background: linear-gradient(135deg, #1557c2, #0ea5e9);
}

.lightblue {
  background: linear-gradient(135deg, #3b82f6, #0ea5e9);
}

.purple {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.teal {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.orange {
  background: linear-gradient(135deg, #fb923c, #f97316);
}

.gray {
  background: linear-gradient(135deg, #6b7280, #374151);
}

.service-link {
  text-decoration: none;
}

.service {
  margin-top: 25px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: #1e40af;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  margin-top: 25px;
  font-size: 12px;
  color: #888;
}


*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:'Poppins', sans-serif;
  background:#f4f7fb;
  color:#1f2937;
  padding-bottom: 70px;
}

.container{
  max-width:420px;
  margin:auto;
  padding:20px;
}

.page-header{
  margin-bottom:20px;
}

.back-link{
  display:inline-block;
  margin-bottom:14px;
  text-decoration:none;
  color:#1e40af;
  font-weight:600;
}

.page-header h1{
  margin:0 0 8px;
  font-size:30px;
  font-weight:700;
}

.page-header p{
  margin:0;
  color:#6b7280;
  line-height:1.5;
}

.restaurant-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.restaurant-card{
  background:white;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
}

.restaurant-image{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}

.restaurant-content{
  padding:18px;
}

.restaurant-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.restaurant-top h2{
  margin:0;
  font-size:20px;
  font-weight:600;
}

.tag{
  background:#e0ecff;
  color:#1e40af;
  font-size:12px;
  font-weight:600;
  padding:6px 10px;
  border-radius:999px;
  white-space:nowrap;
}

.description{
  margin:0 0 16px;
  color:#6b7280;
  font-size:14px;
  line-height:1.6;
}

.button-row{
  display:flex;
  gap:10px;
}

.btn{
  flex:1;
  text-align:center;
  text-decoration:none;
  padding:12px 14px;
  border-radius:12px;
  font-size:14px;
  font-weight:600;
}

.btn-outline{
  border:1px solid #dbe3f0;
  color:#1f2937;
  background:white;
}

.btn-primary{
  background:#1e40af;
  color:white;
}
.request-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.request-form label {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #dbe3f0;
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #1f2937;
  outline: none;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.08);
}

.request-form textarea {
  resize: vertical;
}

.request-note {
  margin-top: 14px;
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}
.success-message{
display:none;
margin-top:15px;
color:#16a34a;
font-weight:600;
text-align:center;
}
.bottom-nav{
position:fixed;
bottom:0;
left:0;
right:0;

background:white;
border-top:1px solid #e5e7eb;

display:flex;
justify-content:space-around;
align-items:center;

padding:10px 0;

box-shadow:0 -2px 10px rgba(0,0,0,0.05);
}

.nav-item{
text-decoration:none;
color:#6b7280;

display:flex;
flex-direction:column;
align-items:center;

font-size:12px;
}

.nav-item span{
margin-top:2px;
}

.nav-item.active{
color:#1e40af;
font-weight:600;
}