/* ═══════════════════════════════
   COMPONENTS — Buttons, Cards, Forms, Header, Footer
   ═══════════════════════════════ */

/* ── Buttons ── */
.btn-primary {
  background: var(--accent);
  color: var(--black);
  padding: 16px 38px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-101%);
  transition: transform .3s;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0,207,255,0.22);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--muted2);
  padding: 16px 38px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all .25s;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--white);
}

/* ═══ HEADER ═══ */
.header-scope {
  --black: #050508;
  --charcoal: #0e0e14;
  --dark: #13131a;
  --card: #17171f;
  --border: rgba(255,255,255,0.07);
  --accent: #00cfff;
  --accent-dim: rgba(0,207,255,0.08);
  --orange: #ff7340;
  --white: #eeeef4;
  --muted: #77778a;
  --muted2: #aaaabc;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

.header-scope .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(6,7,11,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background .4s, box-shadow .4s;
}

.header-scope .site-header.scrolled {
  background: rgba(6,7,11,0.95);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.header-scope .header-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  height: 84px;
}

/* Logo */
.header-scope .header-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  letter-spacing: 3px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 2px;
  justify-self: start;
  min-width: 0;
  transition: opacity .3s;
}

.header-scope .header-logo:hover {
  opacity: 0.85;
}

/* Desktop Nav */
.header-scope .header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: center;
}

.header-scope .header-nav > a,
.header-scope .nav-dropdown > a {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 14px;
  position: relative;
  transition: color .25s;
}

.header-scope .header-nav > a:hover,
.header-scope .nav-dropdown:hover > a {
  color: var(--white);
}

.header-scope .header-nav > a::after,
.header-scope .nav-dropdown > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .25s;
}

.header-scope .header-nav > a:hover::after,
.header-scope .nav-dropdown:hover > a::after {
  transform: scaleX(1);
}

/* Dropdown */
.header-scope .nav-dropdown {
  position: relative;
}

.header-scope .nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--dark);
  border: 1px solid var(--border);
  min-width: 320px;
  padding: 18px 0 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 100;
}

.header-scope .nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.header-scope .nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header-scope .nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  transition: background .2s, color .2s;
}

.header-scope .nav-dropdown-menu a:hover {
  background: var(--accent-dim);
  color: var(--white);
}

.header-scope .dd-icon {
  font-size: 17px;
  flex-shrink: 0;
}

/* Right Side */
.header-scope .header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.header-scope .header-phone {
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .25s;
}

.header-scope .header-phone:hover {
  color: var(--accent);
}

.header-scope .ph-icon {
  font-size: 16px;
}

.header-scope .header-cta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  background: var(--accent);
  color: var(--black);
  text-decoration: none;
  padding: 10px 24px;
  transition: all .3s;
  font-weight: 400;
}

.header-scope .header-cta:hover {
  background: #00e5ff;
  box-shadow: 0 0 24px rgba(0,207,255,0.3);
}

/* Burger */
.header-scope .header-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10001;
}

.header-scope .header-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all .3s;
}

.header-scope .header-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header-scope .header-burger.open span:nth-child(2) {
  opacity: 0;
}

.header-scope .header-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.header-scope .mobile-menu {
  position: fixed;
  top: 84px;
  left: 0; right: 0; bottom: 0;
  background: rgba(6,7,11,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 28px 32px;
  transform: translateX(100%);
  transition: transform .35s ease;
  z-index: 9998;
  overflow-y: auto;
}

.header-scope .mobile-menu.open {
  transform: translateX(0);
}

.header-scope .mobile-menu a {
  font-size: 17px;
  color: var(--muted2);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}

.header-scope .mobile-menu a:hover {
  color: var(--white);
  padding-left: 8px;
}

.header-scope .mm-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
  padding: 8px 0 4px;
}

.header-scope .mm-sub {
  padding-left: 16px !important;
  font-size: 16px !important;
}

.header-scope .mm-cta-block {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.header-scope .mm-phone {
  font-size: 18px !important;
  color: var(--accent) !important;
  border: none !important;
  padding: 0 !important;
}

.header-scope .mm-book {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  background: var(--accent);
  color: var(--black) !important;
  text-align: center;
  padding: 14px !important;
  border: none !important;
}

/* ═══ FOOTER ═══ */
.footer-scope {
  --black: #050508;
  --charcoal: #0e0e14;
  --dark: #13131a;
  --card: #17171f;
  --border: rgba(255,255,255,0.07);
  --accent: #00cfff;
  --accent-dim: rgba(0,207,255,0.08);
  --orange: #ff7340;
  --white: #eeeef4;
  --muted: #77778a;
  --muted2: #aaaabc;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  width: 100%;
}

.footer-scope .ft-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 56px;
  width: 100%;
}

.footer-scope .ft-wrap {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 70px 0 36px;
  position: relative;
  width: 100%;
}

.footer-scope .ft-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,207,255,0.03) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.footer-scope .ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.footer-scope .ft-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  margin-bottom: 14px;
  color: var(--white);
}

.footer-scope .ft-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 270px;
  margin-bottom: 24px;
}

.footer-scope .ft-social {
  display: flex;
  gap: 12px;
}

.footer-scope .ft-soc {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--muted);
  text-decoration: none;
  transition: all .25s;
}

.footer-scope .ft-soc:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px rgba(0,207,255,0.1);
}

.footer-scope .ft-col-title {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-scope .ft-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 1px;
  background: var(--accent);
  opacity: 0.4;
}

.footer-scope .ft-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-scope .ft-links li {
  margin-bottom: 10px;
}

.footer-scope .ft-links a {
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}

.footer-scope .ft-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-scope .ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  position: relative;
  z-index: 2;
}

/* ═══ CARDS ═══ */
.service-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 44px 32px;
  text-align: center;
  transition: transform .3s, border-color .3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,207,255,0.25);
}

.service-card-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}

.service-card-desc {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.7;
}

/* ═══ FORMS ═══ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ═══ TRUST BAR ═══ */
.trust-bar {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 56px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-item .trust-icon {
  font-size: 18px;
}

.trust-item strong {
  color: var(--white);
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* ═══ CALLOUT ═══ */
.callout {
  background: var(--accent-dim);
  border-left: 2px solid var(--accent);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 15px;
  color: var(--white);
  line-height: 1.7;
}

.callout strong {
  color: var(--accent);
}
