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

:root {
  --primary-color: #7c3aed;
  --secondary-color: #f3f4f6;
  --accent-color: #f97316;
  --text-color: #1f2937;
  --bg-color: #fefefe;
  --bg-secondary: #f8fafc;
  --dark-bg: #312e81;
  --light-purple: #ede9fe;
}

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

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

h2 {
  font-size: calc(1.425rem + 1.1vw);
}

h3 {
  font-size: calc(1.375rem + .8vw);
}

h5 {
  font-size: 1.375rem;
}

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

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

a:hover {
  opacity: .8;
  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;
}

.display-3 {
  font-size: calc(1.675rem + 4.2vw);
  font-weight: 800;
  line-height: 1.15;
}

.display-5 {
  font-size: calc(1.525rem + 2.4vw);
  font-weight: 700;
  line-height: 1.15;
}

.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.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%;
}

.form-label {
  margin-bottom: .75rem;
  display: inline-block;
  color: var(--text-color);
}

.form-control {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  background-color: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all .3s ease;
}

.form-control:focus {
  outline: 0;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.15);
}

.form-select {
  display: block;
  width: 100%;
  padding: 1rem 3rem 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  background-color: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  appearance: none;
  transition: all .3s ease;
}

.form-select:focus {
  outline: 0;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.15);
}

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

.btn-action-1 {
  background-color: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.btn-action-1:hover {
  background-color: #ea580c;
  border-color: #ea580c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-outline-light {
  color: white;
  border-color: white;
  background-color: transparent;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.nav-link {
  display: block;
  padding: .75rem 1.25rem;
  transition: all .3s ease;
  color: var(--text-color);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary-color);
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

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

.navbar-brand {
  padding-top: .5rem;
  padding-bottom: .5rem;
  margin-right: 1.25rem;
  font-size: 1.5rem;
  white-space: nowrap;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: .375rem .875rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
}

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: url('../visuals/ujmts3.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.9) 0%, rgba(49, 46, 129, 0.8) 100%);
}

.gradient-bg {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
}

.bg-bg-2 {
  background-color: var(--bg-secondary);
}

.bg-bg-3 {
  background-color: var(--bg-color);
}

.text-action-1 {
  color: var(--accent-color);
}

.feature-card {
  border-radius: 20px;
  transition: all .3s ease;
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}

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

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.footer-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: .5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color .3s ease;
}

.footer-links a:hover {
  color: white;
}

.newsletter-form .form-control {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.w-100 {
  width: 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;
}

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

.text-white {
  color: white !important;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.25rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-7 { margin-bottom: 1.75rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-9 { margin-bottom: 2.25rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.mb-16 { margin-bottom: 4rem !important; }

.mt-7 { margin-top: 1.75rem !important; }

.me-2 { margin-right: .5rem !important; }
.me-4 { margin-right: 1rem !important; }

.ms-auto { margin-left: auto !important; }

.my-5 { margin-top: 1.25rem !important; margin-bottom: 1.25rem !important; }
.my-8 { margin-top: 2rem !important; margin-bottom: 2rem !important; }

.py-10 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
.py-11 { padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; }

.p-9 { padding: 2.25rem !important; }

.d-flex { display: flex !important; }

.fs-1 { font-size: 1.5rem !important; }
.fs-2 { font-size: 1.25rem !important; }
.fs-3 { font-size: 1.125rem !important; }

.fw-bold { font-weight: 700 !important; }

.rounded-2 { border-radius: 12px !important; }

.opacity-30 { opacity: 0.3 !important; }

@media (min-width: 576px) {
  .container { max-width: 540px; }
  .col-sm-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-sm-10 { flex: 0 0 auto; width: 83.33333333%; }
}

@media (min-width: 768px) {
  .container { max-width: 720px; }
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-md-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-md-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-md-9 { flex: 0 0 auto; width: 75%; }
  
  .py-md-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
  .py-md-21 { padding-top: 5.25rem !important; padding-bottom: 5.25rem !important; }
  
  .text-md-start { text-align: left !important; }
  .mb-md-0 { margin-bottom: 0 !important; }
  .mb-md-16 { margin-bottom: 4rem !important; }
  
  .p-md-17 { padding: 4.25rem !important; }
}

@media (min-width: 992px) {
  .container { max-width: 960px; }
  .col-lg-2 { flex: 0 0 auto; width: 16.66666667%; }
  .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-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
  
  .navbar-expand-lg { flex-wrap: nowrap; justify-content: flex-start; }
  .navbar-expand-lg .navbar-nav { flex-direction: row; }
  .navbar-expand-lg .navbar-nav .nav-link { padding-right: .75rem; padding-left: .75rem; }
  .navbar-expand-lg .navbar-collapse { display: flex !important; flex-basis: auto; }
  .navbar-expand-lg .navbar-toggler { display: none; }
  
  .py-lg-21 { padding-top: 5.25rem !important; padding-bottom: 5.25rem !important; }
  .mb-lg-0 { margin-bottom: 0 !important; }
  .mb-lg-21 { margin-bottom: 5.25rem !important; }
  
  .p-lg-9 { padding: 2.25rem !important; }
}

@media (min-width: 1200px) {
  .container { max-width: 1140px; }
  .col-xl-3 { flex: 0 0 auto; width: 25%; }
  .col-xl-4 { flex: 0 0 auto; width: 33.33333333%; }
  .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%; }
  .col-xl-8 { flex: 0 0 auto; width: 66.66666667%; }
  
  h2 { font-size: 2.125rem; }
  h3 { font-size: 1.875rem; }
  .display-3 { font-size: 4.75rem; }
  .display-5 { font-size: 3.25rem; }
  
  .p-xl-13 { padding: 3.25rem !important; }
}

@media (min-width: 1400px) {
  .container { max-width: 1320px; }
  .col-xxl-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-xxl-5 { flex: 0 0 auto; width: 41.66666667%; }
  
  .p-xxl-21 { padding: 5.25rem !important; }
}