﻿* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  font-family: 'Nunito', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
}

:root {
  --primary-color: #8b5cf6;
  --secondary-color: #a855f7;
  --accent-color: #f97316;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --bg-color: #fefefe;
  --bg-secondary: #f3f4f6;
  --bg-tertiary: #e5e7eb;
  --white: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: calc(1.8rem + 2.4vw); }
h2 { font-size: calc(1.525rem + 1.8vw); }
h3 { font-size: calc(1.375rem + 1.2vw); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.375rem; }
h6 { font-size: 1.25rem; }

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
  transform: translateY(-1px);
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
}

input, button, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.container {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-12 { flex: 0 0 auto; width: 100%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-4 { flex: 0 0 auto; width: 33.33333333%; }
.col-3 { flex: 0 0 auto; width: 25%; }

@media (min-width: 576px) {
  .container { max-width: 540px; }
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
}

@media (min-width: 768px) {
  .container { max-width: 720px; }
  .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-8 { flex: 0 0 auto; width: 66.66666667%; }
  .text-md-start { text-align: left !important; }
}

@media (min-width: 992px) {
  .container { max-width: 960px; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
  .text-lg-start { text-align: left !important; }
}

@media (min-width: 1200px) {
  .container { max-width: 1140px; }
  .col-xl-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
  .col-xl-7 { flex: 0 0 auto; width: 58.33333333%; }
}

.bg-bg-2 { background-color: var(--bg-secondary); }
.bg-bg-3 { background-color: var(--bg-color); }
.bg-action-1 { background-color: var(--primary-color); }
.text-action-1 { color: var(--primary-color); }

.btn {
  display: inline-block;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.925rem 1.875rem;
  font-size: 1.0625rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-action-1 {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-action-1:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--text-color);
  border-color: var(--text-color);
}

.btn-outline-dark:hover {
  background-color: var(--text-color);
  color: var(--white);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

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

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
  color: var(--secondary-color);
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
  background-color: rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
}

body {
  padding-top: 80px;
}

.hero-section {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.85), rgba(168, 85, 247, 0.75)), url('../phoz/bqf6x1.webp');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 60%, rgba(249, 115, 22, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.form-label {
  margin-bottom: 0.75rem;
  display: inline-block;
  font-weight: 500;
  color: var(--text-color);
}

.form-control, .form-select {
  display: block;
  width: 100%;
  padding: 0.925rem 1.375rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.3;
  background-color: var(--white);
  border: 2px solid var(--bg-tertiary);
  border-radius: 0.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
  outline: 0;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.2);
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  margin-right: 0.75rem;
  accent-color: var(--primary-color);
}

.display-3 { font-size: calc(1.875rem + 3.5vw); font-weight: 800; line-height: 1.1; }
.display-4 { font-size: calc(1.675rem + 2.8vw); font-weight: 700; line-height: 1.1; }
.display-5 { font-size: calc(1.525rem + 2.1vw); font-weight: 700; line-height: 1.2; }

.fs-1 { font-size: 1.625rem !important; }
.fs-2 { font-size: 1.4375rem !important; }
.fs-3 { font-size: 1.3125rem !important; }
.fs-4 { font-size: 1.1875rem !important; }

.fw-bold { font-weight: 700 !important; }
.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-muted { color: var(--text-light) !important; }

.d-flex { display: flex !important; }
.d-inline-block { display: inline-block !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }

.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 2rem !important; }
.mt-7 { margin-top: 2.5rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 2rem !important; }
.mb-7 { margin-bottom: 2.5rem !important; }
.mb-9 { margin-bottom: 3rem !important; }
.mb-16 { margin-bottom: 4rem !important; }

.me-3 { margin-right: 1rem !important; }
.ms-auto { margin-left: auto !important; }

.p-4 { padding: 1.5rem !important; }
.p-7 { padding: 2.5rem !important; }
.p-9 { padding: 3rem !important; }
.py-8 { padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; }
.py-10 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
.py-11 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.ps-7 { padding-left: 2.5rem !important; }

.rounded { border-radius: 0.5rem !important; }
.rounded-2 { border-radius: 0.75rem !important; }
.rounded-circle { border-radius: 50% !important; }

.border-start { border-left: 4px solid var(--primary-color) !important; }
.border-5 { border-width: 4px !important; }

.opacity-90 { opacity: 0.9 !important; }

.gradient-accent {
  background: linear-gradient(135deg, var(--accent-color), #fb923c);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-color);
  color: var(--white);
  padding: 1rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner button {
  background: var(--primary-color);
  border: none;
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  margin-left: 1rem;
  cursor: pointer;
}

.svg-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .py-lg-15 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
  .py-lg-21 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
  .mb-lg-0 { margin-bottom: 0 !important; }
  .ps-lg-9 { padding-left: 3rem !important; }
}