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

:root {
  /* Premium Charcoal & Champagne Gold Palette */
  --bg-primary: #0a0b0e;      /* Neutral deep slate/charcoal */
  --bg-secondary: #12141a;    /* Lighter charcoal */
  --bg-tertiary: #191c24;     /* Card background */
  
  --color-gold-light: #f5e4bd;
  --color-gold: #dfc480;      /* Clean Champagne Gold */
  --color-gold-dark: #bfa254;
  --color-gold-rgb: 223, 196, 128;
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ea3ae;
  --text-muted: #5d626e;
  
  --glass-bg: rgba(18, 20, 26, 0.85);
  --glass-border: rgba(223, 196, 128, 0.1);
  --glass-border-hover: rgba(223, 196, 128, 0.35);
  
  --glow-gold: 0 0 20px rgba(223, 196, 128, 0.12);
  --glow-gold-strong: 0 0 35px rgba(223, 196, 128, 0.3);
  
  --font-serif: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) var(--bg-primary);
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Background Gradients & Structural Elements */
.background-glows {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.06;
}

.orb-1 {
  top: -15%;
  left: 25%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
}

.orb-2 {
  bottom: 0%;
  right: 5%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, var(--color-gold-dark) 0%, transparent 70%);
}

#particle-canvas {
  display: none; /* Removed floating stars canvas completely */
}

/* Structural Tech Grid lines */
.tech-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(223, 196, 128, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223, 196, 128, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center center;
  z-index: -1;
  pointer-events: none;
  opacity: 0.8;
}

/* ==================== INTRO SCREEN ==================== */
#intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #060709;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1), opacity 1.2s ease;
}

#intro-screen.loaded {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.intro-content {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Geometric Logo bloom on splash screen */
.intro-lotus-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: scale(0.7);
  animation: introBloom 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-lotus-wrapper svg {
  width: 100%;
  height: 100%;
}

.intro-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.5rem;
  color: #fff;
  opacity: 0;
  transform: translateY(15px);
  animation: introFadeText 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  text-shadow: 0 0 10px rgba(223, 196, 128, 0.2);
}

.intro-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  color: var(--color-gold);
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  animation: introFadeText 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

@keyframes introBloom {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 15px rgba(223, 196, 128, 0.35));
  }
}

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

/* ==================== LAYOUT & NAVIGATION ==================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(10, 11, 14, 0.6);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 1rem 6%;
  background: rgba(10, 11, 14, 0.95);
  border-bottom: 1px solid rgba(223, 196, 128, 0.08);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo-svg-wrapper {
  width: 36px;
  height: 36px;
  transition: var(--transition-smooth);
}

.logo-container:hover .logo-svg-wrapper {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px var(--color-gold));
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.15rem;
  color: #fff;
  background: linear-gradient(120deg, #fff, var(--color-gold-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: #fff;
}

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

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 6% 4rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sacred-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: rgba(223, 196, 128, 0.03);
  border: 1px solid rgba(223, 196, 128, 0.15);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: var(--color-gold);
  margin-bottom: 2rem;
  box-shadow: inset 0 0 10px rgba(223, 196, 128, 0.02);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
  box-shadow: var(--glow-gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero-title span {
  display: block;
}

.hero-title .divine-gradient {
  background: linear-gradient(135deg, #fff 20%, var(--color-gold-light) 60%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
  font-weight: 300;
}

/* Call to Action Premium Buttons */
.cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  position: relative;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  padding: 1.1rem 2.2rem;
  color: #0a0b0e;
  background: var(--color-gold);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(223, 196, 128, 0.15);
  border: 1px solid var(--color-gold);
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(223, 196, 128, 0.3);
  background: var(--color-gold-light);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  padding: 1.1rem 2.2rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

/* Isometric Tech Layout Visualizer */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
  perspective: 1000px;
}

.isometric-container {
  position: relative;
  width: 280px;
  height: 280px;
  transform: rotateX(55deg) rotateZ(-45deg);
  transform-style: preserve-3d;
  transition: var(--transition-smooth);
}

.iso-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(223, 196, 128, 0.1);
  border-radius: 8px;
  background: rgba(18, 20, 26, 0.35);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
  display: flex;
  justify-content: center;
  align-items: center;
}

.layer-bottom {
  transform: translateZ(-50px);
  border-color: rgba(223, 196, 128, 0.05);
}

.layer-middle {
  transform: translateZ(0px);
  border-color: rgba(223, 196, 128, 0.18);
}

.layer-top {
  transform: translateZ(50px);
  background: rgba(25, 28, 36, 0.55);
  border-color: rgba(223, 196, 128, 0.35);
}

.isometric-container:hover .layer-top {
  transform: translateZ(70px) translate(-8px, -8px);
  border-color: var(--color-gold);
}

.isometric-container:hover .layer-bottom {
  transform: translateZ(-70px) translate(8px, 8px);
}

.iso-grid {
  width: 85%;
  height: 85%;
  background-image: 
    linear-gradient(rgba(223, 196, 128, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223, 196, 128, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: 4px;
  opacity: 0.7;
}

.iso-logo {
  width: 45%;
  height: 45%;
  filter: drop-shadow(0 0 10px rgba(223, 196, 128, 0.35));
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==================== COMMON SECTION STYLES ==================== */
section {
  padding: 8rem 6%;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: #fff;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Scroll Entrance Animation Base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ==================== PHILOSOPHY SECTION ==================== */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Architectural Stack (Replaces Mandala) */
.philosophy-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  background: radial-gradient(circle, rgba(18, 20, 26, 0.4) 0%, transparent 70%);
  border-radius: 12px;
  border: 1px solid rgba(223, 196, 128, 0.04);
}

.architecture-stack {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.arch-layer {
  background: rgba(25, 28, 36, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 1.2rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition-smooth);
  cursor: default;
}

.arch-layer:hover {
  border-color: var(--color-gold);
  transform: translateX(8px);
  box-shadow: var(--glow-gold);
}

.arch-indicator {
  width: 12px;
  height: 12px;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.arch-layer:hover .arch-indicator {
  background-color: var(--color-gold);
  box-shadow: 0 0 8px var(--color-gold);
}

.arch-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  color: var(--text-primary);
}

.arch-connector {
  position: absolute;
  left: 21px;
  top: 100%;
  width: 2px;
  height: 1.5rem;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  opacity: 0.4;
}

.philosophy-content {
  display: flex;
  flex-direction: column;
}

.philosophy-text-lead {
  font-size: 1.3rem;
  font-family: var(--font-serif);
  color: var(--color-gold-light);
  line-height: 1.5;
  margin-bottom: 2rem;
  font-weight: 500;
}

.philosophy-pillars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pillar-item {
  display: flex;
  gap: 1.5rem;
}

.pillar-num {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.9;
  line-height: 1;
}

.pillar-info h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.pillar-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 300;
}

/* ==================== IMPACT / STATS SECTION ==================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: rgba(18, 20, 26, 0.45);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  background: rgba(25, 28, 36, 0.6);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3), var(--glow-gold);
}

.stat-glow {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
  opacity: 0.05;
  filter: blur(15px);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.stat-card:hover .stat-glow {
  opacity: 0.2;
  transform: scale(1.5);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  background: linear-gradient(135deg, #ffffff 20%, var(--color-gold-light) 60%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 5px rgba(223, 196, 128, 0.1));
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.5;
}

/* ==================== CONTACT / EMAIL SECTION ==================== */
.contact-section {
  padding: 8rem 6% 6rem;
  text-align: center;
  position: relative;
}

.contact-container {
  max-width: 750px;
  margin: 0 auto;
  background: radial-gradient(circle at top, rgba(25, 28, 36, 0.5) 0%, rgba(18, 20, 26, 0.3) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 5rem 3rem;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.contact-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: #fff;
}

.contact-desc {
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

/* Interactive Email block (no forms) */
.email-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.email-address-box {
  background: rgba(10, 11, 14, 0.85);
  border: 1px solid rgba(223, 196, 128, 0.2);
  padding: 1.2rem 2rem;
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.email-address-box:hover {
  border-color: var(--color-gold);
  box-shadow: inset 0 0 20px rgba(223, 196, 128, 0.05), var(--glow-gold);
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 4px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.copy-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.copy-btn:hover {
  color: var(--color-gold);
  background: rgba(223, 196, 128, 0.08);
}

/* Visual confirmation bubble */
.copy-tooltip {
  position: absolute;
  top: -45px;
  background: var(--color-gold);
  color: #0a0b0e;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  box-shadow: 0 4px 15px rgba(223, 196, 128, 0.3);
}

.copy-tooltip.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.email-actions {
  display: flex;
  gap: 1.5rem;
}

.mail-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  padding: 1rem 2rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.mail-btn-primary {
  color: #0a0b0e;
  background: var(--color-gold);
  box-shadow: 0 4px 15px rgba(223, 196, 128, 0.2);
}

.mail-btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(223, 196, 128, 0.35);
}

.mail-btn-primary svg {
  width: 18px;
  height: 18px;
  stroke: #0a0b0e;
  stroke-width: 2;
  fill: none;
}

/* Footer bottom */
footer {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand svg {
  width: 20px;
  height: 20px;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

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

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

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .philosophy-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  header {
    padding: 1.5rem 5%;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10, 11, 14, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    transition: var(--transition-smooth);
    z-index: 100;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  /* Mobile menu cross icon state */
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero {
    padding-top: 10rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-info {
    align-items: center;
  }
  
  .cta-group {
    justify-content: center;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .philosophy-visual {
    order: 2;
    height: 300px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    padding: 4rem 2rem;
  }
  
  .email-address-box {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    max-width: 100%;
  }
  
  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
