/* ===== ALB BUILDS INC. MOBILE FOCUSED  */

/* Header wrapper */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

/* three-column layout: left icon | center logo | right nav/hamburger */
.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 0;
}

/* LEFT ICON */

.wave-link {
  display: flex;
  align-items: center;
}

/* anchor inside the wrapper */
.wave-link a.wave-link {
  display: inline-flex;
  align-items: center;
  padding: 4px 6px;
  text-decoration: none;
}

/* icon interaction */
.wave-link .wave-icon {
  font-size: 1.6rem;
  display: inline-block;
  transform-origin: 70% 70%;
  transition: transform 0.22s ease-out, filter 0.22s ease-out;
}

/* small “press” feedback on tap/click */
.wave-link a.wave-link:active .wave-icon {
  transform: translateY(1px) scale(0.96);
}

/* CENTER BRAND */
.brand-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-center .brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-center .brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin-bottom: -18px; /* pull text closer to logo */
}

.brand-center .brand-text {
  margin-top: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #111;
  text-decoration: none;
}

/* make brand link itself not blue/underlined */
.brand-center .brand {
  color: #111;
  text-decoration: none;
}

.brand-center .brand:hover .brand-text {
  opacity: 0.8;
}

/* RIGHT SIDE: inline nav + hamburger */
.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

/* Desktop nav list */
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: #111;
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:hover {
  opacity: 0.8;
}

/* Phone CTA button */
.site-nav .phone a {
  background: var(--gold);
  color: #111;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 700;
}

/* Desktop dropdown for Projects */
.site-nav .dropdown {
  position: relative;
}

.site-nav .dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 190px;
  padding: 6px 0;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
  display: none;
  list-style: none;
  margin: 0;
}

.site-nav .dropdown-content li a {
  display: block;
  padding: 8px 14px;
  white-space: nowrap;
}

/* show submenu on hover (desktop) */
.site-nav .dropdown:hover .dropdown-content {
  display: block;
}

/* Hamburger button – visible only on mobile */
.nav-toggle {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #111;
  display: none; /* default hidden, shown on mobile */
}

/* general header link hover */
.site-header a:hover {
  opacity: 0.7;
}

/* ====== MOBILE (<= 980px) – use fullscreen overlay instead of inline nav ====== */
@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none !important;
  }
}

/* ================================
   FULLSCREEN MOBILE MENU OVERLAY
   ================================ */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2000;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* inner structure */
.mobile-menu-inner {
  width: 100%;
  max-width: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;

  padding: 28px 24px 28px;
}

/* ===== TOP BAR ===== */
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 40px;
}

.mobile-menu-logo {
  width: 82px;          
  height: auto;
  opacity: 0.95;
}

/* X close button */
.close-mobile-menu {
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #ffffff;
  opacity: 0.9;
  cursor: pointer;
}
.close-mobile-menu:hover {
  opacity: 1;
}

/* ===== MENU LINKS ===== */
.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;

  margin-top: 10vh; /* perfectly centers middle block */
}

.mobile-menu-links li a {
  position: relative;
  font-size: 1.8rem;     /* better readability */
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-decoration: none;

  transition: opacity .2s ease;
}

/* gold underline animation */
.mobile-menu-links li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 34px;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease-out;
}

.mobile-menu-links li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.mobile-menu-links li a:hover {
  opacity: 0.85;
}

/* ===== CALL NOW BUTTON ==== */
.mobile-call-wrapper {
  margin-top: auto;
  padding-bottom: 36px;
  display: flex;
  justify-content: center;
}

.mobile-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #d1ac3a;
  padding: 14px 38px;

  border-radius: 10px; /* lower radius = modern */
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;

  box-shadow: 0 6px 16px rgba(0,0,0,0.55);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

/* phone emoji */
.mobile-call-btn::before {
  content: "📱";
  font-size: 1.3rem;
  margin-top: 1px;
}

/* subtle hover effect */
.mobile-call-btn:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 12px 26px rgba(0,0,0,0.55);
  opacity: 0.97;
}

/* pressed interaction */
.mobile-call-btn:active {
  transform: scale(0.97);
  box-shadow: 0 4px 10px rgba(0,0,0,0.45);
}
/* HEADER MUST BE FULL-WIDTH */
.site-header {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* nav-wrap should not inherit container width */
.nav-wrap {
  width: 100%;
  padding-inline: 24px; /* clean left/right */
}

/* Responsive tweaks */
@media (max-width: 450px) {
  .mobile-menu-logo {
    width: 64px;
  }

  .mobile-menu-links li a {
    font-size: 1.55rem;
  }
}
/* ===== END OF NAV BAR ====*/

/* ===== FOOTER STYLES ===== */
.footer {
  background: #0f1114;
  padding: 50px 0;
  border-top: 2px solid var(--gold);
  color: #fff;
  text-align: center;
}

.footer-inner {
  max-width: 700px;
  margin: 0 auto;
}

.footer-logo img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.footer-brand {
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
}

/* Footer links */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d4d6da;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

/* Phone number */
.footer-phone {
  display: inline-block;
  margin-bottom: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-phone:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Copyright */
.footer-copy {
  font-size: 0.85rem;
  color: #8b8f96;
  margin-top: 10px;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .footer-links {
    gap: 16px;
  }
}
.footer-dev {
  font-size: 0.8rem;
  color: #73777f;
  margin-top: 5px;
}

.footer-dev a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.footer-dev a:hover {
  color: #fff;
}
/* ===== END OF FOOTER STYLES ===== */

/* ========== PROJECTS.html ========== */
.project-categories {
  margin: 80px 0;
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .project-categories {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  cursor: pointer;
  text-align: center;
  transition: transform .25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-image {
  width: 100%;
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin-bottom: 14px;
}

.project-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

/* ========== FULLSCREEN GALLERY OVERLAY projects.html ========== */
.gallery-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(4px);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  padding: 30px;
}

.gallery-overlay.open {
  display: flex;
}

/* CLOSE BUTTON */
.gallery-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  opacity: .75;
}
.gallery-close:hover { opacity: 1; }

/* MAIN IMAGE */
.gallery-main {
  max-width: 900px;
  max-height: 75vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.gallery-main img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  transition: opacity .25s ease;
}

/* THUMBNAILS */
.gallery-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.gallery-thumbnails img {
  width: 95px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  opacity: .55;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}
.gallery-thumbnails img.active {
  opacity: 1;
  transform: scale(1.04);
}

/* NAVIGATION ARROWS */
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-prev { left: 40px; }
.gallery-next { right: 40px; }

.gallery-prev:hover,
.gallery-next:hover {
  background: rgba(255,255,255,0.25);
}

@media (max-width: 600px) {
  .gallery-prev,
  .gallery-next {
    display: none;
  }
}
.gallery-overlay-logo {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 70px;
  height: auto;
  opacity: 0.95;
  z-index: 4001;
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.4rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 4001;
}
.projects-mission {
  width: 100%;
  background: #ffffff;
  padding: 80px 20px;
  margin-top: 40px;
}

.mission-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.projects-mission h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.projects-mission p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}
.mission-stats {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
}

.stat-box h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-box p {
  color: #444;
  font-size: 1rem;
  margin-top: 8px;
}

/* ============================
   SERVICES PAGE
   ============================ */

/* HERO */
.services-hero {
  position: relative;
  min-height: 62vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}

.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent(0.65);
  z-index: 0; 
}

.services-hero-inner {
  position: relative;
  padding: 80px 0 72px;
  text-align: center;
}

.services-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.services-hero h1 {
  font-size: clamp(1.9rem, 3.1vw, 2.6rem);
  margin: 0 0 0.75rem;
}

.services-hero .lead {
  max-width: 540px;
  margin: 0 auto;
  font-size: 0.98rem;
  color: #e5e7eb;
}


.services-grid-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 40px;
  padding: 0 20px;
}

.services-grid-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.services-grid-header p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #333;
  opacity: 0.9;
  margin-top: 10px;
}

/* subtle gold underline under the title */
.services-grid-header h2::after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 4px;
}

/* fade-in animation (matches your reveal style) */
.services-grid-header.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}

.services-grid-header.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
  .services-grid-header h2 {
    font-size: 1.8rem;
  }

  .services-grid-header p {
    font-size: 0.97rem;
  }
}

/* ================================
   Services – Video Copy Section
   ================================ */

.services-video-copy {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: left;
}

.services-video-copy h2 {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.services-video-copy h3 {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.services-video-copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
  margin-bottom: 22px;
}

.services-video-copy ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.services-video-copy ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}


.services-video-section {
  margin-bottom: 50px;
}

.video-highlight-section {
  margin-top: 40px;
}


/* WHY CHOOSE US SECTION */
.services-why {
  padding: 52px 0 70px;
}

.services-why-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.services-why-text p {
  margin-top: 0;
}

.services-why-text .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.services-pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-pill-list li {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: 0.85rem;
  color: #4b5563;
}

/* DESKTOP LAYOUTS */
@media (min-width: 768px) {
  .services-hero-inner {
    padding: 110px 0 100px;
  }

  .services-video-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }

  .services-why-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }
}
.divider-gold{height:2px;background:linear-gradient(90deg,transparent,var(--gold),transparent);opacity:.6}

/* Fix sticky header globally */
header {
    position: sticky !important;
    top: 0;
    z-index: 9999;
}

/* Allow sticky to work */
html, body {
    overflow-x: visible !important;
}

/* Prevent transforms from breaking sticky */
.nav-container, header, nav {
    transform: none !important;
}
header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff; /* or #0f0f0f if your site is dark */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.features-header {
    position: static !important;
    z-index: auto !important;
}
