/* Header Navigation */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  padding: 0;
}

.header-area.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-medium);
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  min-height: 80px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-logo:hover {
  color: var(--accent);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-md);
}

.nav-menu li a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--accent);
  background: rgba(0, 105, 148, 0.1);
  text-decoration: none;
}

.header-cta-button {
  background: var(--accent);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.header-cta-button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  text-decoration: none;
  color: white;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 4px 0;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Buttons */
.btn-primary {
  background: var(--accent);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--type-body);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: calc(var(--space-sm) - 2px) calc(var(--space-md) - 2px);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--type-body);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: calc(var(--space-sm) - 2px) calc(var(--space-md) - 2px);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--type-body);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Cards */
.service-card-item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-item:hover {
  transform: perspective(1000px) rotateY(2deg) translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-sm);
  stroke: var(--accent);
  fill: none;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--primary);
}

.service-card-description {
  flex-grow: 1;
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

.team-member-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  text-align: center;
}

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

.team-member-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-member-info {
  padding: var(--space-md);
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--primary);
}

.team-member-role {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.team-member-bio {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Forms */
.contact-form-wrapper {
  background: var(--bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--type-body);
  transition: all 0.3s ease;
  background: var(--bg-primary);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 105, 148, 0.1);
}

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

.success-message {
  background: #10B981;
  color: white;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  display: none;
}

.error-message {
  background: #EF4444;
  color: white;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  display: none;
}

/* Footer */
.footer-area {
  background: var(--primary);
  color: white;
  padding: var(--space-xl) 0 var(--space-md) 0;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-section h3 {
  color: white;
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.footer-section p,
.footer-section li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xs);
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: white;
  text-decoration: none;
}

.footer-contact-info {
  font-style: normal;
}

.footer-contact-info strong {
  color: white;
  display: block;
  margin-bottom: var(--space-xs);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-md);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: var(--space-md);
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-notice-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.cookie-notice-actions {
  display: flex;
  gap: var(--space-sm);
}

.cookie-btn {
  padding: var(--space-xs) var(--space-md);
  border: 2px solid white;
  border-radius: var(--radius-md);
  background: transparent;
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: white;
  color: var(--primary);
}

.cookie-btn:hover {
  background: white;
  color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    box-shadow: var(--shadow-medium);
    padding: var(--space-md);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-cta-button {
    display: none;
  }

  .main-navigation {
    position: relative;
  }

  .cookie-notice-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-notice-actions {
    justify-content: center;
  }
}