/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #0B0B0F;
  --bg-secondary: #08080A; /* slightly deeper for footer */
  --bg-surface: #111116;
  --gold-primary: #D4AF37;
  --gold-soft: #F5E6A8;
  --text-primary: #FFFFFF;
  --text-secondary: #A1A1AA;
  --border-glow: rgba(212, 175, 55, 0.2);
  --border-glow-hover: rgba(212, 175, 55, 0.5);
  --glass-bg: rgba(17, 17, 22, 0.6);
  
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.07) 0%, transparent 50%);
  background-repeat: no-repeat;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: var(--spacing-sm);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 1rem;
  font-weight: 500;
}

p {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
  font-weight: 300;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-cinzel {
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

/* Animated Network Background */
.network-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: bg-scroll 30s linear infinite;
  z-index: -2;
  opacity: 0.5;
}

@keyframes bg-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(50px); }
}

.hero-gradient {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-xl) 0;
}

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.text-center { text-align: center; }

/* Components */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow-hover);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.1);
}

.card .icon {
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  width: 28px;
  height: 28px;
}

.icon-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.card:hover .icon-premium {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.125rem 2.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  width: 100%;
}

@media (min-width: 768px) {
  .btn { width: auto; }
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-soft));
  color: var(--bg-primary);
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
  color: var(--bg-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Specifics */
header {
  padding: 1.25rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(11, 11, 15, 0.5);
  backdrop-filter: blur(20px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 28px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.logo:hover img {
  opacity: 1;
}

nav .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

/* Form Styles */
.form-container {
  max-width: 650px;
  background: rgba(8, 8, 10, 0.8);
  backdrop-filter: blur(16px);
  padding: 3rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  margin-top: 4rem;
}

.form-group {
  margin-bottom: 2rem;
  text-align: left;
}

label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

input, textarea, select {
  width: 100%;
  background-color: rgba(5, 5, 8, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  padding: 1rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

input:focus, textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2);
  background-color: rgba(0, 0, 0, 0.8);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.helper-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* Scroll Animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  max-width: 650px;
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.hero .btn-container {
  position: relative;
  display: inline-block;
}

.hero .btn-container::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  transform: translate(-50%, -50%);
  background: var(--gold-primary);
  filter: blur(50px);
  opacity: 0.1;
  z-index: -1;
  border-radius: 50%;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
  display: inline-block;
  font-weight: 600;
  opacity: 0.8;
}

ul.minimal-list {
  list-style: none;
}

ul.minimal-list li {
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
}

ul.minimal-list li::before {
  content: "✦";
  margin-right: 1.25rem;
  color: rgba(212, 175, 55, 0.5);
  font-size: 0.7em;
}

ul.minimal-list li:last-child {
  border-bottom: none;
}

footer {
  padding: 5rem 0 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  background-color: #050508;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}

footer .container {
  position: relative;
  z-index: 2;
}

.footer-brand {
  margin-bottom: var(--spacing-md);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-brand {
    text-align: left;
  }
}

.footer-brand h2 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
  .footer-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    text-align: left;
    align-items: start;
    margin-bottom: var(--spacing-lg);
  }
  
  .footer-nav, .footer-contact {
    align-items: flex-start;
    margin-bottom: 0;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.footer-links a i {
  color: var(--gold-soft);
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.footer-links a:hover i {
  color: var(--gold-primary);
  opacity: 1;
  transform: scale(1.1);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
  margin: var(--spacing-lg) 0 var(--spacing-md);
  width: 100%;
}

.legal-text {
  color: var(--gold-soft);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-bottom: 1rem;
  opacity: 0.8;
  text-align: center;
}

.copyright-text {
  color: #555566;
  font-size: 0.8rem;
  text-align: center;
}
