/* ============================================
   EAGLE SECURITY - MAIN STYLESHEET
   Version: 2.0 Professional
   Colors: #F3AF3D (Gold), #000000, #FFFFFF
   ============================================ */

/* === CSS Variables & Root === */
:root {
  --gold: #F3AF3D;
  --gold-dark: #D49520;
  --gold-light: #F7C970;
  --gold-glow: rgba(243, 175, 61, 0.4);
  --black: #000000;
  --black-soft: #0A0A0A;
  --black-medium: #111111;
  --black-light: #1A1A1A;
  --white: #FFFFFF;
  --white-soft: #F5F5F5;
  --white-medium: #E0E0E0;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gray-700: #495057;
  --gray-800: #343A40;
  --gray-900: #212529;
  
  --font-primary: 'Outfit', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.24);
  --shadow-gold: 0 4px 24px rgba(243, 175, 61, 0.3);
  --shadow-gold-lg: 0 8px 48px rgba(243, 175, 61, 0.4);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 50%;
  
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
  --z-loader: 999;
}

/* === Global Reset & Base === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.7;
  color: var(--white-medium);
  background-color: var(--black);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.8rem); }
h5 { font-size: clamp(1rem, 1.5vw, 1.3rem); }
h6 { font-size: clamp(0.9rem, 1.2vw, 1.1rem); }

p {
  margin-bottom: 1rem;
  color: var(--gray-400);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

/* === Gradient Text Effects === */
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #FFD700 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-text-white {
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 50%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-dark {
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 50%, #1A1A1A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Gradient Backgrounds === */
.gradient-bg-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #D49520 50%, var(--gold) 100%);
}

.gradient-bg-dark {
  background: linear-gradient(135deg, #000000 0%, #1A1A1A 50%, #0A0A0A 100%);
}

.gradient-bg-card {
  background: linear-gradient(145deg, #111111 0%, #0A0A0A 100%);
}

.gradient-border {
  position: relative;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* === Loader === */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-loader);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 80px;
  height: 80px;
  animation: loaderPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(243, 175, 61, 0.5));
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(243, 175, 61, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 20px auto;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* === Navigation === */
.navbar {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(243, 175, 61, 0.2);
  padding: 0.8rem 0;
  transition: all var(--transition-smooth);
  z-index: var(--z-sticky);
  position: sticky;
  top: 0;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand img {
  height: 45px;
  width: auto;
  transition: transform var(--transition-smooth);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 1px;
}

.brand-text span {
  color: var(--gold);
}

.nav-link {
  color: var(--gray-400) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  position: relative;
  transition: color var(--transition-fast);
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gold);
  transition: transform var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
  color: var(--gold) !important;
}

/* Hamburger Menu */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: var(--z-dropdown);
}

.hamburger-icon {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.navbar-toggler.active .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Side Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  height: -webkit-fill-available;
  background: var(--black-medium);
  z-index: var(--z-modal);
  transition: right var(--transition-smooth);
  padding: 2rem;
  overflow-y: auto;
  border-left: 2px solid var(--gold);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  color: var(--white-medium);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

/* === Hero Section - 3D Full Screen Slider === */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  overflow: hidden;
}

.hero-slider-wrapper {
  height: 100%;
  width: 100%;
}

.hero-slider {
  height: 100%;
}

.hero-slide {
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  transform-style: preserve-3d;
  perspective: 1500px;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 0;
}

.hero-content {
  max-width: 650px;
  animation: fadeInUp 1s ease forwards;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(243, 175, 61, 0.15);
  border: 1px solid rgba(243, 175, 61, 0.3);
  border-radius: 50px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-title .gold-highlight {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.hero-title .gold-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(243, 175, 61, 0.3);
  border-radius: 4px;
  z-index: -1;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-300);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* Hero Slider Controls */
.hero-slider-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 1rem;
}

.hero-slider-prev,
.hero-slider-next {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
  transform: scale(1.1);
}

/* Hero Particles Canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* === Buttons === */
.btn {
  font-weight: 600;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all var(--transition-smooth);
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #D49520 100%);
  color: var(--black);
  border: none;
  box-shadow: 0 4px 20px rgba(243, 175, 61, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #F7C970 0%, var(--gold) 100%);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(243, 175, 61, 0.5);
}

.btn-gold:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border: none;
}

.btn-white:hover {
  background: var(--gray-200);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--black-light);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-dark:hover {
  background: var(--black);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 1rem 2.8rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

.btn-icon {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* === Sections Common === */
.section {
  padding: 100px 0;
  position: relative;
}

.section-sm {
  padding: 60px 0;
}

.section-lg {
  padding: 140px 0;
}

.section-dark {
  background-color: var(--black);
}

.section-darker {
  background-color: var(--black-soft);
}

.section-black {
  background-color: #050505;
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-mono);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.section-description {
  color: var(--gray-400);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === Cards === */
.card-custom {
  background: var(--black-medium);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.card-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.card-custom:hover {
  border-color: rgba(243, 175, 61, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.card-custom:hover::before {
  opacity: 1;
}

.card-icon {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(243, 175, 61, 0.15) 0%, rgba(243, 175, 61, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--gold);
  transition: all var(--transition-smooth);
}

.card-custom:hover .card-icon {
  background: var(--gold);
  color: var(--black);
  transform: rotateY(180deg);
}

.card-title {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.card-text {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === Phase Cards === */
.phase-card {
  background: linear-gradient(145deg, #0D0D0D 0%, #050505 100%);
  border: 1px solid #1A1A1A;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition-smooth);
  height: 100%;
  overflow: hidden;
}

.phase-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(243, 175, 61, 0.08);
  position: absolute;
  top: -10px;
  right: 20px;
  line-height: 1;
  transition: all var(--transition-smooth);
}

.phase-card:hover .phase-number {
  color: rgba(243, 175, 61, 0.2);
  transform: scale(1.1);
}

.phase-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(243, 175, 61, 0.05);
}

/* === Stats Counter === */
.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-plus {
  font-size: 2rem;
  color: var(--gold);
}

.stat-label {
  color: var(--gray-400);
  font-size: 1rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === Testimonials === */
.testimonial-card {
  background: var(--black-medium);
  border: 1px solid #1A1A1A;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 6rem;
  color: rgba(243, 175, 61, 0.15);
  font-family: serif;
  line-height: 1;
}

/* === Contact Form === */
.form-control-custom {
  background: var(--black-light);
  border: 1px solid #2A2A2A;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition-fast);
  width: 100%;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(243, 175, 61, 0.1);
  background: #1A1A1A;
}

.form-control-custom::placeholder {
  color: var(--gray-600);
}

/* === Footer === */
.footer {
  background: #030303;
  border-top: 2px solid rgba(243, 175, 61, 0.3);
  padding: 80px 0 30px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.footer-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-link {
  display: block;
  color: var(--gray-500);
  padding: 0.4rem 0;
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 3rem;
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(243, 175, 61, 0.3); }
  50% { box-shadow: 0 0 40px rgba(243, 175, 61, 0.6); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Animation Classes */
.animate-fade-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-right {
  animation: fadeInRight 0.8s ease forwards;
}

.animate-scale {
  animation: scaleIn 0.6s ease forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }
.animate-delay-4 { animation-delay: 0.8s; }
.animate-delay-5 { animation-delay: 1s; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Grid & Layout Utilities === */
.gap-custom { gap: 2rem; }
.gap-sm { gap: 1rem; }
.gap-lg { gap: 3rem; }

.object-fit-cover { object-fit: cover; }
.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }

/* === Responsive Design === */
@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
  }
}

@media (max-width: 991px) {
  .section {
    padding: 70px 0;
  }
  
  .section-lg {
    padding: 100px 0;
  }
  
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    border: 1px solid rgba(243, 175, 61, 0.2);
  }
  
  .hero-slider-controls {
    bottom: 20px;
    right: 20px;
  }
  
  .hero-slider-prev,
  .hero-slider-next {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .hero-stats {
    gap: 2rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 50px 0;
  }
  
  .section-lg {
    padding: 70px 0;
  }
  
  .hero-section {
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
  
  .hero-slide {
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
  
  .hero-content {
    text-align: left;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .navbar-brand img {
    height: 38px;
  }
  
  .brand-text {
    font-size: 1.2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .card-custom {
    padding: 1.8rem 1.5rem;
  }
  
  .phase-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 0.75rem 1.8rem;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* === Print Styles === */
@media print {
  .navbar,
  .hero-slider-controls,
  .mobile-menu,
  .btn,
  .page-loader {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .section {
    padding: 30px 0;
  }
}

/* About Page Specific Styles */
    .about-hero {
      position: relative;
      min-height: 70vh;
      background: linear-gradient(135deg, #000000 0%, #0a0a0a 40%, #111111 100%);
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .about-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 80%;
      height: 200%;
      background: radial-gradient(circle, rgba(243, 175, 61, 0.06) 0%, transparent 70%);
      z-index: 1;
    }

    .about-hero-pattern {
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(30deg, rgba(243, 175, 61, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(243, 175, 61, 0.03) 87.5%, rgba(243, 175, 61, 0.03) 100%),
        linear-gradient(150deg, rgba(243, 175, 61, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(243, 175, 61, 0.03) 87.5%, rgba(243, 175, 61, 0.03) 100%),
        linear-gradient(30deg, rgba(243, 175, 61, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(243, 175, 61, 0.03) 87.5%, rgba(243, 175, 61, 0.03) 100%),
        linear-gradient(150deg, rgba(243, 175, 61, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(243, 175, 61, 0.03) 87.5%, rgba(243, 175, 61, 0.03) 100%),
        linear-gradient(60deg, rgba(243, 175, 61, 0.02) 25%, transparent 25.5%, transparent 75%, rgba(243, 175, 61, 0.02) 75%, rgba(243, 175, 61, 0.02) 100%);
      background-size: 80px 140px;
      background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0;
      z-index: 0;
      opacity: 0.7;
    }

    .about-hero-content {
      position: relative;
      z-index: 2;
    }

    .mission-vision-card {
      background: linear-gradient(145deg, #0D0D0D 0%, #050505 100%);
      border: 1px solid #1A1A1A;
      border-radius: 24px;
      padding: 3rem 2.5rem;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      height: 100%;
    }

    .mission-vision-card:hover {
      border-color: rgba(243, 175, 61, 0.4);
      transform: translateY(-8px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(243, 175, 61, 0.05);
    }

    .mission-vision-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #F3AF3D, transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .mission-vision-card:hover::before {
      opacity: 1;
    }

    .mission-vision-card .icon-wrapper {
      width: 70px;
      height: 70px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(243, 175, 61, 0.15) 0%, rgba(243, 175, 61, 0.03) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
      font-size: 2.2rem;
      color: #F3AF3D;
      transition: all 0.4s ease;
    }

    .mission-vision-card:hover .icon-wrapper {
      background: #F3AF3D;
      color: #000;
      transform: rotateY(180deg);
    }

    /* Timeline */
    .timeline {
      position: relative;
      padding: 40px 0;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, transparent, #F3AF3D, #F3AF3D, transparent);
      transform: translateX(-50%);
    }

    .timeline-item {
      position: relative;
      margin-bottom: 60px;
      width: 50%;
    }

    .timeline-item:nth-child(odd) {
      left: 0;
      padding-right: 50px;
      text-align: right;
    }

    .timeline-item:nth-child(even) {
      left: 50%;
      padding-left: 50px;
    }

    .timeline-dot {
      position: absolute;
      width: 20px;
      height: 20px;
      background: #F3AF3D;
      border-radius: 50%;
      top: 20px;
      box-shadow: 0 0 20px rgba(243, 175, 61, 0.5);
      z-index: 2;
    }

    .timeline-item:nth-child(odd) .timeline-dot {
      right: -10px;
    }

    .timeline-item:nth-child(even) .timeline-dot {
      left: -10px;
    }

    .timeline-content {
      background: linear-gradient(145deg, #0D0D0D 0%, #080808 100%);
      border: 1px solid #1A1A1A;
      border-radius: 20px;
      padding: 2rem;
      position: relative;
      transition: all 0.3s ease;
    }

    .timeline-content:hover {
      border-color: rgba(243, 175, 61, 0.3);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .timeline-year {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      color: #F3AF3D;
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    /* Values Grid */
    .value-card {
      background: #0A0A0A;
      border: 1px solid #1A1A1A;
      border-radius: 20px;
      padding: 2.5rem 2rem;
      text-align: center;
      transition: all 0.4s ease;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .value-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 60%;
      height: 3px;
      background: #F3AF3D;
      border-radius: 2px;
      transition: transform 0.4s ease;
    }

    .value-card:hover {
      border-color: rgba(243, 175, 61, 0.5);
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }

    .value-card:hover::after {
      transform: translateX(-50%) scaleX(1);
    }

    .value-icon {
      font-size: 3rem;
      color: #F3AF3D;
      margin-bottom: 1.5rem;
      display: block;
      transition: transform 0.4s ease;
    }

    .value-card:hover .value-icon {
      transform: scale(1.2);
    }

    /* Stats Section */
    .about-stat {
      text-align: center;
      padding: 2rem;
    }

    .about-stat-number {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 3.5rem;
      font-weight: 800;
      color: #F3AF3D;
      line-height: 1;
      display: block;
    }

    .about-stat-label {
      color: #ADB5BD;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-top: 0.5rem;
    }

    /* Team Card */
    .team-card {
      background: linear-gradient(145deg, #0D0D0D 0%, #050505 100%);
      border: 1px solid #1A1A1A;
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.4s ease;
      height: 100%;
    }

    .team-card:hover {
      border-color: rgba(243, 175, 61, 0.4);
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    }

    .team-card-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
      background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    }

    .team-card-body {
      padding: 2rem;
      text-align: center;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .timeline::before {
        left: 20px;
      }

      .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
      }

      .timeline-item:nth-child(odd) .timeline-dot,
      .timeline-item:nth-child(even) .timeline-dot {
        left: 10px !important;
        right: auto !important;
      }

      .about-hero {
        min-height: 50vh;
      }
    }

    @media (max-width: 767px) {
      .about-stat-number {
        font-size: 2.5rem;
      }

      .mission-vision-card {
        padding: 2rem 1.5rem;
      }

      .timeline-content {
        padding: 1.5rem;
      }

      .timeline-year {
        font-size: 2rem;
      }
    }