:root{
  --border:#e5e5e5;
  --muted:#666;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:#fbf6ee;
  color:#111;
}

/* CALL BUTTON */
.call-btn{
  position:fixed;
  top:16px;
  left:16px;
  z-index:1000;
  background:#ff6a00;
  color:#fff;
  padding:10px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
  transition:transform .2s ease, box-shadow .2s ease;
}
.call-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(0,0,0,.22);
}

/* TOP BAR */
.topbar{
  position:fixed;
  top:16px;
  right:16px;
  z-index:999;
}
.topbar-inner{
  display:flex;
  gap:10px;
  align-items:center;
}

/* Social buttons */
.social-btn{
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  background:#fff;
  border-radius:999px;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease;
}
.social-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(0,0,0,.12);
}
.social-btn svg{ display:block; }

.lang-btn{
  border:1px solid var(--border);
  background:#fff;
  border-radius:999px;
  padding:8px 14px;
  cursor:pointer;
}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
}
.hero-content{
  text-align:center;
  padding:40px 20px;
}
.hero-logo{
  width:300px;
  max-width:70vw;
}
.subtitle{
  color:var(--muted);
  margin:20px 0 40px;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.card{
  background:#ffffff;
  border:1px solid #e9e2d8;
  border-radius:22px;
  padding:22px;
  text-decoration:none;
  color:#111;
  transition:transform .2s ease, box-shadow .2s ease;

  /* 🔥 THIS fixes alignment */
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;

  min-height:160px;
}

.card-title{
  font-weight:900;     /* 🔥 bold */
  font-size:22px;
  line-height:1.2;
}


.card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,.12);
}

/* Base icon box – SAME SIZE FOR ALL */
.card-icon{
  width: 56px;          /* 🔥 bigger */
  height: 56px;         /* 🔥 bigger */
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 12px;

  border-radius:16px;
  background: transparent;   /* clean for non-talabat */
}


.icon-img{
  width: 100%;
  height: 100%;
  object-fit: contain;   /* keeps logo visible */
}

/* TALABAT ICON */
.card-icon.talabat{
  background:#ff6a00;
  border-radius:16px;
}

.icon-img{
  width:70%;
}

/* SECTIONS */
.section{padding:60px 20px}
.section-inner{max-width:1200px;margin:auto}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:20px}

.info-card,.map-card{
  border:1px solid var(--border);
  border-radius:22px;
  padding:20px;
  background:#fffdf9;
}

.map-card iframe{
  width:100%;
  height:320px;
  border:0;
  border-radius:22px;
}

/* BUTTON */
.btn{
  display:inline-block;
  margin-top:12px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid #e9e2d8;
  background:#fff;
  color:#111;
  text-decoration:none;
  font-weight:600;
}

/* GALLERY */
.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.gallery img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:14px;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
}
.gallery img:hover{
  transform:scale(1.03);
  box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* LIGHTBOX */
#lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
}
#lightbox img{
  max-width:90%;
  max-height:90%;
  border-radius:16px;
}

/* FOOTER */
.footer{
  text-align:center;
  padding:20px;
  color:var(--muted);
}

/* RESPONSIVE */
@media(max-width:900px){
  .cards,.gallery,.two-col{grid-template-columns:1fr 1fr}
}
@media(max-width:520px){
  .cards,.gallery,.two-col{grid-template-columns:1fr}
}
