/* ==========================================================
   Elite Construction — Custom Styles
   Palette: Black #0d0d0d | Gold #d4af37 | Off-white #f7f5f0
   ========================================================== */

:root{
  --gold: #d4af37;
  --gold-dark: #b8912c;
  --black: #0d0d0d;
  --black-soft: #17171a;
  --off-white: #f7f5f0;
  --gray-text: #5a5a5a;
  --font-head: 'Arial Narrow', 'Helvetica Neue Condensed', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html{scroll-behavior: smooth;}

body{
  font-family: var(--font-body);
  color: #2b2b2b;
  background: #fff;
}

h1,h2,h3,h4,h5,h6{
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.contact-form label, .footer-links li, .section-desc, p{
  text-transform: none;
}

.text-gold{ color: var(--gold) !important; }

/* ---------- Buttons ---------- */
.btn-gold{
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #171717;
  font-weight: 600;
  letter-spacing: .3px;
}
.btn-gold:hover{
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #171717;
}
.btn-outline-light:hover{ color: #171717; }

/* ---------- Navbar ---------- */
#mainNav{
  background: rgba(13,13,13,.9);
  backdrop-filter: blur(6px);
  transition: background .3s ease, padding .3s ease;
  padding-top: .75rem;
  padding-bottom: .75rem;
}
#mainNav.scrolled{
  background: rgba(13,13,13,.98);
  box-shadow: 0 2px 15px rgba(0,0,0,.35);
}
.navbar-brand{
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff !important;
  font-size: 1.3rem;
}
.navbar-brand i{ color: var(--gold); margin-right: .4rem; }
.navbar-brand span{ color: var(--gold); }
.navbar-nav .nav-link{
  color: #e9e9e9;
  font-weight: 500;
  padding-left: .9rem;
  padding-right: .9rem;
  position: relative;
}
.navbar-nav .nav-link:hover{ color: var(--gold); }

/* ---------- Hero Carousel ---------- */
header{ margin-top: 0; }
.hero-slide{
  min-height: 92vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,10,10,.88) 0%, rgba(10,10,10,.68) 38%, rgba(10,10,10,.35) 65%, rgba(10,10,10,.15) 100%);
}
.hero-overlay-2{
  background: linear-gradient(100deg, rgba(20,15,0,.88) 0%, rgba(20,15,0,.65) 40%, rgba(20,15,0,.25) 75%);
}
.hero-overlay-3{
  background: linear-gradient(100deg, rgba(5,5,5,.9) 0%, rgba(5,5,5,.68) 40%, rgba(5,5,5,.3) 75%);
}
.hero-content{
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  padding-top: 4rem;
}
.hero-eyebrow{
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .75rem;
}
.hero-content h1{
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-text{
  font-size: 1.1rem;
  color: #e6e6e6;
  max-width: 560px;
}
.carousel-indicators [data-bs-target]{
  background-color: var(--gold);
  width: 10px; height: 10px;
  border-radius: 50%;
}
.carousel-control-prev, .carousel-control-next{ width: 5%; }

/* ---------- Section shared ---------- */
.section-tag{
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(212,175,55,.12);
  padding: .35rem .9rem;
  border-radius: 30px;
  margin-bottom: .8rem;
}
.section-tag-light{ background: rgba(212,175,55,.18); color: var(--gold); }
.section-title{
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 1rem;
}
.section-desc{ color: var(--gray-text); line-height: 1.8; }

/* ---------- About ---------- */
.about-img-wrap img{ width: 100%; height: 100%; object-fit: cover; max-height: 420px; }
.stat-number{ font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; color: var(--black); margin-bottom: 0; }
.stat-label{ color: var(--gray-text); margin-bottom: 0; }

/* ---------- Why Us ---------- */
.why-section{ background: var(--off-white); }
.feature-card{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,.08);
  border-color: var(--gold);
}
.feature-icon{
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: #171717;
}
.feature-card h5{ margin-bottom: .6rem; }
.feature-card p{ color: var(--gray-text); font-size: .95rem; margin-bottom: 0; }

/* ---------- Services ---------- */
.services-section{ background: var(--black); }
.service-card{
  background: var(--black-soft);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 2rem 1.6rem;
  height: 100%;
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover{ transform: translateY(-6px); border-color: var(--gold); }
.service-card h5{ color: #fff; margin-bottom: .6rem; }
.service-card p{ color: #b8b8b8; font-size: .95rem; margin-bottom: 0; }
.service-icon{
  width: 60px; height: 60px;
  border-radius: 12px;
  background: rgba(212,175,55,.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.service-card-cta{
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #171717;
}
.service-card-cta h5, .service-card-cta p{ color: #171717; }
.service-card-cta .service-icon{ background: rgba(23,23,23,.15); color: #171717; }
.service-card-cta:hover{ border-color: transparent; }

/* ---------- Badges strip ---------- */
.badges-strip{ background: var(--off-white); border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.badges-strip i{ font-size: 1.8rem; color: var(--gold-dark); display: block; margin-bottom: .5rem; }
.badges-strip p{ font-weight: 600; margin-bottom: 0; font-size: .95rem; }

/* ---------- Contact ---------- */
.contact-info-card{
  background: var(--black);
  color: #fff;
  border-radius: 16px;
  padding: 2.2rem;
}
.contact-item{ display: flex; gap: 1rem; margin-bottom: 1.6rem; }
.contact-item i{ font-size: 1.3rem; color: var(--gold); margin-top: .2rem; }
.contact-item h6{ color: var(--gold); margin-bottom: .3rem; text-transform: uppercase; font-size: .8rem; letter-spacing: 1px; }
.contact-item p{ margin-bottom: 0; color: #ddd; }
.contact-item a{ color: #ddd; text-decoration: none; }
.contact-item a:hover{ color: var(--gold); }
.social-btn{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(212,175,55,.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.social-btn:hover{ background: var(--gold); color: #171717; }

.contact-form{
  background: var(--off-white);
  border-radius: 16px;
  padding: 2.2rem;
  border: 1px solid #eee;
}
.contact-form .form-control, .contact-form .form-select{
  padding: .7rem .9rem;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.contact-form .form-control:focus, .contact-form .form-select:focus{
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(212,175,55,.2);
}
.contact-form label{ font-weight: 500; font-size: .9rem; margin-bottom: .35rem; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--black-soft); color: #c9c9c9; }
.footer-tagline{ color: var(--gold); font-weight: 600; letter-spacing: 1px; }
.footer-text{ color: #a8a8a8; font-size: .92rem; line-height: 1.7; }
.site-footer h6{ color: #fff; text-transform: uppercase; font-size: .85rem; letter-spacing: 1px; margin-bottom: 1rem; }
.footer-links{ list-style: none; padding: 0; margin: 0; }
.footer-links li{ margin-bottom: .6rem; font-size: .92rem; color: #b8b8b8; }
.footer-links a{ color: #b8b8b8; text-decoration: none; }
.footer-links a:hover{ color: var(--gold); }
.footer-bottom{ background: #0a0a0a; border-top: 1px solid rgba(255,255,255,.08); font-size: .88rem; }
.footer-motto{ letter-spacing: 1px; font-weight: 600; color: #ddd; }

/* ---------- Back to top ---------- */
.back-to-top{
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: #171717;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 999;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.back-to-top.show{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover{ background: var(--gold-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px){
  .navbar-nav{ padding-top: 1rem; }
  .navbar-nav .nav-link{ padding-top: .5rem; padding-bottom: .5rem; }
  .hero-slide{ min-height: 80vh; }
}
