:root{
  --brand-blue:#0b3366;
  --muted:#6b7280;
  --accent:#8aa0b8;
  --white:#ffffff;
}

*{
  box-sizing:border-box;
}

body{
  font-family:Arial,Helvetica,sans-serif;
  color:#222222;
  margin:0;
  background:#f7f9fb;
  line-height:1.5;
}


/* Layout wrapper */
.wrap{
  max-width:1200px;
  margin:0 auto;
  padding:10px 16px;
}

/* Header */
.site-header{
  background:var(--brand-blue);
  color:#ffffff;
}

.site-header-inner{
  
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  padding:8px 0;
}

.site-header-left{
  display:flex;
  align-items:center;
  gap:12px;
}

.site-title{
  font-weight:800;
  font-size:1.1rem;
}

.tag{
  font-size:0.95rem;
  color:#dfe9f6;
}

.site-header-right{
  text-align:right;
  min-width:220px;
}

.site-header-contact a{
  color:#ffffff;
  text-decoration:none;
  font-weight:700;
}

.site-header-contact a:hover{
  text-decoration:underline;
}

.site-header-address{
  font-size:0.85rem;
  color:#dfe9f6;
}

.logo{
  height:60px;
}

/* Cards / content blocks */
.card{
  background:#ffffff;
  padding:16px 18px;
  border-radius:8px;
  margin:12px 0;
  box-shadow:0 1px 4px rgba(0,0,0,0.05);
}

/* Hero layout */
.hero{
  display:flex;
  gap:18px;
  align-items:center;
}

.hero-left{
  flex:1 1 320px;
}

.hero-right{
  flex:0 0 320px;
  text-align:center;
}

.hero h1{
  margin-top:0;
}

.lead{
  color:var(--muted);
  font-size:1.03rem;
}

/* Services list */
.services-overview h2{
  margin-top:0;
}

.services-list{
  columns:3;
  list-style:none;
  padding:0;
  margin:0;
}

.services-list li{
  padding:6px 0;
}

.services-list a{
  color:var(--brand-blue);
  text-decoration:none;
}

.services-list a:hover{
  text-decoration:underline;
}

/* Buttons */
.btn,
.btn-outline{
  display:inline-block;
  padding:8px 14px;
  border-radius:4px;
  text-decoration:none;
  font-size:0.95rem;
  margin-right:6px;
  transition:transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.btn{
  background:var(--brand-blue);
  color:#ffffff;
}

.btn-outline{
  border:1px solid var(--brand-blue);
  color:var(--brand-blue);
  background:transparent;
}

.btn:hover,
.btn-outline:hover{
  transform:translateY(-1px);
  box-shadow:0 2px 6px rgba(0,0,0,0.15);
}

.btn:hover{
  background:#09264a;
}

.btn-outline:hover{
  background:var(--brand-blue);
  color:#ffffff;
}

/* Footer */
.site-footer{
  background:#0b3350;
  color:#ffffff;
  padding:10px 0;
  margin-top:20px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  font-size:0.9rem;
}

.footer-links a{
  color:#ffffff;
  text-decoration:none;
  margin:0 4px;
}

.footer-links a:hover{
  text-decoration:underline;
}

/* Floating contact buttons */
.float-whatsapp,
.float-email{
  position:fixed;
  width:52px;
  height:52px;
  right:16px;
  z-index:999;
}

.float-whatsapp{
  bottom:90px;
}

.float-email{
  bottom:150px;
}

.float-whatsapp img,
.float-email img{
  width:100%;
  height:100%;
  border-radius:50%;
  box-shadow:0 2px 6px rgba(0,0,0,0.3);
}

/* Back to top button */
#topBtn{
  position:fixed;
  bottom:30px;
  right:16px;
  background:var(--brand-blue);
  color:#ffffff;
  border:none;
  padding:10px 14px;
  border-radius:6px;
  cursor:pointer;
  font-size:18px;
  z-index:999;
  display:none;
}

#topBtn.show{
  display:inline-block;
}

/* Simple fade-in animation for main content */
main{
  animation:fadeIn 0.4s ease-in;
}

@keyframes fadeIn{
  from{opacity:0;transform:translateY(8px);}
  to{opacity:1;transform:translateY(0);}
}

/* Responsive adjustments */
@media(max-width:720px){
  .site-header-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .site-header-right{
    text-align:left;
  }

  .logo{
    height:50px;
  }

  .hero{
    flex-direction:column;
  }

  .hero-right{
    order:-1;
  }

  .services-list{
    columns:1;
  }
}

/* RTL helper (for Arabic pages) */
[dir="rtl"] .site-header-inner{
  flex-direction:row-reverse;
}

[dir="rtl"] .site-header-right{
  text-align:left;
}

[dir="rtl"] .hero-left{
  text-align:right;
}
