/* =============================================
   MADEBYHUMANS — Global Reset & Tokens
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --clr-black: #000000;
  --clr-dark: #050505;
  --clr-dark-2: #0a0a0a;
  --clr-orange: #FF5C00;
  --clr-orange-light: #FF8040;
  --clr-orange-dim: rgba(255, 92, 0, 0.15);
  --clr-cyan: rgba(0, 220, 210, 0.18);
  --clr-white: #FFFFFF;
  --clr-grey: #A0A0A0;
  --clr-grey-light: #D0D0D0;
  --clr-border: rgba(255, 255, 255, 0.08);
  --sidebar-width: 58px;
  --nav-height: 90px;
  --font-display: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  --font-body: 'Space Grotesk', 'Inter', sans-serif;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--clr-black);
  color: var(--clr-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  padding-left: var(--sidebar-width);
}

::selection {
  background: var(--clr-orange);
  color: #fff;
}

/* =============================================
   SCROLL BAR
   ============================================= */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: var(--clr-orange);
  border-radius: 2px;
}

/* =============================================
   FIXED SIDE BAR
   ============================================= */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: #000;
  border-right: 1px solid rgba(255, 92, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  padding: 16px 0;
}

.sidebar-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--clr-grey);
  text-transform: uppercase;
  white-space: nowrap;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.sidebar-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.2px solid rgba(255, 92, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: var(--transition);
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

.sidebar-logo:hover {
  background: var(--clr-orange-dim);
  border-color: var(--clr-orange);
  box-shadow: 0 0 16px rgba(255, 92, 0, 0.3);
}

.sidebar-logo-img {
  position: absolute;
  height: 32px;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

/* =============================================
   NAVIGATION BAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: var(--sidebar-width);
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 999;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  padding: 0 40px;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 92, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 32px;
}

.nav-logo {
  margin-right: auto;
  display: flex;
  align-items: center;
  height: var(--nav-height);
  width: 100px;
  position: relative;
  overflow: hidden;
}

.nav-logo-img {
  position: absolute;
  height: 54px;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  transition: transform 0.4s ease;
}

.nav-logo-img:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-orange);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--clr-orange);
  border-radius: 100px;
  padding: 8px 22px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--clr-white);
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--clr-orange);
  box-shadow: 0 0 24px rgba(255, 92, 0, 0.5);
}

.cta-arrow {
  font-size: 16px;
  transition: transform var(--transition);
}

.nav-cta:hover .cta-arrow {
  transform: translateX(4px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-white);
  transition: var(--transition);
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: var(--sidebar-width);
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

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

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--clr-white);
  text-decoration: none;
  letter-spacing: 0.1em;
  padding: 12px 0;
  transition: color var(--transition);
}

.mobile-link:hover {
  color: var(--clr-orange);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--clr-black);
}

.starfield-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 1;
  pointer-events: none;
}

.hero-glow-left {
  left: 0;
  background: radial-gradient(ellipse at left center, rgba(0, 200, 210, 0.12) 0%, transparent 70%);
}

.hero-glow-right {
  right: 0;
  background: radial-gradient(ellipse at right center, rgba(0, 200, 210, 0.12) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: var(--nav-height) 24px 60px;
}

.hero-spark {
  width: 64px;
  height: 64px;
  animation: spinSpark 8s linear infinite, pulseSpark 3s ease-in-out infinite alternate;
}

.hero-spark svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(255, 92, 0, 0.9));
}

@keyframes spinSpark {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseSpark {
  0% {
    filter: drop-shadow(0 0 12px rgba(255, 92, 0, 0.6));
  }

  100% {
    filter: drop-shadow(0 0 32px rgba(255, 92, 0, 1));
    transform: scale(1.1);
  }
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--clr-orange);
  text-transform: uppercase;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--clr-white);
  text-shadow: 0 0 60px rgba(255, 92, 0, 0.15);
  animation: fadeUp 0.9s ease 0.4s both;
}

.hero-title-line {
  display: block;
  color: var(--clr-white);
}

.hero-title-accent {
  display: block;
  color: var(--clr-orange);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 2.2vw, 20px);
  font-weight: 300;
  color: var(--clr-grey);
  letter-spacing: 0.06em;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 36px;
  background: var(--clr-orange);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--clr-white);
  text-decoration: none;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fadeUp 1.1s ease 0.8s both;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(255, 92, 0, 0.5);
}

.cta-arrow-circle {
  font-size: 18px;
  transition: transform var(--transition);
}

.hero-cta:hover .cta-arrow-circle {
  transform: translateX(4px);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: bounce 2s ease infinite;
}

.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--clr-orange));
}

.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--clr-grey);
  text-transform: uppercase;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   CURVE DIVIDERS
   ============================================= */
.curve-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.curve-divider svg {
  display: block;
  width: 100%;
}

.planet-curve {
  display: flex;
  justify-content: center;
  padding: 40px 0 0;
  overflow: hidden;
}

.planet-arc {
  width: 120%;
  height: 140px;
  border-radius: 50% 50% 0 0;
  border: 1.5px solid rgba(255, 92, 0, 0.25);
  border-bottom: none;
  background: radial-gradient(ellipse at top center, rgba(255, 92, 0, 0.06) 0%, transparent 70%);
}

/* =============================================
   SECTIONS — BASE STYLES
   ============================================= */
.section {
  position: relative;
  padding: 100px 0;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--clr-orange);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--clr-orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.92;
  color: var(--clr-white);
  margin-bottom: 56px;
  letter-spacing: 0.01em;
}

.accent {
  color: var(--clr-orange);
}

/* =============================================
   TWO-COLUMN LAYOUT
   ============================================= */
.section-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.col-block {
  padding: 36px;
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.col-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--clr-orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.col-block:hover {
  border-color: rgba(255, 92, 0, 0.4);
  background: rgba(255, 92, 0, 0.04);
}

.col-block:hover::before {
  transform: scaleY(1);
}

.col-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.col-title {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--clr-white);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.col-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--clr-grey);
}

/* =============================================
   SECTION IMAGE CARD
   ============================================= */
.section-image-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  height: 360px;
}

.section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.7);
}

.section-image-card:hover .section-img {
  transform: scale(1.04);
}

.section-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--clr-orange);
  text-transform: uppercase;
}

/* =============================================
   SECTION CTA BUTTON
   ============================================= */
.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--clr-white);
  border-radius: 100px;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--clr-white);
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color var(--transition), color var(--transition), background var(--transition), box-shadow var(--transition);
}

.section-cta:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
  background: rgba(255, 92, 0, 0.08);
  box-shadow: 0 0 24px rgba(255, 92, 0, 0.25);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  background: var(--clr-dark);
}

/* =============================================
   MISSION SECTION
   ============================================= */
.mission-section {
  background: var(--clr-black);
}

/* =============================================
   PORTFOLIO SECTION
   ============================================= */
.portfolio-section {
  background: var(--clr-dark-2);
  padding-bottom: 120px;
}

.portfolio-inner {
  max-width: 1200px;
}

.portfolio-title {
  margin-bottom: 20px;
}

.portfolio-category {
  margin: 60px 0 28px;
}

.category-label {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 16px;
  transition: color 0.4s ease;
}

.portfolio-category:hover .category-label {
  color: rgba(255, 92, 0, 0.15);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-card {
  cursor: pointer;
  transition: transform 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
}

.portfolio-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 16px;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55) saturate(0.8);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-img {
  filter: brightness(0.75) saturate(1);
  transform: scale(1.06);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
}

.portfolio-card-logo {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.12em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 0 16px;
}

.portfolio-card-info h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

/* =============================================
   ENTERPRISE PROJECT STYLES
   ============================================= */
.enterprise-card {
  width: 100%;
  height: 100%;
  padding: 40px;
  background-color: var(--clr-dark);
  background-image:
    linear-gradient(rgba(255, 92, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 92, 0, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  border: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: border-color 0.4s ease, background-color 0.4s ease;
}

.enterprise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--clr-orange), transparent);
  opacity: 0.4;
  z-index: 3;
}

.enterprise-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 92, 0, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.portfolio-card:hover .enterprise-card,
.section-image-card:hover .enterprise-card {
  border-color: rgba(255, 92, 0, 0.3);
  background-color: rgba(255, 92, 0, 0.02);
}

.portfolio-card:hover .enterprise-card::after,
.section-image-card:hover .enterprise-card::after {
  opacity: 1;
}

.enterprise-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.45em;
  color: var(--clr-orange);
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.enterprise-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.75;
  color: #e0e0e0;
  letter-spacing: 0.015em;
  max-width: 90%;
  position: relative;
  z-index: 2;
}

.portfolio-card-img-wrap .enterprise-card {
  padding: 32px;
}

.portfolio-card-img-wrap .enterprise-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #c0c0c0;
}

.portfolio-card-img-wrap .enterprise-tag {
  margin-bottom: 16px;
  opacity: 0.8;
}

/* =============================================
   SERVICES SECTION UPDATES
   ============================================= */
.section-image-card .enterprise-card {
  height: 100%;
}

#pc-1,
#pc-2,
#pc-3,
#pc-4,
#pc-5,
#pc-6,
#pc-7,
#pc-8,
#pc-9 {
  width: 100%;
}

.portfolio-card-img-wrap {
  background: var(--clr-dark);
}


/* =============================================
   CREW SECTION
   ============================================= */
.crew-section {
  background: var(--clr-dark);
}

.crew-definition {
  max-width: 700px;
  margin-bottom: 64px;
}

.crew-def-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.crew-def-icon {
  color: var(--clr-orange);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.crew-def-item p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--clr-grey-light);
  font-style: italic;
}

.crew-tagline {
  margin-top: 24px;
  font-size: 13px;
  color: var(--clr-grey);
  letter-spacing: 0.08em;
  padding-left: 34px;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.crew-card {
  padding: 32px 24px;
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.crew-card:hover {
  border-color: rgba(255, 92, 0, 0.4);
  transform: translateY(-4px);
}

.crew-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--clr-white);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 24px rgba(255, 92, 0, 0.3);
}

.crew-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-white);
}

.crew-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--clr-orange);
  text-transform: uppercase;
}

.crew-bio {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--clr-grey);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  background: var(--clr-black);
  padding-bottom: 0;
  overflow: hidden;
}

.moon-rise {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 180%;
  height: 400px;
  border-radius: 50% 50% 0 0;
  background: radial-gradient(ellipse at bottom center, rgba(255, 92, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
}

.contact-title {
  margin-bottom: 20px;
}

.contact-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--clr-grey);
  max-width: 560px;
  margin-bottom: 48px;
}

.contact-form {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--clr-grey);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 18px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-orange);
  background: rgba(255, 92, 0, 0.04);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23666' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  padding-right: 44px;
}

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

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

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--clr-orange);
  border: none;
  border-radius: 100px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--clr-white);
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  align-self: flex-start;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 92, 0, 0.5);
}

.form-success {
  display: none;
  font-size: 14px;
  color: #4CAF50;
  font-weight: 500;
  padding: 12px 20px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 4px;
}

.contact-email-display {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--clr-border);
}

.contact-email-display a {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 44px);
  color: var(--clr-white);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.03em;
}

.contact-email-display a:hover {
  color: var(--clr-orange);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  position: relative;
  background: var(--clr-black);
  overflow: hidden;
  padding-top: 200px;
  padding-bottom: 48px;
}

.footer-moon {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180%;
  height: 300px;
  border-radius: 50% 50% 0 0;
  background: radial-gradient(ellipse at center bottom, rgba(255, 92, 0, 0.18) 0%, rgba(255, 92, 0, 0.06) 40%, transparent 70%);
  border-top: 1.5px solid rgba(255, 92, 0, 0.3);
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  height: 140px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.footer-logo-img {
  position: absolute;
  height: 300px;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 30px rgba(255, 92, 0, 0.3));
  transition: filter 0.4s ease;
}

.footer-logo-img:hover {
  filter: drop-shadow(0 0 10px rgba(255, 92, 0, 0.6));
}

.footer-tagline {
  font-size: 12px;
  font-weight: 400;
  color: var(--clr-grey);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--clr-orange);
}

.footer-small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
}

/* =============================================
   ANIMATIONS — SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
  .crew-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-inner {
    padding: 0 40px;
  }

  .portfolio-inner {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --sidebar-width: 0px;
  }

  body {
    padding-left: 0;
  }

  .sidebar {
    display: none;
  }

  .navbar {
    left: 0;
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .mobile-menu {
    display: flex;
  }

  .section-two-col {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .crew-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .section-inner {
    padding: 0 24px;
  }

  .portfolio-inner {
    padding: 0 24px;
  }

  .section {
    padding: 72px 0;
  }

  .footer-inner {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .crew-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 72px;
  }
}