/* Aalishan Crown – Global Styles */
:root{
  --brand:#ff6a00;
  --dark:#0f172a;
  --text:#1f2937;
  --muted:#6b7280;
  --bg:#fafafa;
  --card:#ffffff;
}

*{box-sizing:border-box;}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#fff;
  border-bottom:1px solid #eee;
}

.header-inner{
  max-width:1200px;
  margin:0 auto;
  padding:10px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand img{
  height:40px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.main-nav a{
  font-weight:600;
  color:var(--dark);
}

.call-btn{
  padding:8px 12px;
  background:var(--brand);
  color:#fff;
  border-radius:6px;
}

.menu-toggle{
  display:none;
  background:none;
  border:none;
  font-size:22px;
}

/* Mobile */
@media (max-width:768px){
  .menu-toggle{display:block;}
  .main-nav{
    position:absolute;
    top:60px;
    right:10px;
    background:#fff;
    border:1px solid #eee;
    border-radius:8px;
    padding:10px;
    flex-direction:column;
    gap:10px;
    display:none;
  }
  .main-nav.open{display:flex;}
}

/* Layout helpers */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:20px 14px;
}

.hero{
  background:linear-gradient(135deg,#fff4ec,#fff);
  padding:60px 14px;
}

.hero h1{
  font-size:28px;
  color:var(--dark);
}
.hero p{
  color:var(--muted);
  max-width:520px;
}

@media (max-width:600px){
  .hero h1{font-size:22px;}
}

/* Buttons */
.btn{
  display:inline-block;
  margin-top:12px;
  padding:10px 16px;
  border-radius:8px;
  background:var(--brand);
  color:#fff;
  font-weight:700;
}

/* Cards */
.card{
  background:var(--card);
  border:1px solid #eee;
  border-radius:12px;
  padding:16px;
  box-shadow:0 6px 18px rgba(0,0,0,.04);
  transition:transform .15s ease, box-shadow .15s ease;
}
.card:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(0,0,0,.08);
}

/* Work Gallery – Square Style */
.work-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
  margin-top:16px;
}

@media (min-width:768px){
  .work-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

.work-grid img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  border-radius:14px;
  background:#f3f3f3;
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
  transition:transform .2s ease, box-shadow .2s ease;
}

.work-grid img:hover{
  transform:scale(1.03);
  box-shadow:0 12px 28px rgba(0,0,0,0.18);
}

/* Guide & Service Hero Image */
.guide-hero,
.service-hero{
  margin-bottom:20px;
}

.guide-hero img,
.service-hero img{
  width:100%;
  max-height:280px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 12px 32px rgba(0,0,0,0.18);
}