body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.navbar-brand {
    letter-spacing: 2px;
}

.nav-link {
    font-weight: 500;
}

.nav-link:hover {
    color: #555 !important;
}

.btn-dark {
    background-color: #000;
    border-color: #000;
}

.btn-dark:hover {
    background-color: #333;
    border-color: #333;
}
.logo {
    height: 28px;
    width: auto;
    display: block;
}

.navbar-brand {
    display: block;
    transform: translateY(-1px);
}

.brand-text {
    letter-spacing: 3px;
    font-size: 20px;
    line-height: 1;
    position: relative;
    top: -1px;   /* micro optical correction */
}
/* --- FOOTER --- */

/* --- FOOTER --- */

footer {
    background-color: #000;
}

footer h5,
footer h6 {
    color: #fff;
    letter-spacing: 2px;
}

footer p,
.footer-links li,
.footer-links a {
    color: #aaa;
    font-size: 14px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links li,
.footer-links a,
.footer-links i {
    transition: color 0.2s ease;
}

.footer-links li:hover,
.footer-links li:hover a,
.footer-links li:hover i {
    color: #fff;
}

.footer-logo {
    height: 28px;
    width: auto;
    display: block;
}
/* HOME SECTIONS */
.hero-image{
  height: 500px;
  background-image: url('/assets/images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
}
.icon-pill{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #000;
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
}
.company-logo{
  max-height: 100px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.company-logo:hover{
  opacity: 1;
  transform: scale(1.05);
}
.project-card{
  height: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #dedede;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.project-card:hover{
  transform: scale(1.02);
  opacity: 0.95;
}
.company-logo{
  max-height: 55px;
  width: auto;
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.company-logo:hover{
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}
/* Infinite logo marquee */
.logo-marquee{
  position: relative;
  overflow: hidden;
  padding: 18px 0;
}

/* subtle fade edges for premium look */
.logo-marquee:before,
.logo-marquee:after{
  content:"";
  position:absolute;
  top:0;
  width:120px;
  height:100%;
  z-index:2;
  pointer-events:none;
}

.logo-marquee:before{
  left:0;
  background: linear-gradient(to right, #f8f9fa 0%, rgba(248,249,250,0) 100%);
}

.logo-marquee:after{
  right:0;
  background: linear-gradient(to left, #f8f9fa 0%, rgba(248,249,250,0) 100%);
}

.logo-track{
  display:flex;
  align-items:center;
  gap: 64px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.logo-marquee:hover .logo-track{
  animation-play-state: paused; /* nice touch */
}

@keyframes marquee{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.company-logo{
  max-height: 84px;
  width: auto;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: 0.25s ease;
}

.company-logo:hover{
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Respect reduced motion settings */
@media (prefers-reduced-motion: reduce){
  .logo-track{ animation: none; }
}
.logo-marquee{
  overflow:hidden;
  padding: 18px 0;
  background: transparent;
}

.logo-track{
  display:flex;
  gap: 84px;
  align-items:center;
  width: max-content;
  animation: marquee 20s linear infinite;
}

@keyframes marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.gallery-card img{
  transition: 0.3s ease;
}

.gallery-card img:hover{
  transform: scale(1.02);
}

.gallery-info h6{
  letter-spacing: 0.5px;
}
.gallery-thumb{
  height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Contact page */
.contact-card{
  border: 1px solid #ececec;
}

.contact-card .form-control,
.contact-card .form-select{
  border-radius: 14px;
  border: 1px solid #e6e6e6;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus{
  border-color: #000;
  box-shadow: 0 0 0 0.2rem rgba(0,0,0,0.08);
}

.contact-note{
  background: #f6f6f6;
  border: 1px solid #ececec;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  color: #444;
}

.contact-info-item{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 12px 0;
}

.contact-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.10);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
}

.step-item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 10px 0;
}

.step-num{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #fff;
  color: #000;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
}

.map-card{
  background:#fff;
  border:1px solid #e6e6e6;
}

.area-pill{
  background:#fff;
  border:1px solid #e6e6e6;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
}
