/* =========================
   PREMIUM CARDS
========================= */
.premium-card{
  background: linear-gradient(145deg, rgba(26,26,26,0.96), rgba(15,15,15,0.96));
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 28px;
  position: relative;
  transition: all 0.3s ease;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

.premium-card:before{
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: #f26c21;
  opacity: 0.95;
  border-radius: 0 0 6px 6px;
}

.premium-card h3{
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  letter-spacing: 0.4px;
  line-height: 1.2;
}

.premium-card p{
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.premium-card:hover{
  transform: translateY(-6px);
  border-color: #f26c21;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* =========================
   HEADER / NAV
========================= */
.site-header{
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255,255,255,0.98) !important;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

/* clean header containers */
.ast-primary-header-bar,
.ast-builder-grid-row-container,
.ast-builder-grid-row,
.ast-builder-grid-row-container-inner,
.main-header-bar{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* overall header height */
.site-header .site-branding,
.site-header .header-inner,
.site-header .main-header-bar,
.site-header .ast-builder-grid-row-container-inner,
.site-header .ast-builder-grid-row,
.ast-primary-header-bar{
  min-height: 88px !important;
}

/* =========================
   MENU LINKS
========================= */
.main-navigation .menu-link,
.ast-builder-menu-1 .menu-link,
.ast-builder-menu-2 .menu-link,
.main-navigation ul li a{
  color: #111111 !important;
  font-weight: 800 !important;
  font-size: 22px !important;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 10px 0 !important;
  position: relative;
  transition: color 0.25s ease, opacity 0.25s ease;
  line-height: 1.1;
}

/* premium underline effect */
.main-navigation .menu-link::after,
.ast-builder-menu-1 .menu-link::after,
.ast-builder-menu-2 .menu-link::after,
.main-navigation ul li a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f26c21;
  border-radius: 2px;
  transition: width 0.28s ease;
}

.main-navigation .menu-link:hover::after,
.ast-builder-menu-1 .menu-link:hover::after,
.ast-builder-menu-2 .menu-link:hover::after,
.main-navigation ul li a:hover::after,
.current-menu-item > a::after,
.current-menu-ancestor > a::after{
  width: 100%;
}

/* hover / active */
.main-navigation .menu-link:hover,
.ast-builder-menu-1 .menu-link:hover,
.ast-builder-menu-2 .menu-link:hover,
.main-navigation ul li a:hover,
.current-menu-item > a,
.current-menu-ancestor > a{
  color: #f26c21 !important;
}

/* menu spacing */
.main-navigation ul li,
.ast-builder-menu-1 .menu-item,
.ast-builder-menu-2 .menu-item{
  margin: 0 22px !important;
}

/* =========================
   HEADER CTA BUTTON
========================= */
.menu-button a{
  background: #f26c21 !important;
  color: #ffffff !important;
  padding: 12px 22px !important;
  border-radius: 6px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  font-size: 18px !important;
  line-height: 1 !important;
  letter-spacing: 0.4px;
  margin-left: 8px;
  border: none !important;
  box-shadow: 0 8px 18px rgba(242,108,33,0.18) !important;
  transition: all 0.25s ease;
}

.menu-button a:hover{
  background: #e96114 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(242,108,33,0.24) !important;
}

/* stop underline appearing on button */
.menu-button a::after{
  display: none !important;
}

/* =========================
   PHONE LINK IN HEADER
========================= */
.menu-item a[href^="tel"]{
  color: #111111 !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  white-space: nowrap;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  letter-spacing: 0.2px;
}

.menu-item a[href^="tel"]:hover{
  color: #f26c21 !important;
}

.menu-item a[href^="tel"]::before{
  content: "📞 ";
  font-size: 13px;
}

.menu-item a[href^="tel"]::after{
  display: none !important;
}

/* =========================
   LOGO
========================= */
.site-header .custom-logo,
.site-header .site-logo-img img,
.site-header .custom-logo-link img{
  max-height: 58px;
  width: auto;
}

/* =========================
   HERO / FIRST SECTION
========================= */
.site-content{
  margin-top: 0 !important;
}

.wp-block-cover:first-of-type{
  padding-top: 140px !important;
}

/* =========================
   MOBILE TWEAKS
========================= */
@media (max-width: 921px){
  .site-header{
    background: rgba(255,255,255,0.98) !important;
    position: sticky;
  }

  .ast-primary-header-bar,
  .ast-builder-grid-row-container-inner,
  .ast-builder-grid-row{
    min-height: 78px !important;
  }

  .main-navigation .menu-link,
  .ast-builder-menu-1 .menu-link,
  .ast-builder-menu-2 .menu-link,
  .main-navigation ul li a{
    font-size: 16px !important;
    letter-spacing: 0.35px;
    text-transform: uppercase;
  }

  .menu-button a{
    margin-left: 0;
    font-size: 13px !important;
    padding: 11px 18px !important;
  }

  .premium-card{
    min-height: auto;
    padding: 24px;
  }

  .wp-block-cover:first-of-type{
    padding-top: 100px !important;
  }
}
/* Force uppercase menu text on mobile/tablet */
@media (max-width: 1024px) {
  .ct-mobile-menu a {
    text-transform: uppercase !important;
  }
}