/*
Theme Name: Brush Mountain Data Center
Theme URI: https://brushmountaindatacenter.com
Author: Brush Mountain Data Center
Description: Custom theme for Brush Mountain Data Center
Version: 1.0
License: Proprietary
Text Domain: bmdc
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:    #080E1A;
      --navy2:   #0A1220;
      --navy3:   #0F1829;
      --navy4:   #141F35;
      --blue:    #8BA5BE;
      --blue-l:  #C0CEDB;
      --teal:    #A8B8C8;
      --slate:   #64748B;
      --slate2:  #D0DAE4;
      --mist:    #0A1220;
      --white:   #FFFFFF;
      --text:    #E2E8F0;
      --border:  rgba(255,255,255,.08);
      --silver:  #B0BEC8;
      --silver-l:#D8E0E8;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      color: var(--text);
      background: var(--navy);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── NAV ─────────────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(8,14,26,0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .nav-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-logo-img { height: 125px; width: auto; filter: invert(1) brightness(2); }
    .nav-links {
      display: flex;
      gap: 6px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--slate);
      font-size: 14px;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 6px;
      transition: color .15s, background .15s;
    }
    .nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
    .nav-actions { display: flex; gap: 10px; align-items: center; }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: inherit;
      font-size: 14px;
      font-weight: 600;
      border-radius: 8px;
      padding: 9px 20px;
      cursor: pointer;
      text-decoration: none;
      transition: all .18s;
      border: none;
      white-space: nowrap;
    }
    .btn-ghost {
      color: var(--slate2);
      background: transparent;
    }
    .btn-ghost:hover { color: #fff; background: rgba(255,255,255,.07); }
    .btn-primary {
      color: #0B1628;
      background: #fff;
    }
    .btn-primary:hover { background: #e2e8f0; box-shadow: 0 4px 20px rgba(255,255,255,.2); transform: translateY(-1px); }
    .btn-outline {
      color: var(--silver-l);
      background: transparent;
      border: 1.5px solid rgba(176,190,200,.4);
    }
    .btn-outline:hover { background: rgba(176,190,200,.08); }
    .btn-lg { font-size: 16px; padding: 13px 28px; border-radius: 10px; }
    .btn-white {
      color: #0B1628;
      background: #fff;
    }
    .btn-white:hover { background: #e2e8f0; transform: translateY(-1px); }

    /* ─── HERO ────────────────────────────────────────── */
    .hero {
      background: var(--navy);
      position: relative;
      overflow: hidden;
      padding: 80px 24px 77px;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(140,165,185,.1) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 20% 70%, rgba(176,190,200,.08) 0%, transparent 60%);
      pointer-events: none;
    }
    /* subtle grid */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }
    .hero-inner {
      max-width: 1160px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(176,190,200,.12);
      border: 1px solid rgba(176,190,200,.3);
      color: var(--silver-l);
      font-size: 13px;
      font-weight: 600;
      padding: 5px 13px;
      border-radius: 100px;
      margin-bottom: 20px;
      letter-spacing: .01em;
    }
    .hero-badge-dot {
      width: 6px; height: 6px;
      background: var(--silver-l);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: .4; }
    }
    .hero h1 {
      font-size: clamp(36px, 5vw, 58px);
      font-weight: 900;
      line-height: 1.08;
      color: #fff;
      letter-spacing: -.025em;
      margin-bottom: 22px;
    }
    .hero h1 em {
      font-style: normal;
      background: linear-gradient(90deg, #C0CEDB, #FFFFFF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 18px;
      color: var(--slate2);
      line-height: 1.65;
      margin-bottom: 36px;
      max-width: 480px;
    }
    .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
    .hero-stats {
      margin-top: 52px;
      display: flex;
      gap: 36px;
      padding-top: 36px;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .hero-stat-n {
      font-size: 28px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.02em;
    }
    .hero-stat-l {
      font-size: 13px;
      color: var(--slate2);
      margin-top: 2px;
    }
    /* Hero visual */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .dc-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 20px;
      padding: 28px;
      width: 100%;
      max-width: 380px;
      backdrop-filter: blur(8px);
    }
    .dc-card-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }
    .dc-card-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .dc-card-icon svg { width: 22px; height: 22px; }
    .dc-card-title { color: #fff; font-weight: 700; font-size: 15px; }
    .dc-card-sub { color: var(--slate2); font-size: 12px; }
    .dc-services {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 18px;
    }
    .dc-svc {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 10px;
      padding: 12px 14px;
    }
    .dc-svc-name { color: rgba(255,255,255,.85); font-size: 13px; font-weight: 600; }
    .dc-svc-tag {
      display: inline-block;
      margin-top: 4px;
      font-size: 10px;
      font-weight: 600;
      padding: 2px 7px;
      border-radius: 100px;
      background: rgba(176,190,200,.15);
      color: var(--silver-l);
      letter-spacing: .03em;
    }
    .dc-svc-tag.g { background: rgba(34,197,94,.15); color: #4ade80; }
    .dc-uptime {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 10px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .dc-uptime-label { color: var(--slate2); font-size: 12px; }
    .dc-uptime-val { color: #4ade80; font-weight: 700; font-size: 16px; }
    .dc-uptime-bar {
      height: 4px;
      background: rgba(255,255,255,.08);
      border-radius: 2px;
      margin-top: 8px;
      overflow: hidden;
    }
    .dc-uptime-fill {
      height: 100%;
      width: 99.9999%;
      background: linear-gradient(90deg, #22c55e, #4ade80);
      border-radius: 2px;
    }

    /* ─── LOGOS / TRUST BAR ───────────────────────────── */
    .trust-bar {
      background: var(--navy2);
      border-bottom: 1px solid rgba(255,255,255,.06);
      padding: 28px 24px;
    }
    .trust-bar-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .trust-bar-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--slate2);
      letter-spacing: .07em;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .trust-logos {
      display: flex;
      align-items: center;
      gap: 36px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .trust-logo {
      font-size: 13px;
      font-weight: 700;
      color: var(--slate2);
      opacity: .65;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .trust-logo svg { width: 18px; height: 18px; }

    /* ─── SECTION COMMON ──────────────────────────────── */
    section { padding: 96px 24px; }
    .section-inner { max-width: 1160px; margin: 0 auto; }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--silver);
      margin-bottom: 14px;
    }
    .section-tag::before {
      content: '';
      display: block;
      width: 18px;
      height: 2px;
      background: var(--silver);
      border-radius: 1px;
    }
    .section-heading {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      letter-spacing: -.025em;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 14px;
    }
    .section-sub {
      font-size: 17px;
      color: var(--slate2);
      line-height: 1.65;
      max-width: 580px;
    }

    /* ─── SERVICES ────────────────────────────────────── */
    #services { background: var(--navy); }
    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 24px;
      margin-bottom: 56px;
      flex-wrap: wrap;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .svc-card {
      background: var(--navy3);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 16px;
      padding: 32px 28px;
      transition: all .2s;
      position: relative;
      overflow: hidden;
    }
    .svc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--silver), var(--silver-l));
      opacity: 0;
      transition: opacity .2s;
    }
    .svc-card:hover {
      border-color: rgba(176,190,200,.35);
      box-shadow: 0 8px 40px rgba(176,190,200,.08);
      transform: translateY(-3px);
    }
    .svc-card:hover::before { opacity: 1; }
    .svc-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      background: rgba(176,190,200,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: background .2s;
    }
    .svc-card:hover .svc-icon {
      background: rgba(176,190,200,.2);
    }
    .svc-icon svg { width: 24px; height: 24px; color: var(--silver-l); }
    .svc-name {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      display: flex;
      align-items: baseline;
      gap: 8px;
    }
    .svc-tag-pill {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .04em;
      padding: 2px 8px;
      border-radius: 100px;
      background: rgba(176,190,200,.12);
      color: var(--silver-l);
    }
    .svc-desc {
      font-size: 14px;
      color: var(--slate2);
      line-height: 1.65;
    }

    /* ─── WHY US ──────────────────────────────────────── */
    #why { background: var(--navy2); }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr;
      max-width: 700px;
    }
    .why-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
    .why-item { display: flex; gap: 16px; align-items: flex-start; }
    .why-item-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: rgba(176,190,200,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .why-item-icon svg { width: 20px; height: 20px; color: var(--silver-l); }
    .why-item-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
    .why-item-text { font-size: 14px; color: var(--slate2); line-height: 1.65; }

    /* ─── TESTIMONIALS ────────────────────────────────── */
    #testimonials { background: var(--navy); }
    .t-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 48px;
    }
    .t-card {
      background: var(--navy3);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 16px;
      padding: 32px;
      position: relative;
    }
    .t-quote-mark {
      font-size: 64px;
      font-weight: 900;
      line-height: .8;
      color: var(--silver);
      opacity: .15;
      position: absolute;
      top: 20px;
      left: 28px;
      font-family: Georgia, serif;
    }
    .t-text {
      font-size: 16px;
      line-height: 1.7;
      color: rgba(255,255,255,.8);
      margin-bottom: 24px;
      position: relative;
    }
    .t-author { display: flex; align-items: center; gap: 12px; }
    .t-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, #4A5568 0%, #718096 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }
    .t-name { font-weight: 700; font-size: 14px; color: #fff; }
    .t-role { font-size: 13px; color: var(--slate2); }
    .t-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; margin-bottom: 14px; }

    /* ─── CTA SECTION ─────────────────────────────────── */
    #cta {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
      padding: 96px 24px;
      position: relative;
      overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 90% 50%, rgba(176,190,200,.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 10% 50%, rgba(140,165,185,.06) 0%, transparent 55%);
    }
    .cta-inner {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      position: relative;
    }
    .cta-inner h2 {
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 900;
      letter-spacing: -.025em;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 18px;
    }
    .cta-inner h2 em {
      font-style: normal;
      background: linear-gradient(90deg, #C0CEDB, #FFFFFF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .cta-inner p {
      font-size: 17px;
      color: var(--slate2);
      line-height: 1.65;
      margin-bottom: 40px;
    }
    .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .cta-contact {
      margin-top: 28px;
      font-size: 14px;
      color: var(--slate2);
    }
    .cta-contact a { color: var(--silver-l); text-decoration: none; font-weight: 600; }
    .cta-contact a:hover { text-decoration: underline; }

    /* ─── FOOTER ──────────────────────────────────────── */
    footer {
      background: var(--navy);
      color: var(--slate2);
      padding: 56px 24px 32px;
      border-top: 1px solid rgba(255,255,255,.07);
    }
    .footer-inner {
      max-width: 1160px;
      margin: 0 auto;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand-name {
      font-size: 16px;
      font-weight: 800;
      color: #fff;
      margin: 14px 0 10px;
    }
    .footer-brand-desc {
      font-size: 14px;
      line-height: 1.6;
      color: var(--slate2);
      margin-bottom: 18px;
    }
    .footer-contact a {
      display: flex;
      align-items: center;
      gap: 7px;
      color: var(--slate2);
      text-decoration: none;
      font-size: 13px;
      margin-bottom: 7px;
      transition: color .15s;
    }
    .footer-contact a:hover { color: var(--silver-l); }
    .footer-contact svg { width: 14px; height: 14px; flex-shrink: 0; }
    .footer-col-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.3);
      margin-bottom: 16px;
    }
    .footer-col-links { list-style: none; }
    .footer-col-links li { margin-bottom: 10px; }
    .footer-col-links a {
      color: var(--slate2);
      text-decoration: none;
      font-size: 14px;
      transition: color .15s;
    }
    .footer-col-links a:hover { color: var(--silver-l); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.06);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom-text { font-size: 13px; }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a {
      color: var(--slate2);
      text-decoration: none;
      font-size: 13px;
      transition: color .15s;
    }
    .footer-bottom-links a:hover { color: #fff; }

    /* ─── RESPONSIVE ──────────────────────────────────── */
    @media (max-width: 960px) {
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .hero-visual { display: none; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      section { padding: 64px 20px; }
      .services-grid { grid-template-columns: 1fr; }
      .t-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .nav-links { display: none; }
    }

/* ── Inner page styles ───────────────────────────── */
.bmdc-page-wrap {
  min-height: 60vh;
  padding: 80px 24px 100px;
  max-width: 860px;
  margin: 0 auto;
}
.bmdc-page-wrap h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.15;
  text-wrap: balance;
}
.bmdc-page-wrap h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 12px;
}
.bmdc-page-wrap h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 28px 0 8px;
}
.bmdc-page-wrap p,
.bmdc-page-wrap li {
  color: #D0DAE4;
  line-height: 1.75;
  margin-bottom: 16px;
}
.bmdc-page-wrap ul,
.bmdc-page-wrap ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.bmdc-page-wrap a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bmdc-page-wrap a:hover { color: #fff; }
.bmdc-page-breadcrumb {
  font-size: 0.8rem;
  color: var(--slate3);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.bmdc-page-breadcrumb a { color: var(--slate3); text-decoration: none; }
.bmdc-page-breadcrumb a:hover { color: var(--green); }