/* ===== DOYOX Professional Theme ===== */
:root {
  --navy: #1e2a5e;
  --navy-light: #2c3e7b;
  --pink: #e84393;
  --pink-light: #fd79a8;
  --blue-grad: linear-gradient(135deg, #e8f0fe 0%, #d4e4fc 100%);
  --white: #ffffff;
  --gray-light: #f8fafc;
  --gray-border: #e2e8f0;
  --text-dark: #1e293b;
  --shadow: 0 10px 30px rgba(0,0,0,0.05);
  --shadow-hover: 0 20px 40px rgba(30,42,94,0.1);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
.highlight { color: var(--pink); }

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--gray-border);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-img { height: 42px; }
.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.nav-menu { display: flex; list-style: none; gap: 2.5rem; }
.nav-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--pink); }
.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.lang-switch button {
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: var(--navy);
  padding: 0.2rem 0.5rem;
}
.lang-switch .active { color: var(--pink); border-bottom: 2px solid var(--pink); }
.hamburger { display: none; flex-direction: column; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: var(--navy); margin: 3px 0; border-radius: 4px; }

/* Hero Home with background image */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding-top: 90px;
}
.hero-content { position: relative; z-index: 5; text-align: center; max-width: 900px; margin: 0 auto; }
.badge {
  display: inline-block;
  background: rgba(232,67,147,0.1);
  color: var(--pink);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(232,67,147,0.2);
}
.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.hero-cta { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 2.2rem;
  border-radius: 60px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 8px 20px rgba(30,42,94,0.2);
}
.btn-primary:hover {
  background: var(--pink);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: white;
}

/* Stats Circles */
.stats-circle-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.stat-circle { text-align: center; }
.circle-chart {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
}
.circle-chart svg { width: 100%; height: 100%; }
.circle-bg {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 3.8;
}
.circle-fill {
  fill: none;
  stroke: var(--pink);
  stroke-width: 3.8;
  stroke-linecap: round;
  animation: circle-fill-animation 2s ease-out forwards;
}
@keyframes circle-fill-animation { from { stroke-dasharray: 0 100; } }
.circle-percent {
  fill: var(--navy);
  font-size: 0.5rem;
  font-weight: 700;
  text-anchor: middle;
}

/* Wave divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg { fill: var(--white); }

/* Stats Section */
.stats-section { padding: 5rem 0; background: var(--gray-light); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
}
.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-8px); }
.stat-card i { font-size: 2.5rem; color: var(--pink); margin-bottom: 1rem; }
.stat-card h3 { font-size: 2.8rem; font-weight: 800; color: var(--navy); margin-bottom: 0.3rem; }

/* Section headers */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink);
}

/* Ventures Preview */
.ventures-preview-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.venture-preview-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s;
  border: 1px solid var(--gray-border);
}
.venture-preview-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--pink);
}
.venture-icon {
  width: 70px;
  height: 70px;
  background: var(--blue-grad);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--navy);
  font-size: 2rem;
}

/* Quote section */
.quote-section { background: var(--blue-grad); }
.quote-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: 40px;
  box-shadow: var(--shadow);
}
.quote-card i { font-size: 3rem; color: var(--pink); opacity: 0.5; margin-bottom: 1rem; }
.quote-author { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.author-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--pink); }

/* Footer */
.footer {
  background: var(--navy);
  color: white;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.footer-col h4 { color: white; margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; opacity: 0.9; }
.footer-col a { color: white; text-decoration: none; }
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a {
  width: 40px; height: 40px; background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; transition: 0.3s;
}
.social-links a:hover { background: var(--pink); }
.newsletter-form { display: flex; background: white; border-radius: 40px; overflow: hidden; }
.newsletter-form input {
  flex: 1; padding: 0.8rem 1.2rem; border: none; outline: none;
}
.newsletter-form button {
  background: var(--pink); border: none; padding: 0 1.5rem; color: white; cursor: pointer;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* Page Header for internal pages */
.page-header {
  padding: 10rem 0 4rem;
  background: var(--blue-grad);
  text-align: center;
}
.page-header h1 { font-size: 3.5rem; margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ventures-preview-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; left: -100%; top: 80px; flex-direction: column;
    background: white; width: 100%; padding: 2rem; transition: 0.3s;
    box-shadow: var(--shadow);
  }
  .nav-menu.active { left: 0; }
  .stats-circle-container { gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
