/* ------------------------------------------------------------------
   HA Tech Labs — Full Website Stylesheet
   Theme: Luxury Dark Maroon (#1a0508) & Radiant Gold (#f7c16a)
------------------------------------------------------------------- */

@font-face {
  font-family: "Geist Pixel Circle";
  src: url("fonts/GeistPixel-Circle.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #140306;
  --bg-surface: #22070b;
  --bg-card: rgba(42, 8, 13, 0.7);
  --bg-card-hover: rgba(63, 12, 19, 0.85);
  --text: #ffffff;
  --text-muted: #d0b8a0;
  --gold: #f7c16a;
  --gold-deep: #d9a04e;
  --gold-soft: #f3dcb2;
  --gold-glow: rgba(247, 193, 106, 0.28);
  --maroon: #3f080d;
  --maroon-deep: #2a0509;
  --maroon-light: #57121a;
  --border-gold: rgba(247, 193, 106, 0.35);
  --border-subtle: rgba(247, 193, 106, 0.15);
  --nav-text: #3f080d;
  --pill-dark: #3f080d;
  --sign-in-text: #f3dcb2;
  --nav-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Cinzel", "Cormorant Garamond", Georgia, serif;
}

/* Base resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #1a0508;
  color: var(--text);
  font-family: var(--font-sans);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background video fixed overlay */
.bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #1a0508;
  overflow: hidden;
  z-index: 0;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
      ellipse at 50% 40%,
      rgba(63, 8, 13, 0.35) 0%,
      rgba(26, 5, 8, 0.72) 75%,
      rgba(20, 3, 6, 0.88) 100%
    ),
    linear-gradient(rgba(63, 8, 13, 0.38), rgba(42, 5, 9, 0.5));
}

/* Container Wrapper */
.site-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Section Common Styles */
.section {
  padding: clamp(40px, 6vh, 75px) clamp(16px, 4vw, 32px);
  width: 100%;
  position: relative;
}

.section-container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(24px, 3.5vh, 38px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(247, 193, 106, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 44px);
  color: var(--gold-soft);
  line-height: 1.22;
  margin-bottom: 16px;
  font-weight: 700;
}

.section-desc {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-muted);
  font-weight: 400;
}

/* ------------------------------------------------------------------
   1) Header & Nav
------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 32px);
  max-width: 820px;
  gap: clamp(12px, 2vw, 24px);
  transition: all 0.3s ease;
}

.logo-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  box-shadow: var(--nav-shadow), 0 0 18px var(--gold-glow);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-btn:hover {
  transform: scale(1.06);
  box-shadow: var(--nav-shadow), 0 0 28px rgba(247, 193, 106, 0.6);
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 1;
  height: 48px;
  padding: 4px 10px;
  background: #f8ecd8;
  border: 1px solid rgba(247, 193, 106, 0.6);
  border-radius: 999px;
  box-shadow: var(--nav-shadow);
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 clamp(8px, 1.2vw, 14px);
  font-weight: 600;
  font-size: 14px;
  color: var(--nav-text);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-link.is-active {
  opacity: 1;
  color: #1a0508;
  font-weight: 700;
}

.sign-in {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 clamp(18px, 2vw, 24px);
  background: var(--pill-dark);
  color: var(--sign-in-text);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(247, 193, 106, 0.45);
  border-radius: 999px;
  box-shadow: var(--nav-shadow);
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.sign-in:hover {
  background: var(--maroon-light);
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 193, 106, 0.2);
}

.burger {
  display: none;
}

/* Mobile Menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 1, 3, 0.85);
  backdrop-filter: blur(8px);
  z-index: 150;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 16px;
  right: 16px;
  background: #2a0509;
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 24px;
  z-index: 160;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-link {
  color: #f3dcb2;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.mobile-link:hover, .mobile-link.is-active {
  background: rgba(247, 193, 106, 0.15);
  color: var(--gold);
}

.mobile-link.mobile-signin {
  margin-top: 10px;
  background: var(--gold);
  color: var(--maroon);
  text-align: center;
  font-weight: 700;
}

/* ------------------------------------------------------------------
   2) Hero Section
------------------------------------------------------------------- */
.hero-section {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 30px;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust {
  --trust-size: clamp(36px, 4.5vw, 42px);
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}

.trust-avatar {
  position: relative;
  width: var(--trust-size);
  height: var(--trust-size);
  border-radius: 50%;
  background: var(--maroon);
  border: 1px solid var(--border-gold);
  padding: 5px;
  flex-shrink: 0;
}

.trust-avatar.a2, .trust-avatar.a3 {
  margin-left: calc(var(--trust-size) * -0.42);
}

.trust-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f8ecd8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-inner i {
  color: var(--maroon);
  font-size: 15px;
}

.trust-pill {
  display: flex;
  align-items: center;
  height: var(--trust-size);
  margin-left: calc(var(--trust-size) * -0.42);
  padding-left: calc(var(--trust-size) * 0.58);
  padding-right: 18px;
  background: var(--maroon);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-soft);
  white-space: nowrap;
}

.headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.5vw, 70px);
  line-height: 1.15;
  color: var(--gold-soft);
  background: linear-gradient(180deg, #ffffff 0%, #fbe7bf 40%, var(--gold) 80%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(247, 193, 106, 0.25));
  margin-bottom: 22px;
}

.headline-line {
  display: block;
}

.subhead {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-muted);
  max-width: 740px;
  margin-bottom: 36px;
  font-weight: 400;
}

.subhead strong {
  color: #fff;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: linear-gradient(135deg, #fbe7bf 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: #2a0509;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(247, 193, 106, 0.35);
  transition: all 0.25s ease;
}

.cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(247, 193, 106, 0.5);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(63, 8, 13, 0.65);
  color: var(--gold-soft);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.cta-secondary:hover {
  background: var(--maroon-light);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

/* ------------------------------------------------------------------
   3) Services Section
------------------------------------------------------------------- */
.services-section {
  padding-top: clamp(20px, 3vh, 45px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(247, 193, 106, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(247, 193, 106, 0.12);
  border: 1px solid var(--border-gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 22px;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.service-text {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-soft);
  border: 1px solid rgba(247, 193, 106, 0.2);
}

/* ------------------------------------------------------------------
   4) SaaS & Portfolio Section
------------------------------------------------------------------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(160deg, rgba(63, 8, 13, 0.85) 0%, rgba(35, 5, 8, 0.9) 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(247, 193, 106, 0.18);
}

.project-badge {
  position: absolute;
  top: 18px;
  right: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--maroon-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.project-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.project-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(247, 193, 106, 0.15);
  border: 1px solid var(--border-gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 22px;
}

.project-status {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.project-status.live {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.project-status.live i {
  font-size: 7px;
  animation: liveBlink 1.5s infinite;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.project-status.client {
  background: rgba(247, 193, 106, 0.15);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}

.project-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.project-description {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.project-meta, .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.meta-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--gold-soft);
  border: 1px solid rgba(247, 193, 106, 0.25);
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-tags span {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--maroon-deep);
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(247, 193, 106, 0.35);
}

.btn-card-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid var(--border-gold);
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-card-outline:hover {
  background: rgba(247, 193, 106, 0.15);
  border-color: var(--gold);
  color: #fff;
}

/* ------------------------------------------------------------------
   5) About Section
------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.about-lead {
  font-size: 17px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-body {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(247, 193, 106, 0.15);
  border: 1px solid var(--border-gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.highlight-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.highlight-item p {
  font-size: 13.5px;
  color: var(--text-muted);
}

.glass-box {
  background: rgba(30, 4, 7, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(14px);
}

.glass-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.terminal-title {
  font-family: monospace;
  font-size: 13px;
  color: var(--gold);
  margin-left: 6px;
}

.tech-stack-showcase {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.stack-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  font-size: 13px;
  border: 1px solid rgba(247, 193, 106, 0.1);
}

.stack-label {
  color: var(--gold-soft);
  font-weight: 600;
}

.stack-val {
  color: #fff;
  text-align: right;
  font-size: 12.5px;
}

.tech-quote {
  padding: 14px 16px;
  background: rgba(247, 193, 106, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-style: italic;
  color: var(--gold-soft);
}

.tech-quote i {
  color: var(--gold);
}

/* ------------------------------------------------------------------
   6) Contact Section
------------------------------------------------------------------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
}

.contact-info-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
}

.contact-info-panel h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.contact-info-panel > p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(247, 193, 106, 0.15);
  border: 1px solid var(--border-gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 18px;
}

.info-lbl {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-val {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.info-val:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold);
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--maroon-deep);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(247, 193, 106, 0.4);
}

.contact-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 38px 36px;
  backdrop-filter: blur(12px);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-soft);
}

.form-group .req {
  color: #f87171;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(15, 2, 4, 0.65);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14.5px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #2a0509;
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(247, 193, 106, 0.3);
}

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

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  background: linear-gradient(135deg, #fbe7bf 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: var(--maroon-deep);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(247, 193, 106, 0.35);
  transition: all 0.25s ease;
  margin-top: 6px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(247, 193, 106, 0.55);
}

.form-feedback {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-feedback.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: #86efac;
}

.form-feedback.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #fca5a5;
}

/* ------------------------------------------------------------------
   7) Site Footer
------------------------------------------------------------------- */
.site-footer {
  background: #0d0103;
  border-top: 1px solid var(--border-gold);
  padding: 60px 20px 30px;
  position: relative;
  z-index: 10;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-soft);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ------------------------------------------------------------------
   8) Responsive Breakpoints
------------------------------------------------------------------- */
@media (max-width: 960px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-pill, .sign-in {
    display: none;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pill-dark);
    border: 1px solid var(--border-gold);
    padding: 10px;
    cursor: pointer;
    margin-left: auto;
  }

  .burger-bar {
    width: 100%;
    height: 2px;
    background: var(--gold-soft);
    border-radius: 2px;
    transition: 0.25s ease;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-ribbon {
    grid-template-columns: 1fr;
  }

  .footer-links-group {
    grid-template-columns: 1fr 1fr;
  }
}

/* ------------------------------------------------------------------
   TEAM PAGE — Added only for the Our Team page and About dropdown
------------------------------------------------------------------- */

/* Desktop About dropdown */
.nav-dropdown {
  position: relative;
  height: 100%;
}

.nav-dropdown > summary {
  list-style: none;
  cursor: pointer;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary i {
  font-size: 9px;
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.nav-dropdown[open] > summary i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 175px;
  padding: 8px;
  background: #2a0509;
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.65), 0 0 18px rgba(247, 193, 106, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 220;
}

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

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-current {
  background: rgba(247, 193, 106, 0.14);
  color: var(--gold);
}

/* Mobile About dropdown */
.mobile-about-dropdown > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-about-dropdown > summary::-webkit-details-marker {
  display: none;
}

.mobile-about-dropdown > summary i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.mobile-about-dropdown[open] > summary i {
  transform: rotate(180deg);
}

.mobile-about-submenu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 0 4px 18px;
}

.mobile-sub-link {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 9px 14px;
  border-left: 1px solid var(--border-gold);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-sub-link:hover,
.mobile-sub-link.is-current {
  color: var(--gold);
  background: rgba(247, 193, 106, 0.08);
}

/* Team page */
.team-content {
  padding-top: 0;
}

.team-hero {
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 20px 80px;
  position: relative;
}

.team-hero-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.team-hero-title {
  margin: 8px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--gold-soft);
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fbe7bf 38%,
    var(--gold) 78%,
    var(--gold-deep) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(247, 193, 106, 0.22));
}

.team-hero-title span {
  display: inline-block;
}

.team-hero-desc {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
}

.team-section {
  padding-top: 35px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.65),
    0 0 25px rgba(247, 193, 106, 0.14);
}

.team-photo-wrap {
  position: relative;
  aspect-ratio: 1 / 1.02;
  overflow: hidden;
  background: var(--maroon-deep);
}

.team-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.85) contrast(1.03);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.05);
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(20, 3, 6, 0) 45%,
      rgba(20, 3, 6, 0.1) 58%,
      rgba(20, 3, 6, 0.9) 100%
    );
}

.team-role-badge {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(20, 3, 6, 0.78);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.team-card-body {
  padding: 24px 24px 22px;
}

.team-card-body h3 {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-role {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 13px;
}

.team-bio {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  min-height: 68px;
}

.team-socials {
  display: flex;
  gap: 9px;
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid var(--border-subtle);
}

.team-socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s ease;
}

.team-socials a:hover {
  background: var(--gold);
  color: var(--maroon-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(247, 193, 106, 0.3);
}

.team-cta-section {
  padding-top: 30px;
  padding-bottom: 90px;
}

.team-cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 58px 40px;
  text-align: center;
  background: rgba(30, 4, 7, 0.78);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
}

.team-cta-box .section-title {
  margin-top: 15px;
}

.team-cta-box .section-desc {
  max-width: 620px;
  margin: 0 auto 28px;
}

.team-cta-box .cta i {
  margin-left: 8px;
}

@media (max-width: 960px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-hero {
    min-height: 42vh;
  }
}

@media (max-width: 720px) {
  .nav-dropdown {
    display: none;
  }

  .team-hero {
    min-height: 44vh;
    padding: 130px 18px 60px;
  }

  .team-hero-title {
    font-size: clamp(38px, 12vw, 58px);
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card-body {
    padding: 22px 20px 20px;
  }

  .team-bio {
    min-height: auto;
  }

  .team-cta-box {
    padding: 45px 22px;
  }
}