@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --bg-deep: #050505;
  --bg-surface: #0a0a0a;
  --bg-card: rgba(251, 191, 36, 0.02);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  
  /* Palette: Golden Hour (Amber to Golden Orange Gradient) */
  --accent-primary: #fbbf24; /* Sunset Yellow */
  --accent-secondary: #d97706; /* Golden Orange */
  --accent-silver: #e2e8f0; 
  --accent-glow: rgba(251, 191, 36, 0.15);
  
  /* The Gradient Number 4 */
  --gradient-gold: linear-gradient(135deg, #fbbf24, #d97706);
  
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  --nav-height: 100px;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 0% 0%, rgba(251, 191, 36, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(217, 119, 6, 0.05) 0px, transparent 50%);
  
  /* Scroll Snap Container - Disable on mobile to prevent content cut-off */
  scroll-snap-type: y proximity;
}

@media (min-width: 1024px) {
  body {
    scroll-snap-type: y mandatory;
  }
}

section, footer {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  font-weight: 700;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Floating Header */
.header-wrapper {
  position: fixed;
  top: 25px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

header {
  width: 90%;
  max-width: 1100px;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 0 1rem 0 2.5rem;
  transition: var(--transition-smooth);
  pointer-events: auto;
}

header.scrolled {
  width: 90%;
  height: 70px;
  background: rgba(5, 5, 5, 0.95);
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  header {
    width: 95%;
    padding: 0 1.5rem;
  }
  header.scrolled {
    width: 95%;
  }
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--accent-primary);
}

.btn-cta {
  background: var(--gradient-gold);
  color: #000;
  padding: 0.8rem 2.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-glow);
  filter: brightness(1.1);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 4.8rem;
  line-height: 1.05;
  margin-bottom: 2rem;
  color: #fff;
}

.highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 580px;
  margin-bottom: 3.5rem;
  line-height: 1.8;
}

.hero-image {
  position: relative;
}

.image-frame {
  position: relative;
  padding: 8px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.image-frame img {
  width: 100%;
  border-radius: 32px;
  display: block;
}

/* Impact Section */
.impact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  background: var(--bg-surface);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.impact-info h2 {
  font-size: 3.8rem;
  margin-bottom: 2rem;
  color: #fff;
}

.quote-box {
  background: rgba(255, 255, 255, 0.015);
  padding: 3rem;
  border-radius: 35px;
  border-left: 3px solid var(--accent-primary);
  position: relative;
}

.quote-text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #fff;
  font-weight: 300;
  font-style: italic;
  opacity: 0.9;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-tile {
  background: rgba(255, 255, 255, 0.01);
  padding: 4rem 2rem;
  border-radius: 35px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-smooth);
}

.stat-tile:hover {
  border-color: rgba(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.02);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* Expertise Section */
.services {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 7rem;
}

.section-head h2 {
  font-size: 3.5rem;
  color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.service-item {
  background: var(--bg-card);
  padding: 4rem 2.8rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-smooth);
}

.service-item:hover {
  transform: translateY(-15px);
  background: rgba(251, 191, 36, 0.05);
  border-color: rgba(251, 191, 36, 0.3);
}

.service-icon-img {
  width: 85px;
  height: 85px;
  margin-bottom: 3rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}

.service-item h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.service-item p {
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Footer Section */
footer {
  min-height: 80vh; /* Allow footer to be snap point but not necessarily full screen */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 3rem;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  margin-bottom: 7rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand img {
  align-self: flex-start;
  transition: var(--transition-smooth);
}

.footer-brand img:hover {
  transform: scale(1.05);
}

.address-group h4 {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.address-group a {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  header { width: 95%; }
  .hero-content h1 { font-size: 3.5rem; }
  .impact-info h2 { font-size: 3rem; }
  .hero .container, .impact-grid { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 3rem;
  }
  .hero-content, .impact-info { 
    display: flex;
    flex-direction: column;
    align-items: center; 
  }
  .hero { padding-top: 140px; }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 80px;
  }
  .hero-content h1 { font-size: 2.8rem; }
  .impact-info h2 { font-size: 2.5rem; }
  .section-head h2 { font-size: 2.5rem; }
  
  .nav-links { display: none; } /* On mobile, hide nav for cleaner look or could add burger */
  
  .stats-container { 
    grid-template-columns: 1fr; 
    width: 100%;
  }
  
  .footer-top { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 3rem;
  }
  
  .footer-brand { align-items: center; }
  .footer-brand img { align-self: center; }
}
