:root {
  --bg-color: #0a0a0a;
  --glass-bg: rgba(20, 20, 20, 0.6);
  --gold-accent: #d4af37;
  --text-white: #ffffff;
}

body {
  margin: 0;
  /* 1. LOCK SCROLLING INITIALLY */
  overflow: hidden;
  background: var(--bg-color);
  width: 100vw;
  font-family: "Helvetica Neue", sans-serif;
  transition: background 1s ease;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Force full height */
  perspective: 1000px;
}

/* Noise Texture */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.05;
  pointer-events: none;
  z-index: 9999;
}

.card {
  position: absolute;
  left: 50%;
  top: 50%;
  will-change: transform;
  transform-style: preserve-3d;
}

/* Background Image Cards */
.media-card {
  width: 25vw;
  height: 16vw;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0.8;
}

/* Hero Glass Card (Static Center) */
.glass-hero {
  width: 40vw;
  height: auto;
  z-index: 1000;
  /* CSS Centers it because JS ignores it now */
  transform: translate(-50%, -50%) !important;
}

.glass-content {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: var(--text-white);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.logo-placeholder {
  max-width: 100%;
  height: auto;
  display: inline-block;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5vw;
  margin: 1rem 0;
  font-weight: 300;
  letter-spacing: -0.02em;
}
p {
  color: #888;
  margin-bottom: 2rem;
  font-size: 1vw;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta-btn {
  background: var(--gold-accent);
  color: black;
  border: none;
  padding: 12px 30px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}
.cta-btn:hover {
  transform: scale(1.05);
}

/* --- NEW: UNLOCK & REVEAL STYLES --- */

/* 2. HIDDEN HEADER */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 1rem 0;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateY(-100%); /* Start HIDDEN */
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  height: 30px;
  width: auto;
}

.glass-header nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 2rem;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.glass-header nav a:hover {
  opacity: 1;
  color: var(--gold-accent);
}

.header-btn {
  border: 1px solid var(--gold-accent);
  padding: 8px 20px;
  border-radius: 4px;
  color: var(--gold-accent) !important;
}

/* 3. HIDDEN ABOUT SECTION */
#expertise {
  opacity: 0;
  transform: translateY(100px) scale(0.95);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

/* JS adds this class to reveal it */
.section-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}

/* --- END NEW STYLES --- */

/* ABOUT SECTION BASICS */
.about-section {
  position: relative;
  background: #0a0a0a;
  color: white;
  padding: 100px 5vw;
  z-index: 20;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 100vh; /* Ensure it takes up space */
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.gold-text {
  color: #d4af37;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}
.subtitle {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 4rem;
  max-width: 600px;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: #d4af37;
}

.icon-box {
  font-family: "Courier New", monospace;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.1);
  font-weight: bold;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.service-card p {
  color: #aaa;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* FOOTER */
.glass-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: black;
  padding: 3rem 5vw;
  position: relative;
  z-index: 20;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}
.footer-brand h2 {
  font-size: 1.5rem;
  color: white;
  margin: 0 0 0.5rem 0;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #666;
  font-family: monospace;
}
.dot {
  width: 8px;
  height: 8px;
  background-color: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
}
.pulse {
  animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
  }
  70% {
    opacity: 0.5;
    box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
  }
}

.footer-links a {
  display: block;
  color: #888;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
  text-align: right;
}
.footer-links a:hover {
  color: #d4af37;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  color: #444;
  font-size: 0.8rem;
}
.agency-credit {
  opacity: 0.5;
}

/* TRUST BAR RESPONSIVE */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #555;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.line-separator {
  height: 1px;
  flex-grow: 1;
  background: #333;
}

/* MOBILE OPTIMIZATION */
/* --- MOBILE PARALLAX ENABLED --- */
/* 1. Tighten the container padding */
.header-inner {
  padding: 0 15px; /* Less padding on the edges */
}

/* 2. Shrink the Logo */
.header-logo {
  height: 22px; /* Smaller logo */
}

/* 3. Adjust Links */
.glass-header nav {
  display: flex;
  align-items: center;
}

.glass-header nav a {
  font-size: 0.75rem; /* Smaller text (12px) */
  margin-left: 10px; /* Much tighter gap (was 2rem) */
}

/* 4. Compact Contact Button */
.header-btn {
  padding: 6px 12px; /* Smaller button padding */
  white-space: nowrap; /* Forces it to NEVER wrap text */
}

/* --- EXISTING MOBILE RULES (Keep these!) --- */
.hero-container {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  perspective: 1000px;
}
.glass-hero {
  width: 85%;
  transform: translate(-50%, -50%) !important;
}
.media-card {
  width: 40vw;
  height: 30vw;
  display: block !important;
  opacity: 0.6;
}
.glass-content {
  padding: 2rem 1rem;
}
h1 {
  font-size: 2rem;
}
p {
  font-size: 0.8rem;
}
.noise-overlay {
  display: none;
}
.services-grid {
  grid-template-columns: 1fr;
}
.footer-top,
.trust-bar {
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer-links a {
  text-align: center;
}
