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

:root {
  --bg-color: #050505;
  --bg-secondary: #0a0a0c;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --accent-primary: #8b5cf6;
  --accent-secondary: #06b6d4;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: 'Outfit', sans-serif;
}

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

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Glassmorphism */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--text-main);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.05) 50%, rgba(0,0,0,0) 70%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease forwards;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

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

.btn-secondary:hover {
  background: var(--glass-bg);
  border-color: rgba(255,255,255,0.2);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

/* Services section */
.services {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}

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

.service-card {
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(139, 92, 246, 0.3);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pricing section */
.pricing {
  padding: 6rem 0;
  position: relative;
}

.pricing-table {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.price-title {
  font-size: 1.1rem;
  font-weight: 500;
}

.price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-secondary);
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.contact-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
}

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

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.info-val {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Footer */
footer {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .business-card-wrapper {
    width: 90vw;
    height: calc(90vw / 1.75);
    max-width: 400px;
    max-height: 230px;
  }
  .b-card-face {
    padding: 1rem;
  }
  .b-card-logo {
    font-size: 1.1rem;
  }
  .b-card-name {
    font-size: 1rem;
  }
  .b-card-contact {
    font-size: 0.75rem;
  }
  .info-val {
    word-break: break-all;
  }
}

/* BUSINESS CARD SPECIFIC */
.business-card-wrapper {
  perspective: 1000px;
  margin: 4rem auto;
  width: 400px;
  height: 230px;
}

.b-card {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  cursor: pointer;
}

.b-card:hover {
  transform: rotateY(180deg);
}

.b-card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  overflow: hidden;
}

.b-card-front {
  background: linear-gradient(135deg, #18181b, #09090b);
  border: 1px solid #27272a;
  z-index: 2;
}

.b-card-front::after {
  content: '';
  position: absolute;
  top: 0; right: 0; width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%);
  z-index: 0;
  transform: translate(30%, -30%);
}

.b-card-back {
  background: linear-gradient(135deg, #09090b, #18181b);
  border: 1px solid #27272a;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.b-card-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.b-card-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.2rem;
}

.b-card-title {
  font-size: 0.8rem;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.b-card-contact {
  font-size: 0.85rem;
  color: #a1a1aa;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* FLYER SPECIFIC */
.flyer-wrapper {
  max-width: 800px;
  margin: 2rem auto;
  background: var(--bg-color);
  aspect-ratio: 1 / 1.414; /* A4 Ratio */
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
}

.flyer-header {
  text-align: center;
  padding: 4rem 2rem 2rem;
  background: radial-gradient(ellipse at top, rgba(139,92,246,0.2) 0%, transparent 70%);
}

.flyer-logo {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.flyer-tagline {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.flyer-body {
  padding: 2rem 4rem;
}

.flyer-services {
  margin-bottom: 3rem;
}

.flyer-services ul {
  list-style: none;
  font-size: 1.2rem;
}

.flyer-services li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.flyer-services li::before {
  content: '⚡';
  color: var(--accent-secondary);
}

.flyer-pricing {
  background: var(--glass-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.flyer-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(139,92,246,0.1), transparent);
  text-align: center;
  border-top: 1px solid var(--glass-border);
}
