/* Reset & Base Variables */
:root {
  --bg-dark: #0B1120;
  --bg-surface: #141C2F;
  --text-main: #F3F4F6;
  --text-muted: #9CA3AF;
  --primary-gold: #d4af37;
  --primary-gold-hover: #f0c945;
  --accent-blue: #3B82F6;
  --glass-bg: rgba(20, 28, 47, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

/* Background Glowing Orbs */
.glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(11,17,32,0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.glow-1 {
  top: -200px;
  left: -200px;
}
.glow-2 {
  top: 50%;
  right: -300px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(11,17,32,0) 70%);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: rgba(11, 17, 32, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: padding 0.3s ease, background 0.3s ease;
}

header.scrolled {
  padding: 0.8rem 5%;
  background: rgba(11, 17, 32, 0.95);
}

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

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

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

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

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-gold);
  transition: width 0.3s ease;
}

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

nav a:hover::after {
  width: 100%;
}

.header-action {
  display: flex;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
}

.btn-outline:hover {
  background-color: rgba(212, 175, 55, 0.1);
  box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.2);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Utility Components */
.text-gradient {
  background: linear-gradient(90deg, #d4af37, #f0c945);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Sections */
main {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 8rem;
}

section {
  padding: 5rem 5%;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  min-height: 85vh;
  margin-top: -8rem;
  padding-top: 10rem;
}

.hero-content {
  flex: 1;
  max-width: 650px;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.glass-card.main-stats {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.stat h3 {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 0.2rem;
}

.stat p {
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.05));
  z-index: -1;
  transition: height 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  height: 100%;
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* About */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #D1D5DB;
}

.check-list {
  list-style: none;
  margin-top: 2rem;
}

.check-list li {
  margin-bottom: 0.8rem;
  color: var(--primary-gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.info-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-form-container h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #D1D5DB;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-body);
  transition: all 0.3s ease;
  outline: none;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--primary-gold);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Footer */
footer {
  background: #060B14;
  padding: 4rem 5% 2rem 5%;
  margin-top: 5rem;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  max-width: 250px;
}

.footer-contact h4,
.footer-legal h4 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

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

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  margin-bottom: 0.5rem;
}

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

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

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Responsive */
@media (max-width: 992px) {
  h1 { font-size: 3rem; }
  .hero { flex-direction: column; text-align: center; padding-top: 8rem; }
  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  nav { display: none; /* Basic mobile nav hiding for simple version */ }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  section { padding: 3rem 5%; }
  .glass-panel { padding: 2rem; }
}
