:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --surface2:#f6f7f9;
  --text:#101828;
  --muted:#667085;
  --line:#e4e7ec;

  --brand:#dd3517;   
  --brand2:#12b76a;  
  --shadow: 0 10px 25px rgba(16,24,40,.08);

  --radius:16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: var(--bg);
}
a{color:inherit; text-decoration:none}
.container{width:min(1100px, 92%); margin:0 auto}

/* Topbar */
.topbar{
  border-bottom:1px solid var(--line);
  background: var(--surface);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:10px 0;
}
.topbar__left{
  display:flex; flex-wrap:wrap; gap:10px;
  color:var(--muted);
  font-size:14px;
}
.sep{opacity:.65}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:14px;
  background: var(--surface2);
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.logo{
  display:flex;
  align-items:center;
}

.logo-img{
  height:100px;        /* normal readable size */
  width:auto;         /* keeps proportions */
  max-width:180px;    /* prevents huge logos */
}
.nav{display:flex; align-items:center; gap:10px}
.nav a{
  color:var(--muted);
  padding:10px 12px;
  border-radius:12px;
}
.nav a:hover{
  color:var(--text);
  background: var(--surface2);
}
.nav__cta{
  color:#fff !important;
  background: var(--brand);
  font-weight:800;
}

/* Mobile menu button */
.menuBtn{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--line);
  background: var(--surface);
}
.menuBtn span{display:block; height:2px; margin:6px 10px; background:var(--text); border-radius:2px}

/* Hero */
.hero{
  padding:56px 0 28px;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(247,144,9,.18), transparent 55%),
    radial-gradient(800px 420px at 90% 5%, rgba(18,183,106,.10), transparent 60%),
    var(--bg);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:22px;
  align-items:stretch;
}
.badge{
  display:inline-flex; width:max-content;
  padding:8px 12px; border-radius:999px;
  background: var(--surface2);
  border:1px solid var(--line);
  color:var(--muted);
  font-weight:600;
}
.hero__content h1{
  font-size: clamp(28px, 4vw, 46px);
  line-height:1.08;
  margin:12px 0 10px;
}
.muted{color:var(--muted)}
.small{font-size:13px}

.hero__actions{
  display:flex; gap:12px; margin:18px 0 18px; flex-wrap:wrap;
}
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}

.gallery-item{
  height:200px;          /* fixed box size */
  width:100%;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--line);
  background:#f6f7f9;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;      /* 👈 crops image to fit box */
  display:block;
}
@media (max-width:768px){
  .gallery{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:480px){
  .gallery{
    grid-template-columns: 1fr;
  }
}
.map iframe{
  box-shadow: 0 6px 16px rgba(16,24,40,.08);
  margin-top:32px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background: var(--surface);
  font-weight:800;
}
.btn--primary{
  border-color: transparent;
  color:#fff;
  background: var(--brand);
}
.btn--primary:hover{filter: brightness(.97)}
.btn--ghost{
  background: var(--surface);
}
.btn--ghost:hover{background: var(--surface2)}
.btn--small{padding:10px 12px; border-radius:12px; font-size:14px}

/* Stats */
.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:14px;
}
.stat{
  padding:12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 8px 18px rgba(16,24,40,.05);
}
.stat__num{font-weight:900}
.stat__label{color:var(--muted); font-size:13px; margin-top:4px}

/* Cards */
.card{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.list{list-style:none; padding:0; margin:0}
.list li{
  display:flex; justify-content:space-between;
  padding:9px 0;
  border-bottom:1px solid var(--line);
}
.list li:last-child{border-bottom:none}
.divider{height:1px; background: var(--line); margin:12px 0}
.quick{display:flex; gap:10px; flex-wrap:wrap}

/* Sections */
.section{padding:48px 0}
.section--alt{
  background: var(--surface2);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{margin-bottom:16px}
.section__head h2{
  margin:0 0 6px;
  font-size: clamp(22px, 3vw, 34px);
}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.grid4{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px}

/* Feature blocks */
.feature{
  padding:16px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 6px 16px rgba(16,24,40,.05);
}
.icon{font-size:22px; margin-bottom:8px}

/* Category cards */
.category{
  cursor:pointer;
  padding:16px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 6px 16px rgba(16,24,40,.05);
  transition: transform .12s ease, box-shadow .12s ease;
}
.category:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16,24,40,.10);
}
.category__t{font-weight:900}
.category__d{color:var(--muted); font-size:14px; margin-top:6px}

/* Brands */
.brandRow{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.brand{
  padding:14px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: var(--surface);
  text-align:center;
  color:var(--muted);
  font-weight:800;
}

/* Gallery placeholders */
.gallery{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}
.ph{
  height:160px;
  border-radius:18px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  display:grid; place-items:center;
  color:var(--muted);
  font-weight:800;
}
.ph--map{height:220px}

/* Testimonials */
.quote{
  padding:16px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 6px 16px rgba(16,24,40,.05);
}
.quote p{margin:0 0 10px; font-size:16px; line-height:1.4}

/* FAQ */
.faq{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background: var(--surface);
  box-shadow: 0 6px 16px rgba(16,24,40,.05);
}
.faq__q{
  width:100%;
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 16px;
  background: var(--surface);
  border:none; color:var(--text);
  cursor:pointer; font-weight:900;
  border-bottom:1px solid var(--line);
}
.faq__a{
  display:none;
  padding:14px 16px;
  color:var(--muted);
  background: #ffffff;
  border-bottom:1px solid var(--line);
}
.faq__icon{opacity:.75}

/* About / Pills */
.about{display:grid; grid-template-columns: 1.1fr .9fr; gap:14px; align-items:start}
.ticks{display:grid; gap:8px; color:var(--muted)}
.pillRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.pill{
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--line);
  background: var(--surface2);
  color:var(--muted);
  font-weight:800;
  font-size:14px;
}

/* Contact */
.contact{display:grid; grid-template-columns: 1.05fr .95fr; gap:14px}
.contactCards{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px}
.miniCard{
  padding:12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 6px 16px rgba(16,24,40,.05);
}
.miniCard__t{color:var(--muted); font-size:13px; margin-bottom:6px}

.form label{display:grid; gap:6px; margin:10px 0; color:var(--muted); font-size:14px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(221, 12, 12, 0.6);
  box-shadow: 0 0 0 4px rgba(247,144,9,.12);
}
.toast{
  margin-top:12px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(18,183,106,.25);
  background: rgba(18,183,106,.10);
  color:var(--text);
  display:none;
}

/* Footer */
.footer{
  padding:22px 0;
  border-top:1px solid var(--line);
  background: var(--surface);
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.footer__links{display:flex; gap:14px; color:var(--muted)}
.footer__links a:hover{color:var(--text)}

/* Floating buttons */
.fab{
  position:fixed; right:16px; bottom:16px;
  display:flex; flex-direction:column; gap:10px;
  z-index:80;
}
.fab__btn{
  width:48px; height:48px;
  border-radius:16px;
  border:1px solid var(--line);
  background: var(--surface);
  display:grid; place-items:center;
  box-shadow: var(--shadow);
}

/* Modal */
.modal{display:none}
.modal.isOpen{display:block}
.modal__backdrop{
  position:fixed; inset:0;
  background: rgba(16,24,40,.45);
}
.modal__panel{
  position:fixed;
  left:50%; top:50%;
  transform:translate(-50%, -50%);
  width:min(560px, 92%);
  border-radius:20px;
  border:1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding:16px;
}
.modal__top{display:flex; align-items:center; justify-content:space-between; gap:10px}
.iconBtn{
  width:40px; height:40px; border-radius:14px;
  border:1px solid var(--line);
  background: var(--surface2);
  color:var(--text);
  cursor:pointer;
}
.bullets{margin:10px 0 0; color:var(--muted)}
.bullets li{margin:8px 0}
.modal__actions{
  display:flex; gap:10px; justify-content:flex-end;
  margin-top:12px; flex-wrap:wrap
}

/* Responsive */
@media (max-width: 920px){
  .hero__grid{grid-template-columns: 1fr}
  .hero__stats{grid-template-columns: 1fr}
  .grid4{grid-template-columns: repeat(2, 1fr)}
  .grid3{grid-template-columns: 1fr}
  .brandRow{grid-template-columns: repeat(2, 1fr)}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .about{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .contactCards{grid-template-columns: 1fr}

  .nav{
    position:fixed; right:14px; top:70px;
    width:min(360px, 92%);
    flex-direction:column; align-items:stretch;
    padding:12px;
    border-radius:18px;
    border:1px solid var(--line);
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    display:none;
  }
  .nav.isOpen{display:flex}
  .menuBtn{display:block}
}
/* ===========================
   ENHANCEMENTS: ANIMATION + ALIGNMENT
   Paste at END of your CSS
=========================== */

/* smooth reveal animation */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .75s ease, transform .75s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}

/* nicer hover animations */
.btn,
.category,
.feature,
.stat,
.brand,
.quote,
.miniCard,
.gallery-item{
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover,
.category:hover,
.feature:hover,
.stat:hover,
.brand:hover,
.quote:hover,
.miniCard:hover,
.gallery-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16,24,40,.10);
}

/* hero text animation (subtle) */
.hero__content h1{
  animation: popIn .6s ease both;
}
@keyframes popIn{
  from{opacity:0; transform: translateY(10px)}
  to{opacity:1; transform: translateY(0)}
}

/* modal animation */
.modal__panel{
  animation: modalPop .18s ease both;
}
.modal__backdrop{
  animation: modalFade .18s ease both;
}
@keyframes modalFade{
  from{opacity:0} to{opacity:1}
}
@keyframes modalPop{
  from{opacity:0; transform:translate(-50%,-50%) scale(.96)}
  to{opacity:1; transform:translate(-50%,-50%) scale(1)}
}

/* prevent scroll when modal open */
.noScroll{overflow:hidden}

/* FAQ smooth open/close */
.faq__a{
  max-height:0;
  overflow:hidden;
  padding:0 16px;
  transition: max-height .35s ease, padding .35s ease;
  display:block; /* override your display:none */
}
.faq__a.isOpen{
  max-height:180px;
  padding:14px 16px;
}

/* better alignment on small screens */
@media (max-width: 920px){
  .topbar__inner{align-items:flex-start}
  .topbar__right{margin-left:auto}

  .hero{padding:40px 0 18px}
  .hero__actions{gap:10px}
  .card{padding:14px}

  /* make logo not too big on phone */
  .logo-img{height:70px; max-width:160px}
}

/* better spacing on very small phones */
@media (max-width: 480px){
  .topbar__left{font-size:13px}
  .btn{width:100%}               /* buttons stack nicely */
  .hero__actions{flex-direction:column}
  .logo-img{height:62px}
}

/* gallery image smooth zoom */
.gallery-item img{
  transition: transform .35s ease;
}
.gallery-item:hover img{
  transform: scale(1.06);
}

/* floating action buttons animation */
.fab__btn{
  transition: transform .2s ease, box-shadow .2s ease;
}
.fab__btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(16,24,40,.12);
}

/* smoother nav open on mobile */
@media (max-width: 920px){
  .nav{
    transform: translateY(-6px);
    opacity:0;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav.isOpen{
    opacity:1;
    transform: translateY(0);
  }
}
.waButtons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:8px;
}

.waBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: var(--surface2);
  font-weight:800;
  color: var(--text);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.waBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(236, 4, 4, 0.08);
  background:#ef0606;
}
