@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@300;400;500;600;700&family=Work+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #d4a574;
  --accent-color: #ff6b35;
  --dark-gray: #2d2d2d;
  --medium-gray: #4a4a4a;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --concrete: #e8e8e8;
  --steel: #7d8491;
  --copper: #b87333;
  --charcoal: #36454f;
  --safety-yellow: #ffd700;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  --gradient-gold: linear-gradient(135deg, #d4a574 0%, #b87333 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --border-radius: 4px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--primary-color);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  height: var(--header-height);
  border-bottom: 3px solid var(--secondary-color);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

header.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--accent-color);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.logo span {
  color: var(--secondary-color);
  position: relative;
}

.logo span::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.logo:hover span::after {
  transform: scaleX(1);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.main-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-base);
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width var(--transition-base);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--secondary-color);
}

.main-nav a:hover::before,
.main-nav a.active::before {
  width: 100%;
}

.mobile-toggle {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 2;
  padding: 5px;
  transition: all var(--transition-base);
}

.mobile-toggle:hover {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--primary-color);
  padding: 30px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xl);
  border-top: 3px solid var(--secondary-color);
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 20px;
  display: block;
  border-left: 3px solid transparent;
  transition: all var(--transition-base);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--secondary-color);
  border-left-color: var(--secondary-color);
  background: rgba(212, 165, 116, 0.1);
  padding-left: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: var(--border-radius);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.btn-dark {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.btn-dark:hover {
  background: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 42px;
  font-size: 1.1rem;
}

.btn-small {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-icon i {
  font-size: 1.2em;
  transition: transform var(--transition-base);
}

.btn-icon:hover i {
  transform: translateX(5px);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  width: 60px;
  height: 2px;
  background: var(--secondary-color);
}

.section-title {
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}

.section-description {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.8;
}

.card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-image {
  position: relative;
  overflow: hidden;
  padding-top: 66.67%;
}

.card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 26, 0.8) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover .card-overlay {
  opacity: 1;
}

.card-body {
  padding: 30px;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  transition: color var(--transition-base);
}

.card:hover .card-title {
  color: var(--secondary-color);
}

.card-text {
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-footer {
  padding: 20px 30px;
  background: var(--light-gray);
  border-top: 1px solid var(--concrete);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grid {
  display: grid;
  gap: 30px;
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Rajdhani', sans-serif;
}

.form-label.required::after {
  content: '*';
  color: var(--accent-color);
  margin-left: 5px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: 'Work Sans', sans-serif;
  border: 2px solid var(--concrete);
  border-radius: var(--border-radius);
  background: var(--white);
  color: var(--primary-color);
  transition: all var(--transition-base);
  outline: none;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
  background: var(--light-gray);
}

.form-control::placeholder {
  color: var(--steel);
  opacity: 0.7;
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d2d2d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-control.error {
  border-color: var(--danger);
}

.form-control.success {
  border-color: var(--success);
}

.form-error {
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.form-control.error ~ .form-error {
  display: block;
}

.form-checkbox,
.form-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 12px;
}

.form-checkbox input,
.form-radio input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--secondary-color);
}

.form-checkbox label,
.form-radio label {
  cursor: pointer;
  font-weight: 400;
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.accordion {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-item {
  border-bottom: 1px solid var(--concrete);
}

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

.accordion-header {
  background: var(--white);
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-base);
  position: relative;
}

.accordion-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--secondary-color);
  transform: scaleY(0);
  transition: transform var(--transition-base);
}

.accordion-header:hover {
  background: var(--light-gray);
}

.accordion-item.active .accordion-header::before {
  transform: scaleY(1);
}

.accordion-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--secondary-color);
  transition: transform var(--transition-base);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.accordion-body {
  padding: 25px;
  background: var(--light-gray);
  color: var(--medium-gray);
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
  color: var(--white);
  padding: 25px;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  border-top: 3px solid var(--secondary-color);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--accent-color);
}

.cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-family: 'Rajdhani', sans-serif;
}

.cookie-btn-accept {
  background: var(--secondary-color);
  color: var(--white);
  border: none;
}

.cookie-btn-accept:hover {
  background: var(--copper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--steel);
}

.cookie-btn-decline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.loading-spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 4px solid var(--concrete);
  border-top-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--concrete);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 10px;
  transition: width var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  font-family: 'Rajdhani', sans-serif;
}

.badge-primary {
  background: var(--secondary-color);
  color: var(--white);
}

.badge-accent {
  background: var(--accent-color);
  color: var(--white);
}

.badge-dark {
  background: var(--primary-color);
  color: var(--white);
}

.badge-outline {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.8);
  transition: transform var(--transition-base);
  border-top: 4px solid var(--secondary-color);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-header {
  padding: 25px 30px;
  border-bottom: 2px solid var(--concrete);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light-gray);
}

.modal-title {
  margin: 0;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--medium-gray);
  cursor: pointer;
  padding: 5px;
  transition: all var(--transition-base);
  line-height: 1;
}

.modal-close:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}

.modal-body {
  padding: 30px;
}

.modal-footer {
  padding: 20px 30px;
  border-top: 2px solid var(--concrete);
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  background: var(--light-gray);
}

.tabs {
  border-bottom: 2px solid var(--concrete);
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.tab {
  padding: 15px 30px;
  background: transparent;
  border: none;
  color: var(--medium-gray);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Rajdhani', sans-serif;
}

.tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.tab:hover {
  color: var(--secondary-color);
  background: rgba(212, 165, 116, 0.05);
}

.tab.active {
  color: var(--secondary-color);
}

.tab.active::after {
  transform: scaleX(1);
}

.tab-content {
  padding: 30px 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-base);
}

.tab-content.active {
  opacity: 1;
  max-height: none;
}

.alert {
  padding: 18px 25px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 4px solid;
  font-weight: 500;
}

.alert i {
  font-size: 1.5rem;
}

.alert-success {
  background: rgba(40, 167, 69, 0.1);
  color: var(--success);
  border-left-color: var(--success);
}

.alert-warning {
  background: rgba(255, 193, 7, 0.1);
  color: #c49000;
  border-left-color: var(--warning);
}

.alert-danger {
  background: rgba(220, 53, 69, 0.1);
  color: var(--danger);
  border-left-color: var(--danger);
}

.alert-info {
  background: rgba(212, 165, 116, 0.1);
  color: var(--copper);
  border-left-color: var(--secondary-color);
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip-text {
  visibility: hidden;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 8px 12px;
  border-radius: var(--border-radius);
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity var(--transition-base);
  box-shadow: var(--shadow-md);
}

.tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--primary-color) transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.stats-counter {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border-top: 4px solid var(--secondary-color);
}

.stats-counter:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent-color);
}

.stats-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--secondary-color);
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  margin-bottom: 10px;
}

.stats-label {
  font-size: 1rem;
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
}

.stats-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--secondary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: calc(50% - 40px);
  background: var(--white);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--transition-base);
}

.timeline-content:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border: 4px solid var(--white);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.testimonial {
  background: var(--white);
  padding: 35px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--transition-base);
}

.testimonial::before {
  content: '"';
  font-size: 6rem;
  color: var(--secondary-color);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--medium-gray);
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--secondary-color);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  margin: 0 0 5px 0;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.testimonial-info p {
  margin: 0;
  color: var(--steel);
  font-size: 0.9rem;
}

.testimonial-rating {
  color: var(--safety-yellow);
  font-size: 1.2rem;
  margin-top: 5px;
}

.feature-box {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  transition: all var(--transition-base);
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  opacity: 0;
  transition: all var(--transition-base);
}

.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(360deg);
}

.feature-box:hover .feature-icon::after {
  opacity: 1;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-description {
  color: var(--medium-gray);
  line-height: 1.7;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  border: 2px solid var(--concrete);
}

.pricing-card.featured {
  border-color: var(--secondary-color);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--secondary-color);
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  margin-bottom: 10px;
}

.pricing-price span {
  font-size: 1.2rem;
  color: var(--steel);
  font-weight: 400;
}

.pricing-duration {
  color: var(--steel);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--concrete);
  color: var(--medium-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--success);
  font-size: 1.2rem;
}

.pricing-features li.unavailable {
  opacity: 0.4;
  text-decoration: line-through;
}

.pricing-features li.unavailable i {
  color: var(--danger);
}

.team-member {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.team-image {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}

.team-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-member:hover .team-image img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 26, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.team-member:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 15px;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all var(--transition-base);
}

.team-social a:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.team-info {
  padding: 25px;
}

.team-name {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.team-role {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-family: 'Rajdhani', sans-serif;
}

.cta-section {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556 15.858 12.14 28 0zm-10.626 0l-9.9 9.9 1.414 1.414L22.374 0h-1.414zM.142 0L12.142 12l-1.414 1.414L0 2.688V0h.142zM0 5.373l7.071 7.07-1.414 1.415L0 8.2V5.374zm0 5.656l5.657 5.657-1.414 1.415L0 13.86v-2.83zm0 5.656l4.243 4.242-1.414 1.414L0 19.514v-2.83zm0 5.657l2.828 2.828-1.414 1.414L0 25.172v-2.83zM0 28l1.414 1.414L0 30.828V28zm51.799 15.03L60 34.827V32H0v2.827l51.8 8.202z' fill='%23d4a574' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--medium-gray);
  transition: color var(--transition-base);
}

.breadcrumb a:hover {
  color: var(--secondary-color);
}

.breadcrumb-separator {
  color: var(--steel);
}

.breadcrumb-active {
  color: var(--secondary-color);
  font-weight: 600;
}

.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  flex-wrap: wrap;
}

.page-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--medium-gray);
  border: 2px solid var(--concrete);
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
}

.page-link:hover {
  background: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.page-link.active {
  background: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.page-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-link.disabled:hover {
  transform: none;
  background: var(--white);
  color: var(--medium-gray);
  border-color: var(--concrete);
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.social-link:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

footer {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-section ul li a i {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.footer-bottom {
  padding: 30px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-bottom a {
  color: var(--secondary-color);
  font-weight: 600;
}

.footer-bottom a:hover {
  color: var(--accent-color);
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 6px;
  border: 2px solid var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--copper);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }

  h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
  }

  .section {
    padding: 80px 0;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 65px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .header-content {
    padding: 0 20px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .grid,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 50px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-dot