:root {
  --dark-bg: #030712;
  --darker-bg: #02040a;
  --glass-bg: rgba(17, 24, 39, 0.4);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-border-hover: rgba(212, 175, 55, 0.3);
  
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --text-main: #F9FAFB;
  --text-muted: #9CA3AF;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  cursor: none; /* Hide default cursor for custom one */
}

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

::selection {
  background: var(--gold-primary);
  color: var(--dark-bg);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--darker-bg);
}
::-webkit-scrollbar-thumb {
  background: #1f2937;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

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

.section-padding {
  padding: 8rem 0;
}

/* Typography Elements */
.text-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulse 2s infinite;
}

/* Custom Cursor */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: width 0.2s, height 0.2s, background 0.2s;
}

/* Background Orbs */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(212, 175, 55, 0.15);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.1);
  bottom: 10%;
  left: -50px;
  animation-delay: -5s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.08);
  top: 40%;
  right: 20%;
  animation-delay: -10s;
}

/* Glassmorphism Classes */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Header */
.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.glass-header.scrolled {
  background: rgba(3, 7, 18, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.8rem 0;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
  color: var(--gold-primary);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

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

.nav-links a:not(.btn-glow) {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-links a:not(.btn-glow)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-smooth);
}

.nav-links a:not(.btn-glow):hover::after {
  width: 100%;
}

.btn-glow {
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  border-radius: 100px;
  font-weight: 600;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-glow:hover {
  background: var(--gold-primary);
  color: var(--dark-bg);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1.2rem 2.5rem;
  background: var(--text-main);
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 100px;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: var(--gold-primary);
  transform: scale(1.05);
}

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

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 5px;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  padding: 10px;
  aspect-ratio: 4/5;
  position: relative;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.floating-badge {
  position: absolute;
  background: rgba(3, 7, 18, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-family: var(--font-heading);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: float 6s infinite ease-in-out;
}

.floating-badge i {
  color: var(--gold-primary);
}

.badge-1 {
  top: 10%;
  left: -15%;
}

.badge-2 {
  bottom: 15%;
  right: -10%;
  animation-delay: -3s;
}

/* Bento Services Section */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 1.5rem;
}

.bento-item {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.large-card {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 500px;
}

.wide-card {
  grid-column: span 3;
}

.bento-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
  transition: transform 0.5s ease;
}

.bento-item:hover .bento-bg {
  transform: scale(1.05);
  opacity: 0.3;
}

.bento-content {
  position: relative;
  z-index: 1;
}

.bento-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.bento-item h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.large-card h3 {
  font-size: 2.5rem;
}

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

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

.wide-card .bento-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.wide-card .bento-icon {
  margin-bottom: 0;
  font-size: 4rem;
}

/* Parallax About */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.image-stack {
  position: relative;
  height: 600px;
}

.image-stack img {
  position: absolute;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.img-back {
  width: 80%;
  height: 80%;
  top: 0;
  right: 0;
  opacity: 0.6;
}

.img-front {
  width: 70%;
  height: 70%;
  bottom: 0;
  left: 0;
  border: 1px solid var(--glass-border);
}

.feature-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

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

/* Contact */
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  padding: 4rem;
  gap: 4rem;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-methods {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.method-icon {
  width: 60px;
  height: 60px;
  background: var(--darker-bg);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--gold-primary);
  border: 1px solid var(--glass-border);
}

.method-details span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.method-details strong {
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

/* Form Styles */
.custom-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.input-group {
  position: relative;
}

.input-group input,
.input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 0;
  font-size: 1.1rem;
  color: var(--text-main);
  font-family: var(--font-body);
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
}

.input-group label {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
  top: -20px;
  font-size: 0.85rem;
  color: var(--gold-primary);
}

.line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--glass-border);
}

.line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.input-group input:focus ~ .line::after,
.input-group textarea:focus ~ .line::after {
  width: 100%;
}

.custom-form button {
  border: none;
  cursor: none;
  font-family: var(--font-heading);
  justify-content: center;
}

/* Footer */
.modern-footer {
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem;
  background: var(--darker-bg);
}

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

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1.5rem;
  max-width: 300px;
}

.footer-links-group h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.footer-links-group a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.footer-links-group a:hover {
  color: var(--gold-primary);
  transform: translateX(5px);
}

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

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Utility classes for GSAP */
.fade-up, .fade-in {
  opacity: 0;
}

/* Responsive */
.menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .large-card { grid-column: span 2; grid-row: span 1; min-height: auto; }
  .wide-card { grid-column: span 2; }
  .about-wrapper { grid-template-columns: 1fr; }
  .contact-box { grid-template-columns: 1fr; padding: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; width: 30px; height: 20px; position: relative; z-index: 1001; }
  .hamburger { width: 100%; height: 2px; background: white; position: absolute; top: 50%; transform: translateY(-50%); }
  .hamburger::before, .hamburger::after { content: ''; position: absolute; width: 100%; height: 2px; background: white; transition: 0.3s; }
  .hamburger::before { top: -8px; }
  .hamburger::after { bottom: -8px; }
  
  .hero-container { grid-template-columns: 1fr; text-align: center; margin-top: 5rem; }
  .hero-actions { justify-content: center; flex-direction: column; }
  .hero-stats { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; padding-top: 2rem; margin-top: 1rem; }
  .hero h1 { font-size: 2.5rem; }
  .bento-grid { grid-template-columns: 1fr; }
  .large-card, .wide-card { grid-column: span 1; }
  .wide-card .bento-content { flex-direction: column; text-align: center; }
  .floating-badge { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  html { cursor: auto; }
  .cursor-dot, .cursor-outline { display: none; }
}
